diff options
author | 2006-10-07 22:36:07 +0000 | |
---|---|---|
committer | 2006-10-07 22:36:07 +0000 | |
commit | f56b98232ac04e87f4bcd6db6e69c7350d397b26 (patch) | |
tree | 8014ca9df74fafec54a25c23a84eeb062bbe9358 /net-misc/neon/neon-0.26.1-r1.ebuild | |
parent | fix digest, thanks brad (diff) | |
download | historical-f56b98232ac04e87f4bcd6db6e69c7350d397b26.tar.gz historical-f56b98232ac04e87f4bcd6db6e69c7350d397b26.tar.bz2 historical-f56b98232ac04e87f4bcd6db6e69c7350d397b26.zip |
Punt invalid use of USE=static.
Package-Manager: portage-2.1.2_pre2-r5
Diffstat (limited to 'net-misc/neon/neon-0.26.1-r1.ebuild')
-rw-r--r-- | net-misc/neon/neon-0.26.1-r1.ebuild | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/net-misc/neon/neon-0.26.1-r1.ebuild b/net-misc/neon/neon-0.26.1-r1.ebuild index ade07b0ba993..f98aa2cd6796 100644 --- a/net-misc/neon/neon-0.26.1-r1.ebuild +++ b/net-misc/neon/neon-0.26.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.26.1-r1.ebuild,v 1.2 2006/10/01 16:10:28 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/neon/neon-0.26.1-r1.ebuild,v 1.3 2006/10/07 22:36:07 vapier Exp $ inherit eutils libtool versionator @@ -11,7 +11,8 @@ SRC_URI="http://www.webdav.org/neon/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ~ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="expat nls socks5 ssl static zlib" +IUSE="expat nls socks5 ssl zlib" +RESTRICT="test" DEPEND="expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2 ) @@ -19,8 +20,6 @@ DEPEND="expat? ( dev-libs/expat ) zlib? ( sys-libs/zlib ) ssl? ( >=dev-libs/openssl-0.9.6f )" -RESTRICT="test" - src_unpack() { unpack ${A} if use userland_Darwin ; then @@ -53,13 +52,8 @@ src_compile() { myconf="${myconf} --disable-nls" fi - if use static; then - myconf="${myconf} --enable-static" - else - myconf="${myconf} --disable-static --with-pic" - fi - econf \ + --enable-static \ --enable-shared \ --without-gssapi \ $(use_with zlib) \ @@ -70,12 +64,11 @@ src_compile() { } src_test() { - cd ${S} make check || die "Trying make check without success." } src_install() { - make DESTDIR=${D} install || die 'install failed' + make DESTDIR="${D}" install || die 'install failed' dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/* } |