-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
portfile for the wonderful mpeg toolbox
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@4402 d073be05-634f-4543-b044-5fe20cf6d1d6
- Loading branch information
Matt Anton
committed
Dec 31, 2003
1 parent
42c553d
commit 713b9ed
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# $Id: Portfile,v 1.1 2003/12/31 17:13:46 matt Exp $ | ||
|
||
PortSystem 1.0 | ||
name mpgtx | ||
version 1.3 | ||
categories multimedia | ||
platforms darwin | ||
maintainers matt@opendarwin.org | ||
homepage http://mpgtx.sourceforge.net/ | ||
description MPEG audio/video/system file toolbox | ||
|
||
long_description The MPEG ToolboX can currently split and join MPEG-1 \ | ||
video files and most MPEG audio files, fetch detailed \ | ||
informations from MPEG-1 and MPEG-2 streams, demultiplex \ | ||
MPEG-1 and MPEG-2 files (System layer, program layer and \ | ||
Transport layer), add, remove and edit ID3 tags from MP3 \ | ||
files and rename MP3 files according to their ID3 tags. \ | ||
DivX is not yet supported, neither MPEG-4 and splitting \ | ||
and joining MPEG-2 video files is experimental (read 'will \ | ||
work only in your wildest dreams'). | ||
|
||
master_sites sourceforge | ||
|
||
extract.suffix .tgz | ||
|
||
checksums md5 209a25eb7563ad4c4eb2948c783f123a | ||
|
||
patchfiles patch-configure.diff | ||
|
||
configure.args --parachute | ||
|
||
post-configure { reinplace "s|${prefix}|${destroot}${prefix}|g" \ | ||
${worksrcpath}/Makefile | ||
reinplace "s|/usr/local|${destroot}${prefix}/share|g" \ | ||
${worksrcpath}/Makefile | ||
reinplace "s|cpflags=d|cpflags=R|" \ | ||
${worksrcpath}/Makefile | ||
} | ||
|
||
build.target {} | ||
|
||
post-destroot { file mkdir ${destroot}${prefix}/share/doc/${name} | ||
file copy ${worksrcpath}/AUTHORS ${worksrcpath}/README \ | ||
${destroot}${prefix}/share/doc/${name} | ||
} | ||
|