diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-17 04:46:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-17 04:46:39 +0000 |
commit | 40d847ff5b9c822499754690723e4bc461115fba (patch) | |
tree | 1aa537bd4a76528526c1bb239345fe20e0ae2002 /dev-libs/dvutil/dvutil-0.13.13.ebuild | |
parent | clean old ebuild (Manifest recommit) (diff) | |
download | gentoo-2-40d847ff5b9c822499754690723e4bc461115fba.tar.gz gentoo-2-40d847ff5b9c822499754690723e4bc461115fba.tar.bz2 gentoo-2-40d847ff5b9c822499754690723e4bc461115fba.zip |
fix bug #71462; tidy
Diffstat (limited to 'dev-libs/dvutil/dvutil-0.13.13.ebuild')
-rw-r--r-- | dev-libs/dvutil/dvutil-0.13.13.ebuild | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/dev-libs/dvutil/dvutil-0.13.13.ebuild b/dev-libs/dvutil/dvutil-0.13.13.ebuild index 504e42fb0ca0..84bc7fec8a08 100644 --- a/dev-libs/dvutil/dvutil-0.13.13.ebuild +++ b/dev-libs/dvutil/dvutil-0.13.13.ebuild @@ -1,22 +1,25 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-0.13.13.ebuild,v 1.7 2004/10/22 13:46:31 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-0.13.13.ebuild,v 1.8 2004/11/17 04:46:39 mr_bones_ Exp $ + +inherit eutils -S=${WORKDIR}/dvutil-${PV} DESCRIPTION="dvutil provides some general C++ utility classes for files, directories, dates, property lists, reference counted pointers, number conversion etc. " -SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvutil/download/dvutil-${PV}.tar.gz" HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvutil/html/" -KEYWORDS="x86 ppc sparc" +SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvutil/download/dvutil-${PV}.tar.gz" + LICENSE="GPL-2" SLOT="0" - +KEYWORDS="x86 ppc sparc" IUSE="" + DEPEND="virtual/libc" -PATCHS="${FILESDIR}/0.13.13-gentoo-doc_distdir.patch" -inherit eutils +S="${WORKDIR}/dvutil-${PV}" src_install() { + local PATCHS="${FILESDIR}/0.13.13-gentoo-doc_distdir.patch" + epatch ${PATCHS} || die "error applying patch(s) [${PATCHS}]" make DESTDIR=${D} install || die "error in make install" } |