diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-31 19:26:38 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-31 19:26:38 +0000 |
commit | ad86db7a592f60866c83a31809de48152b201a6f (patch) | |
tree | f4272d5c7ea96e4a0bba674cdc50036126455ed0 /media-video/vstrip/vstrip-0.8f.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-ad86db7a592f60866c83a31809de48152b201a6f.tar.gz gentoo-2-ad86db7a592f60866c83a31809de48152b201a6f.tar.bz2 gentoo-2-ad86db7a592f60866c83a31809de48152b201a6f.zip |
Replace dos2unix with edos2unix for bug 162841 and fix missing asm/io.h.
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-video/vstrip/vstrip-0.8f.ebuild')
-rw-r--r-- | media-video/vstrip/vstrip-0.8f.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/media-video/vstrip/vstrip-0.8f.ebuild b/media-video/vstrip/vstrip-0.8f.ebuild index 31ce469f386c..bf73ab98fb40 100644 --- a/media-video/vstrip/vstrip-0.8f.ebuild +++ b/media-video/vstrip/vstrip-0.8f.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 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.3 2005/09/16 02:36:27 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vstrip/vstrip-0.8f.ebuild,v 1.4 2007/03/31 19:26:38 drac Exp $ inherit eutils @@ -13,28 +13,27 @@ SLOT="0" KEYWORDS="~ppc ~x86" IUSE="" -DEPEND="app-text/dos2unix - app-arch/unzip" +DEPEND="app-arch/unzip" RDEPEND="" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_unpack() { unpack ${A} cd "${S}" - epatch ${FILESDIR}/vstrip-0.8f-gentoo.patch - dos2unix -q -o *.c *.h - + epatch "${FILESDIR}"/${P}-gentoo.patch + edos2unix *.c *.h + for file in *.c *.h ; do echo >>$file done } src_compile() { - emake || die "emake failed" + emake || die "emake failed." } src_install() { - dobin vstrip || die "dobin failed" + dobin vstrip } |