diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-22 02:56:05 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-22 02:56:05 +0000 |
commit | 8778487aed2d414d31bd70fcf0d4229ac5fb857e (patch) | |
tree | 3f941daf93c1020bc9245124b29a50820677ce95 /app-pda/plucker/plucker-1.8-r1.ebuild | |
parent | fix HOMEPAGE (diff) | |
download | historical-8778487aed2d414d31bd70fcf0d4229ac5fb857e.tar.gz historical-8778487aed2d414d31bd70fcf0d4229ac5fb857e.tar.bz2 historical-8778487aed2d414d31bd70fcf0d4229ac5fb857e.zip |
Fix warnings and Makefile errors. Enable building of gtk viewer and desktop if USE=gtk
Diffstat (limited to 'app-pda/plucker/plucker-1.8-r1.ebuild')
-rw-r--r-- | app-pda/plucker/plucker-1.8-r1.ebuild | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/app-pda/plucker/plucker-1.8-r1.ebuild b/app-pda/plucker/plucker-1.8-r1.ebuild new file mode 100644 index 000000000000..5eb172983a81 --- /dev/null +++ b/app-pda/plucker/plucker-1.8-r1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/06/22 02:56:05 agriffis Exp $ + +IUSE="gtk" + +inherit python eutils + +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" +DEPEND=">=dev-lang/python-1.5.2 + gtk? ( >=x11-libs/gtk+-2.2 x11-libs/wxGTK ) + sys-devel/autoconf" +RDEPEND=">=dev-lang/python-1.5.2 + gtk? ( >=x11-libs/gtk+-2.2 x11-libs/wxGTK ) + || ( + >=media-gfx/imagemagick-5.4.4 + >=dev-python/Imaging-1.1 + >=media-libs/netpbm-9.15 + )" + +src_unpack() { + unpack ${A} + cd ${S} || die + + # Repair broken Makefile.in + epatch ${FILESDIR}/plucker-1.8-Makefile.in.patch + + # Repair documentation installation path + sed -i "/^DOCSDIR/s/packages/${PF}/" plucker_desktop/Makefile.in || die "sed 1 failed" + + # Fix default path to netpbm files + sed -i "s:, 'palm\(.*\.map\):, '/usr/share/netpdb/\1:p" \ + parser/python/PyPlucker/ImageParser.py || die "sed 2 failed" + + # 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" +} + +src_compile() { + # --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) + econf \ + $(useq gtk || echo --disable-desktopbuild --disable-gtkviewer) \ + --disable-palmosbuild \ + --disable-docbuild \ + --with-docdir=/usr/share/doc/${PF} \ + || die "econf failed" + + # breaks when built in parallel + emake -j1 || die "emake failed" + + # "make install" will try to access this non-existent file + touch TODO +} + +src_install() { + dodir /usr/share/doc/${PF} + make DESTDIR=${D} install || die + + # Various symlinks normally created by unix/install-plucker.sh + python_version + dosym /usr/lib/python${PYVER}/site-packages/PyPlucker/Spider.py \ + /usr/bin/plucker-build + dosym /usr/lib/python${PYVER}/site-packages/PyPlucker/Plucker-Docs.py \ + /usr/bin/plucker-decode + dosym /usr/lib/python${PYVER}/site-packages/PyPlucker/Decode.py \ + /usr/bin/plucker-dump + + # Extra symlink + dosym /usr/lib/python${PYVER}/site-packages/PyPlucker/pluck-comics.py /usr/bin/pluck-comics +} |