1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name tivodecode |
---|
6 | version 0.1.4 |
---|
7 | categories multimedia |
---|
8 | platforms darwin |
---|
9 | maintainers css@macports.org |
---|
10 | description utility to convert .tivo files into mpeg |
---|
11 | long_description This software converts a .TiVo file (produced \ |
---|
12 | by the TiVoToGo functionality on recent TiVo software releases) \ |
---|
13 | to a normal MPEG file. This has the same functionality as using \ |
---|
14 | TiVo's supplied DirectShow DLL on Windows with a tool such as \ |
---|
15 | DirectShowDump, but is portable to different architectures and \ |
---|
16 | operating systems, and runs on the command line using files or \ |
---|
17 | pipes. The conversion still requires the valid MAK of the TiVo \ |
---|
18 | which recorded the file, so it cannot be used to circumvent \ |
---|
19 | their protection, simply to provide the same level of access as \ |
---|
20 | is already available on Windows. |
---|
21 | |
---|
22 | homepage http://tivodecode.sourceforge.net/ |
---|
23 | master_sites sourceforge:${name} |
---|
24 | checksums md5 b0131ce1de4f2c2057f31a29f7f13c45 \ |
---|
25 | sha1 b6e3877971bf20cddba6905f68e15b758dcbcea6 |
---|
26 | |
---|
27 | use_configure no |
---|
28 | destroot { |
---|
29 | xinstall -m 755 ${worksrcpath}/objects.dir/tivodecode \ |
---|
30 | ${destroot}${prefix}/bin |
---|
31 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} |
---|
32 | xinstall -m 0644 -W ${worksrcpath} COPYING README \ |
---|
33 | ${destroot}${prefix}/share/doc/${name} |
---|
34 | } |
---|
35 | |
---|
36 | platform darwin 8 { |
---|
37 | configure.env CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0 |
---|
38 | } |
---|
39 | |
---|