diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-16 02:36:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-16 02:36:27 +0000 |
commit | b80701e2d71d6c3cc6cd55a4d53976b1d7d21de9 (patch) | |
tree | fd17dc0d167a276c05d918ae27c2f3794ef7b8b0 /media-video/vstrip | |
parent | needs app-arch/unzip; tidy (diff) | |
download | historical-b80701e2d71d6c3cc6cd55a4d53976b1d7d21de9.tar.gz historical-b80701e2d71d6c3cc6cd55a4d53976b1d7d21de9.tar.bz2 historical-b80701e2d71d6c3cc6cd55a4d53976b1d7d21de9.zip |
needs app-arch/unzip; tidy
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'media-video/vstrip')
-rw-r--r-- | media-video/vstrip/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/vstrip/Manifest | 4 | ||||
-rw-r--r-- | media-video/vstrip/vstrip-0.8f.ebuild | 16 |
3 files changed, 16 insertions, 9 deletions
diff --git a/media-video/vstrip/ChangeLog b/media-video/vstrip/ChangeLog index 372dbc45caf7..95c9d468dffd 100644 --- a/media-video/vstrip/ChangeLog +++ b/media-video/vstrip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/vstrip # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vstrip/ChangeLog,v 1.2 2005/07/28 12:03:18 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vstrip/ChangeLog,v 1.3 2005/09/16 02:36:27 mr_bones_ Exp $ + + 16 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> vstrip-0.8f.ebuild: + needs app-arch/unzip; tidy 28 Jul 2005; David Holm <dholm@gentoo.org> vstrip-0.8f.ebuild: Added to ~ppc. diff --git a/media-video/vstrip/Manifest b/media-video/vstrip/Manifest index 77d21589f794..80866c6c567b 100644 --- a/media-video/vstrip/Manifest +++ b/media-video/vstrip/Manifest @@ -1,5 +1,5 @@ -MD5 cf80a15cd9869cc1c2b45edd992e91d8 ChangeLog 529 MD5 b17a6cf6781d80c556e5d84f3327ddc5 metadata.xml 336 -MD5 dd31cdc320599a94aab653e2daa34003 vstrip-0.8f.ebuild 778 +MD5 8a820d0f758bdfd74cbb1c8aeb6f82c0 vstrip-0.8f.ebuild 828 +MD5 6252949e4d36d422632a3c81360d5a45 ChangeLog 638 MD5 1f3d4d7b3589e5de8e4bb357eb9a0f63 files/digest-vstrip-0.8f 59 MD5 5e8b0123e4210ad51352ae95aca5832e files/vstrip-0.8f-gentoo.patch 2027 diff --git a/media-video/vstrip/vstrip-0.8f.ebuild b/media-video/vstrip/vstrip-0.8f.ebuild index 1a006a6c6986..31ce469f386c 100644 --- a/media-video/vstrip/vstrip-0.8f.ebuild +++ b/media-video/vstrip/vstrip-0.8f.ebuild @@ -1,23 +1,27 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vstrip/vstrip-0.8f.ebuild,v 1.2 2005/07/28 12:03:18 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vstrip/vstrip-0.8f.ebuild,v 1.3 2005/09/16 02:36:27 mr_bones_ Exp $ inherit eutils DESCRIPTION="A program to split non-css dvd vobs into individual chapters" HOMEPAGE="http://www.maven.de/code" SRC_URI="http://files.digital-digest.com/downloads/files/encode/vStrip_${PV/./}.zip" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="" -DEPEND="app-text/dos2unix" -RDEPEND="virtual/libc" + +DEPEND="app-text/dos2unix + app-arch/unzip" +RDEPEND="" + S=${WORKDIR}/${PN} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch ${FILESDIR}/vstrip-0.8f-gentoo.patch dos2unix -q -o *.c *.h @@ -28,9 +32,9 @@ src_unpack() { } src_compile() { - emake || die + emake || die "emake failed" } src_install() { - dobin vstrip + dobin vstrip || die "dobin failed" } |