blob: 4223a64affa0493e3a4a69a77d3a26ead91fdb68 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/documancer/documancer-0.1.7.ebuild,v 1.3 2004/03/13 01:42:04 mr_bones_ Exp $
DESCRIPTION="Programmer's documentation reader with very fast fulltext searching"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://documancer.sourceforge.net"
KEYWORDS="~x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=net-www/mozilla-1.0
>=x11-libs/gtk+-2.0
>=dev-lang/python-2.1
>=net-www/swish-e-2.2.2
dev-lang/perl
net-misc/wget"
pkg_setup () {
if [ ! -f ${ROOT}/usr/lib/mozilla/components/libwidget_gtk2.so ]
then
eerror "you need mozilla-1.3_beta compiled against gtk+-2"
eerror "export USE=\"gtk2\" ;emerge mozilla -p "
die "Need Mozilla compiled with gtk+-2.0!!"
fi
}
src_compile() {
cd ${S}
./autogen.sh
./configure --enable-gtk2 --prefix=/usr || die
emake || die
}
src_install () {
make prefix=${D}/usr \
install || die
cp ${FILESDIR}/documancer.backend ${D}/usr/bin/
dodoc AUTHORS Hacking.txt COPYING FAQ NEWS README TODO
}
|