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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup makefile 1.0 |
---|
5 | |
---|
6 | name m2vrequantiser |
---|
7 | version 1.1 |
---|
8 | revision 0 |
---|
9 | checksums rmd160 d66b15c0949930849d50e6a9176c16618e21daa4 \ |
---|
10 | sha256 e537c7894edc4ae446d71e8f597aa1fcec85c3e76748ba0aaa289cc667c94209 \ |
---|
11 | size 34472 |
---|
12 | |
---|
13 | categories multimedia |
---|
14 | platforms darwin |
---|
15 | license GPL-2+ |
---|
16 | maintainers {hotmail.com:amtor @RobK88} \ |
---|
17 | openmaintainer |
---|
18 | |
---|
19 | description M2VRequantiser requantizes MPEG-2 streams without \ |
---|
20 | recompressing. |
---|
21 | |
---|
22 | long_description M2VRequantiser accepts the raw MPEG2 \ |
---|
23 | video data (not VOB) from the standard input \ |
---|
24 | and writes the recompressed frames to the \ |
---|
25 | standard output. \ |
---|
26 | M2VRequantiser represents a good replacement for \ |
---|
27 | tcrequant, an obsolete utility provided by some \ |
---|
28 | versions of the transcode suite. \ |
---|
29 | \n \ |
---|
30 | \nM2VRequantiser is often used in place of tcrequant to shrink \ |
---|
31 | DVD's from DVD9 to DVD5. See \ |
---|
32 | https://www.linuxquestions.org/questions/linux-software-2/dvd9-to-dvd5-guide-244913/ |
---|
33 | |
---|
34 | homepage https://launchpad.net/m2vrequantiser |
---|
35 | master_sites ${homepage}/trunk/${version}/+download/ |
---|
36 | distname M2VRequantiser-v${version} |
---|
37 | |
---|
38 | patchfiles 1001-makefile.patch \ |
---|
39 | 1002-argc_sigsegv.patch \ |
---|
40 | 1003-typedef.patch |
---|
41 | |
---|
42 | destroot { |
---|
43 | xinstall -m 0755 ${worksrcpath}/M2VRequantiser ${destroot}${prefix}/bin |
---|
44 | xinstall -m 0644 ${filespath}/${name}.1 ${destroot}${prefix}/share/man/man1 |
---|
45 | xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${name} |
---|
46 | xinstall -m 0644 ${worksrcpath}/README.txt ${destroot}${prefix}/share/doc/${name} |
---|
47 | } |
---|