blob: b8466d4dfa3d192044103d7d48eccd98524f6629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# 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.ebuild,v 1.5 2005/01/01 15:47:17 eradicator Exp $
inherit python
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"
IUSE=""
DEPEND=">=dev-lang/python-1.5.2"
RDEPEND=">=dev-lang/python-1.5.2
|| (
>=media-gfx/imagemagick-5.4.4
>=dev-python/imaging-1.1
>=media-libs/netpbm-9.15
)"
src_compile() {
econf \
--disable-palmosbuild \
--disable-desktopbuild \
--disable-gtkviewer \
--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
}
|