diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2005-05-12 18:01:38 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2005-05-12 18:01:38 +0000 |
commit | 3a11832d59d1fe2bc12e0cc01b205ed169f2791a (patch) | |
tree | 4c7a2c79905f04118c9d9a19e3ad92ae57b0871f | |
parent | Package-Manager: portage-2.0.51.21-r1 (diff) | |
download | historical-3a11832d59d1fe2bc12e0cc01b205ed169f2791a.tar.gz historical-3a11832d59d1fe2bc12e0cc01b205ed169f2791a.tar.bz2 historical-3a11832d59d1fe2bc12e0cc01b205ed169f2791a.zip |
Made zlib mandatory
-rw-r--r-- | eclass/wxlib.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/wxlib.eclass b/eclass/wxlib.eclass index 195b1c1bd4b4..462ea3d8a409 100644 --- a/eclass/wxlib.eclass +++ b/eclass/wxlib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/wxlib.eclass,v 1.5 2005/05/11 19:10:43 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/wxlib.eclass,v 1.6 2005/05/12 18:01:38 pythonhead Exp $ # Author Diego Pettenò <flameeyes@gentoo.org> # Maintained by wxwidgets herd @@ -13,7 +13,7 @@ inherit flag-o-matic eutils multilib toolchain-funcs ECLASS="wxlib" INHERITED="${INHERITED} ${ECLASS}" -IUSE="doc debug unicode dmalloc zlib" +IUSE="doc debug unicode dmalloc" LICENSE="wxWinLL-3" @@ -21,10 +21,10 @@ LICENSE="wxWinLL-3" # has its own implementation of it # Note 2: PCX support is enabled if the correct libraries are detected. # There is no USE flag for this. -RDEPEND="!hppa? ( !alpha? ( !ppc64? ( !amd64? ( !arm? ( !mips? ( dmalloc? ( dev-libs/dmalloc ) ) ) ) ) ) ) - zlib? ( sys-libs/zlib )" +RDEPEND="!hppa? ( !alpha? ( !ppc64? ( !amd64? ( !arm? ( !mips? ( dmalloc? ( dev-libs/dmalloc ) ) ) ) ) ) )" DEPEND="${RDEPEND} + sys-libs/zlib sys-apps/sed" HOMEPAGE="http://www.wxwindows.org" @@ -82,7 +82,7 @@ subconfigure() { --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ - `use_with zlib` \ + --with-zlib \ ${debug_conf} \ $* || die "./configure failed" } |