diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-05-19 05:42:42 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-05-19 05:42:42 +0000 |
commit | dd5b82349fe18cea5a029135356eeccaa625ce1f (patch) | |
tree | eee7a13476320863fd8b9f0b6c1a28e5f32e1576 /x11-libs/wxmozilla | |
parent | Fix alpha UAC control. Fix amd64 time measurement. Add AL2230S support for zd... (diff) | |
download | gentoo-2-dd5b82349fe18cea5a029135356eeccaa625ce1f.tar.gz gentoo-2-dd5b82349fe18cea5a029135356eeccaa625ce1f.tar.bz2 gentoo-2-dd5b82349fe18cea5a029135356eeccaa625ce1f.zip |
Don't hardcode wx-config.
(Portage version: 2.1.2.7)
Diffstat (limited to 'x11-libs/wxmozilla')
-rw-r--r-- | x11-libs/wxmozilla/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild | 15 |
2 files changed, 8 insertions, 13 deletions
diff --git a/x11-libs/wxmozilla/ChangeLog b/x11-libs/wxmozilla/ChangeLog index 1dd0c8a65c90..226265b483ba 100644 --- a/x11-libs/wxmozilla/ChangeLog +++ b/x11-libs/wxmozilla/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/wxmozilla # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/ChangeLog,v 1.12 2007/01/14 01:20:32 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/ChangeLog,v 1.13 2007/05/19 05:42:42 dirtyepic Exp $ + + 19 May 2007; Ryan Hill <dirtyepic@gentoo.org> + wxmozilla-0.5.7_pre20070102.ebuild: + Don't hardcode wx-config. 14 Jan 2007; Ryan Hill <dirtyepic@gentoo.org> -files/wxmozilla-wxpy-2.4.patch, -wxmozilla-0.5.6.ebuild: diff --git a/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild b/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild index d67f2893fce8..76550c7e026b 100644 --- a/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild +++ b/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild,v 1.2 2007/01/02 21:47:53 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxmozilla/wxmozilla-0.5.7_pre20070102.ebuild,v 1.3 2007/05/19 05:42:42 dirtyepic Exp $ inherit eutils wxwidgets @@ -23,7 +23,7 @@ DEPEND=" =x11-libs/wxGTK-2.6* >=www-client/mozilla-firefox-2.0 python? ( dev-lang/python - >=dev-python/wxpython-2.6.3 )" + =dev-python/wxpython-2.6* )" SLOT="0" LICENSE="wxWinLL-3" @@ -38,14 +38,6 @@ src_unpack() { src_compile() { - # Current Problems: - # -can't find wx-config without the funky configure option - # -configure will give a warning about wxpython, but it can be ignored. - - # Currently Working: - # - # Firefox 2.0 support. Builds against seamonkey-1.0.7 but crashes - WX_GTK_VER="2.6" need-wxwidgets unicode @@ -58,8 +50,7 @@ src_compile() { econf \ $(use_enable python) \ - --disable-gtktest \ - --with-wx-config=wx-config-2.6 \ + --with-wx-config="${WX_CONFIG}" \ ${myconf} \ || die "configure failed" |