summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2003-09-08 17:34:37 +0000
committerJon Portnoy <avenj@gentoo.org>2003-09-08 17:34:37 +0000
commitb5a058655a2c9944e13b81e910602c10e1a07efe (patch)
tree4adf90cbce8b1df49c2d8faa6ede9ecc03af4206 /media-video/mpgtx
parentInitial import (diff)
downloadhistorical-b5a058655a2c9944e13b81e910602c10e1a07efe.tar.gz
historical-b5a058655a2c9944e13b81e910602c10e1a07efe.tar.bz2
historical-b5a058655a2c9944e13b81e910602c10e1a07efe.zip
Initial import
Diffstat (limited to 'media-video/mpgtx')
-rw-r--r--media-video/mpgtx/Manifest3
-rw-r--r--media-video/mpgtx/files/digest-mpgtx-1.31
-rw-r--r--media-video/mpgtx/mpgtx-1.3.ebuild40
3 files changed, 43 insertions, 1 deletions
diff --git a/media-video/mpgtx/Manifest b/media-video/mpgtx/Manifest
index 91f6623e8e17..de3c11be1518 100644
--- a/media-video/mpgtx/Manifest
+++ b/media-video/mpgtx/Manifest
@@ -1,2 +1,3 @@
-MD5 ce7c2a877f504f35e6442ddb5cdce66c mpgtx-1.3.ebuild 1155
+MD5 75589cdb9b216d5c87a9a713d914d65f mpgtx-1.3.ebuild 1250
+MD5 29ed6378ab54c028d1a9be1f167a1764 ChangeLog 399
MD5 2f7766f539f18c11a67ea4d0ceaaadda files/digest-mpgtx-1.3 57
diff --git a/media-video/mpgtx/files/digest-mpgtx-1.3 b/media-video/mpgtx/files/digest-mpgtx-1.3
new file mode 100644
index 000000000000..3208ccefed9d
--- /dev/null
+++ b/media-video/mpgtx/files/digest-mpgtx-1.3
@@ -0,0 +1 @@
+MD5 209a25eb7563ad4c4eb2948c783f123a mpgtx-1.3.tgz 76471
diff --git a/media-video/mpgtx/mpgtx-1.3.ebuild b/media-video/mpgtx/mpgtx-1.3.ebuild
new file mode 100644
index 000000000000..cc35a7fe592f
--- /dev/null
+++ b/media-video/mpgtx/mpgtx-1.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/mpgtx/mpgtx-1.3.ebuild,v 1.1 2003/09/08 17:34:34 avenj Exp $
+
+DESCRIPTION="mpgtx a command line MPEG audio/video/system file toolbox"
+SRC_URI="http://umn.dl.sourceforge.net/sourceforge/mpgtx/${P}.tgz"
+HOMEPAGE="http://mpgtx.sourceforge.net/"
+
+KEYWORDS="~x86"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND="sys-libs/glibc"
+
+src_compile() {
+ ./configure --parachute --prefix=/usr
+ emake || die "emake failed"
+}
+
+src_install() {
+ exeinto /usr/bin
+ doexe mpgtx
+
+ dosym /usr/bin/mpgtx /usr/bin/mpgjoin
+ dosym /usr/bin/mpgtx /usr/bin/mpgsplit
+ dosym /usr/bin/mpgtx /usr/bin/mpgcat
+ dosym /usr/bin/mpgtx /usr/bin/mpginfo
+ dosym /usr/bin/mpgtx /usr/bin/mpgdemux
+ dosym /usr/bin/mpgtx /usr/bin/tagmp3
+
+ doman man/mpgtx.1 man/tagmp3.1
+
+ dosym /usr/share/man/man1/mpgtx.1 /usr/share/man/man1/mpgcat.1
+ dosym /usr/share/man/man1/mpgtx.1 /usr/share/man/man1/mpgjoin.1
+ dosym /usr/share/man/man1/mpgtx.1 /usr/share/man/man1/mpginfo.1
+ dosym /usr/share/man/man1/mpgtx.1 /usr/share/man/man1/mpgsplit.1
+ dosym /usr/share/man/man1/mpgtx.1 /usr/share/man/man1/mpgdemux.1
+
+ dodoc AUTHORS COPYING ChangeLog README TODO
+}