diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-06-23 13:03:59 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-06-23 13:03:59 +0000 |
commit | 5fd5386e9fab53484d2b5cd5b310e5f476d1733e (patch) | |
tree | bcd82c2b531a549009dcda39ca01cb2ea81a411e | |
parent | added udev permissions. Added tpm-emulator as optional dependancy. script fil... (diff) | |
download | gentoo-2-5fd5386e9fab53484d2b5cd5b310e5f476d1733e.tar.gz gentoo-2-5fd5386e9fab53484d2b5cd5b310e5f476d1733e.tar.bz2 gentoo-2-5fd5386e9fab53484d2b5cd5b310e5f476d1733e.zip |
Plucker doesn't build with unicode wxGTK, so make sure we get the ansi
version instead #55716
(Portage version: 2.0.51.22-r1)
-rw-r--r-- | app-pda/plucker/ChangeLog | 6 | ||||
-rw-r--r-- | app-pda/plucker/plucker-1.8-r1.ebuild | 16 |
2 files changed, 18 insertions, 4 deletions
diff --git a/app-pda/plucker/ChangeLog b/app-pda/plucker/ChangeLog index e328441f37e9..e89abad7334b 100644 --- a/app-pda/plucker/ChangeLog +++ b/app-pda/plucker/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-pda/plucker # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/plucker/ChangeLog,v 1.8 2005/01/02 21:46:32 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/plucker/ChangeLog,v 1.9 2005/06/23 13:03:59 agriffis Exp $ + + 23 Jun 2005; Aron Griffis <agriffis@gentoo.org> plucker-1.8-r1.ebuild: + Plucker doesn't build with unicode wxGTK, so make sure we get the ansi + version instead #55716 02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/app-pda/plucker/plucker-1.8-r1.ebuild b/app-pda/plucker/plucker-1.8-r1.ebuild index c00d0bfec17d..450b5fa89529 100644 --- a/app-pda/plucker/plucker-1.8-r1.ebuild +++ b/app-pda/plucker/plucker-1.8-r1.ebuild @@ -1,17 +1,17 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/plucker/plucker-1.8-r1.ebuild,v 1.7 2005/01/01 15:47:17 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/plucker/plucker-1.8-r1.ebuild,v 1.8 2005/06/23 13:03:59 agriffis Exp $ IUSE="gtk" -inherit python eutils +inherit python eutils wxwidgets DESCRIPTION="Distiller for Plucker -- offline ebook reader for Palm devices" HOMEPAGE="http://www.plkr.org/" SRC_URI="http://downloads.plkr.org/${PV}/${PN}_src-${PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~amd64 ~ppc ~x86" DEPEND=">=dev-lang/python-1.5.2 gtk? ( >=x11-libs/gtk+-2.2 x11-libs/wxGTK ) sys-devel/autoconf" @@ -40,9 +40,19 @@ src_unpack() { # Fix deprecation warnings for python-2.3 sed -i "s:0x\w\w\w\w\w\w\w\w:&L:" \ parser/python/PyPlucker/helper/gettext.py || die "sed 3 failed" + + # Get the right version of wxGTK (note call to need-wxwidgets below) + find . -name Makefile.in | xargs sed -i 's/wx-config/$(WX_CONFIG)/g' \ + || die "sed 4 failed" } src_compile() { + # plucker-desktop doesn't build with the unicode version of wxGTK. Force + # the non-unicode version until plucker-desktop is fixed. #55716 + if useq gtk; then + need-wxwidgets gtk2 + fi + # --enable-desktopbuild and --disable-desktopbuild are equivalent for this # package; either one will *disable* the desktopbuild. It is enabled only # if the flags are lacking from the cmdline. (21 Jun 2004 agriffis) |