diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 17:16:12 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 17:16:12 +0000 |
commit | 9bc21016c16cad6b1b2de65b47643dbf7da5b3a2 (patch) | |
tree | 8de65108771a7fbeb556221e2c671d38ce3fbb65 /dev-util/diffball/diffball-1.0.ebuild | |
parent | QA fixes; unquoted variables (diff) | |
download | gentoo-2-9bc21016c16cad6b1b2de65b47643dbf7da5b3a2.tar.gz gentoo-2-9bc21016c16cad6b1b2de65b47643dbf7da5b3a2.tar.bz2 gentoo-2-9bc21016c16cad6b1b2de65b47643dbf7da5b3a2.zip |
Fix repoman issues
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/diffball/diffball-1.0.ebuild')
-rw-r--r-- | dev-util/diffball/diffball-1.0.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dev-util/diffball/diffball-1.0.ebuild b/dev-util/diffball/diffball-1.0.ebuild index ee35bbcacf05..68696c1d7d74 100644 --- a/dev-util/diffball/diffball-1.0.ebuild +++ b/dev-util/diffball/diffball-1.0.ebuild @@ -1,19 +1,20 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/diffball-1.0.ebuild,v 1.9 2008/10/13 21:05:46 zmedico Exp $ - -IUSE="debug" +# $Header: /var/cvsroot/gentoo-x86/dev-util/diffball/diffball-1.0.ebuild,v 1.10 2009/10/12 17:16:12 ssuominen Exp $ DESCRIPTION="Delta compression suite for using/generating binary patches" HOMEPAGE="http://developer.berlios.de/projects/diffball/" SRC_URI="mirror://berlios/diffball/${P}.tar.bz2" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="alpha amd64 ~hppa ia64 mips ppc ~sparc x86" +IUSE="debug" DEPEND=">=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2" + +# Invalid RESTRICT for source package. Investigate. RESTRICT="strip" src_compile() { @@ -22,8 +23,6 @@ src_compile() { } src_install() { - cd ${S} - make install DESTDIR="${D}" || die - + emake DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog README TODO } |