diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 17:47:23 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 17:47:23 +0000 |
commit | e19215b6e19e63fb01aaf9e5f1bc2a3647e66210 (patch) | |
tree | a72137121fe3a7157a491efb136589ec32db0896 /dev-util/libconf | |
parent | Fix quoting (diff) | |
download | historical-e19215b6e19e63fb01aaf9e5f1bc2a3647e66210.tar.gz historical-e19215b6e19e63fb01aaf9e5f1bc2a3647e66210.tar.bz2 historical-e19215b6e19e63fb01aaf9e5f1bc2a3647e66210.zip |
Quoting. Use emake.
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'dev-util/libconf')
-rw-r--r-- | dev-util/libconf/libconf-0.40.00.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev-util/libconf/libconf-0.40.00.ebuild b/dev-util/libconf/libconf-0.40.00.ebuild index d6db2a391bea..49f388dc61fa 100644 --- a/dev-util/libconf/libconf-0.40.00.ebuild +++ b/dev-util/libconf/libconf-0.40.00.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 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/libconf/libconf-0.40.00.ebuild,v 1.8 2007/01/18 19:27:18 dams Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.40.00.ebuild,v 1.9 2009/10/12 17:46:03 ssuominen Exp $ IUSE="xml" @@ -15,15 +15,15 @@ LICENSE="GPL-2" KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" DEPEND="dev-lang/perl -dev-perl/DelimMatch -xml? ( dev-perl/Data-DumpXML )" + dev-perl/DelimMatch + xml? ( dev-perl/Data-DumpXML )" src_compile() { - emake || die "make failed" - make test || die "make test failed" + emake || die + emake -j1 test || die } src_install() { - einstall PREFIX=${D}/usr - dodoc AUTHORS COPYING ChangeLog + einstall PREFIX="${D}/usr" + dodoc AUTHORS ChangeLog } |