blob: dcc8692c6701246a7e57d1f926ab437452a0a91e (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/judy/judy-20020627.ebuild,v 1.4 2004/03/14 12:28:57 mr_bones_ Exp $
DESCRIPTION="A C library that implements a dynamic array"
HOMEPAGE="http://judy.sourceforge.net/"
MY_PN=${PN/judy/Judy}
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-initial_LGPL.src.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=""
IUSE=""
S="${WORKDIR}/${MY_PN}-initial_LGPL"
src_unpack() {
unpack ${A}
cd ${S}
# Modify the Makefile so that it doesn't try
# install itself into /opt and create symlinks
# everywhere, nor try to bzip2 the man pages.
#
# This is likely to break in the next release,
# so be careful.
mv Makefile.multi Makefile.multi.orig || die
sed -e "s|/opt/Judy|${D}|" \
-e 's#| $(COMPRESSPATH)##' \
-e '2410s|$(DELDIR)|$(DELDIR)/*|' \
-e '2414s|&&.*||' \
-e '2409d' -e '2415,2419d' \
Makefile.multi.orig > Makefile.multi || die
}
src_compile() {
cd ${S}
./configure || die "./configure failed"
make MANFILE_SUFFIX='' || die
}
src_install () {
make DESTDIR=${D} install || die
}
|