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 | d898ba97d85dfd40cf34d7f1a1b2b6326de55271 (patch) | |
tree | fa7def4c024a52aa39c93cd4accd65b93232bf69 /eclass | |
parent | (Portage version: 2.0.51.21-r1) (Manifest recommit) (diff) | |
download | gentoo-2-d898ba97d85dfd40cf34d7f1a1b2b6326de55271.tar.gz gentoo-2-d898ba97d85dfd40cf34d7f1a1b2b6326de55271.tar.bz2 gentoo-2-d898ba97d85dfd40cf34d7f1a1b2b6326de55271.zip |
Made zlib mandatory
Diffstat (limited to 'eclass')
-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" } |