Commits
Marius Schamschula authored a165fc43a6d
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | |
5 5 | name libdvdcss |
6 - | version 1.4.0 |
6 + | version 1.4.2 |
7 7 | categories devel multimedia |
8 8 | platforms darwin freebsd |
9 9 | maintainers nomaintainer |
10 10 | license GPL-2+ |
11 11 | |
12 12 | description portable abstraction library for DVD decryption |
13 13 | |
14 14 | long_description libdvdcss is a simple library designed for accessing \ |
15 15 | DVDs like a block device without having to bother \ |
16 16 | about the decryption. |
17 17 | |
18 18 | homepage http://www.videolan.org/developers/libdvdcss.html |
19 19 | master_sites http://download.videolan.org/pub/${name}/${version}/ |
20 20 | use_bzip2 yes |
21 - | checksums rmd160 a90a9b40bf1313fe8d3561b39183a34f1ff3844d \ |
22 - | sha256 2089375984800df29a4817b37f3123c1706723342d6dab4d0a8b75c25c2c845a |
21 + | checksums rmd160 745fd7ae3b2313a35b08b42040d0c020e3037501 \ |
22 + | sha256 78c2ed77ec9c0d8fbed7bf7d3abc82068b8864be494cfad165821377ff3f2575 |
23 23 | |
24 24 | configure.args --disable-doc |
25 25 | |
26 26 | post-destroot { |
27 27 | set docdir ${prefix}/share/doc/${name} |
28 28 | xinstall -d ${destroot}${docdir} |
29 29 | xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ |
30 30 | ${destroot}${docdir} |
31 31 | } |
32 32 | |