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 | 7e8dde1440fa210a830ca35afcfb8f6365e11d37 (patch) | |
tree | 43c27f3a247327c114c3cc675d1c9cbcc0f28549 /media-video/vstrip | |
parent | needs app-arch/unzip; tidy (diff) | |
download | gentoo-2-7e8dde1440fa210a830ca35afcfb8f6365e11d37.tar.gz gentoo-2-7e8dde1440fa210a830ca35afcfb8f6365e11d37.tar.bz2 gentoo-2-7e8dde1440fa210a830ca35afcfb8f6365e11d37.zip |
needs app-arch/unzip; tidy
(Portage version: 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/vstrip-0.8f.ebuild | 16 |
2 files changed, 14 insertions, 7 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/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" } |