blob: 8d9e753991562a3a1a225072e3546808dc4f4793 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/scrollkeeper/scrollkeeper-0.3.8.ebuild,v 1.1 2002/05/22 23:15:38 spider Exp $
# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+
DEBUG="yes"
RESTRICT="nostrip"
# force debug information
CFLAGS="${CFLAGS} -g"
CXXFLAGS="${CXXFLAGS} -g"
S=${WORKDIR}/${P}
DESCRIPTION="Scrollkeeper"
SRC_URI="ftp://prdownloads.sourceforge.net/${PN}/${P}.tar.gz
http://telia.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz
http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz
http://belnet.dl.sourceforge.net/sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://scrollkeeper.sourceforge.net"
SLOT="0.3"
LICENSE="FDL-1.1 LGPL-2.1"
RDEPEND=">=dev-libs/libxml2-2.4.19
>=dev-libs/libxslt-1.0.14
>=sys-libs/zlib-1.1.3
>=app-text/docbook-xml-dtd-4.1.2-r2
>=app-text/docbook-sgml-utils-0.6.6"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.17
nls? ( sys-devel/gettext )"
src_compile() {
local myconf
if [ -z "`use nls`" ] ; then
myconf ="--disable-nls"
fi
# hack around some to make sure we find the libxml2 includes. odd bug.
CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml"
cd extract/dtds
patch -p0 < ${FILESDIR}/${P}.diff
cd ${S}
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
$myconf || die
emake || die
}
src_install() {
cd omf-install
cp Makefile Makefile.old
sed -e "s:scrollkeeper-update.*::g" Makefile.old > Makefile
rm Makefile.old
cd ${S}
make DESTDIR=${D} install || die
dodoc AUTHORS INSTALL TODO COPYING* ChangeLog README NEWS
}
pkg_postinst() {
echo "installing catalog"
/usr/bin/xmlcatalog --noout --add "public" \
"-//OMF//DTD Scrollkeeper OMF Variant V1.0//EN" \
"/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd" /etc/xml/catalog
echo ">>> Rebuilding Scrollkeeper database..."
scrollkeeper-rebuilddb
echo ">>> Updating Scrollkeeper database..."
scrollkeeper-update -v
}
pkg_postrm() {
einfo ">>> Scrollkeeper ${PV} unmerged, if you removed the package"
einfo "you might want to clean up /var/lib/scrollkeeper."
}
|