diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 00:49:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 00:49:03 +0000 |
commit | 69e031b8ce796e9c0fdbf79a796e117f6865fdc1 (patch) | |
tree | 66346b9abd6c6d6a38a6c48e582b7258bdcfe78b /dev-libs/confuse | |
parent | stable on amd64 (diff) | |
download | historical-69e031b8ce796e9c0fdbf79a796e117f6865fdc1.tar.gz historical-69e031b8ce796e9c0fdbf79a796e117f6865fdc1.tar.bz2 historical-69e031b8ce796e9c0fdbf79a796e117f6865fdc1.zip |
add check to DEPEND if USE=test #95233
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'dev-libs/confuse')
-rw-r--r-- | dev-libs/confuse/Manifest | 12 | ||||
-rw-r--r-- | dev-libs/confuse/confuse-2.5.ebuild | 14 |
2 files changed, 8 insertions, 18 deletions
diff --git a/dev-libs/confuse/Manifest b/dev-libs/confuse/Manifest index 373b9db22a28..c843c725a601 100644 --- a/dev-libs/confuse/Manifest +++ b/dev-libs/confuse/Manifest @@ -1,15 +1,5 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 9ec88bdcf6565e2bc245aa0f754d3bd2 ChangeLog 513 -MD5 6b7ec649f6e4b2ff2201a74af79287e7 confuse-2.5.ebuild 1251 +MD5 c9877575e8e9adaafc2c8e799efc6353 confuse-2.5.ebuild 1255 MD5 420df847a3db1c4969aff20243f656dd metadata.xml 165 MD5 e63af9d342810c6b32080c4d5c4a5456 files/confuse-2.5-maketest.patch 581 MD5 52586bc716a63758a26e05b633a2bab0 files/digest-confuse-2.5 63 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCq4UR5mJXAu5GbtIRAmQXAJ0cvGuTOvrczeHu01+Gth+IMUCYRgCfQ68g -vhX+1Rv65cYP1ho2fRVljwc= -=+DND ------END PGP SIGNATURE----- diff --git a/dev-libs/confuse/confuse-2.5.ebuild b/dev-libs/confuse/confuse-2.5.ebuild index 1494ea127990..5a62186f49d7 100644 --- a/dev-libs/confuse/confuse-2.5.ebuild +++ b/dev-libs/confuse/confuse-2.5.ebuild @@ -1,28 +1,28 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/confuse/confuse-2.5.ebuild,v 1.3 2005/06/12 00:39:05 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/confuse/confuse-2.5.ebuild,v 1.4 2005/06/12 00:49:03 vapier Exp $ inherit eutils -DESCRIPTION="libConfuse is a configuration file parser library," +DESCRIPTION="a configuration file parser library" HOMEPAGE="http://www.nongnu.org/confuse/" SRC_URI="http://savannah.nongnu.org/download/confuse/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 x86" -IUSE="doc debug nls" +IUSE="doc debug nls test" DEPEND="sys-devel/libtool + test? ( dev-libs/check ) doc? ( app-text/openjade >=app-text/docbook-sgml-dtd-3.1-r1 )" - -RDEPEND="virtual/libc" +RDEPEND="" src_unpack(){ unpack ${A} cd "${S}" - epatch ${FILESDIR}/${P}-maketest.patch + epatch "${FILESDIR}"/${P}-maketest.patch # keep this otherwise libraries will not have .so extensions libtoolize --copy --force @@ -44,7 +44,7 @@ src_compile() { } src_test() { - cd ${S}/tests + cd "${S}"/tests ./check_confuse || die "self test failed" } |