diff options
author | Chris White <chriswhite@gentoo.org> | 2005-03-27 23:14:13 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-03-27 23:14:13 +0000 |
commit | 52c5a523a40141bae87a237cc771cba0180b7908 (patch) | |
tree | 17e1a960411d4f73b84baa7d2de2accf30b6095a /media-video/bbtools/bbtools-1.9.ebuild | |
parent | Version bump. (diff) | |
download | historical-52c5a523a40141bae87a237cc771cba0180b7908.tar.gz historical-52c5a523a40141bae87a237cc771cba0180b7908.tar.bz2 historical-52c5a523a40141bae87a237cc771cba0180b7908.zip |
Initial import into the tree. Closes bug #31632. Thanks to swegner for the ebuild!
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'media-video/bbtools/bbtools-1.9.ebuild')
-rw-r--r-- | media-video/bbtools/bbtools-1.9.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-video/bbtools/bbtools-1.9.ebuild b/media-video/bbtools/bbtools-1.9.ebuild new file mode 100644 index 000000000000..4397b10fdff1 --- /dev/null +++ b/media-video/bbtools/bbtools-1.9.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/bbtools/bbtools-1.9.ebuild,v 1.1 2005/03/27 23:14:13 chriswhite Exp $ + +inherit eutils + +DESCRIPTION="bbdmux, bbinfo, bbvinfo and bbainfo from Brent Beyeler" +HOMEPAGE="http://members.cox.net/beyeler/bbmpeg.html" +SRC_URI="http://files.digital-digest.com/downloads/files/encode/bbtool${PV/./}_src.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" +DEPEND="virtual/libc" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + + mv BBINFO.cpp bbinfo.cpp + mv BITS.CPP bits.cpp + mv BITS.H bits.h + mv bbdmux.CPP bbdmux.cpp + rm *.ide + edos2unix *.cpp *.h + + epatch ${FILESDIR}/bbtools-${PV}-gentoo.patch +} + +src_compile() { + make || die "make failed" +} + +src_install() { + dobin bbainfo bbdmux bbinfo bbvinfo +} |