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 /app-pda/plucker/plucker-1.8-r1.ebuild | |
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)
Diffstat (limited to 'app-pda/plucker/plucker-1.8-r1.ebuild')
-rw-r--r-- | app-pda/plucker/plucker-1.8-r1.ebuild | 16 |
1 files changed, 13 insertions, 3 deletions
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) |