blob: 6ba134c38e78a36366b302f2f971086b0c27f7ee (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-4.5.3.ebuild,v 1.1 2003/07/24 17:31:11 mholzer Exp $
IUSE="ssl postgres"
DESCRIPTION="Global can find the locations of specified object in C, C++, Yacc, Java and assembler source files."
HOMEPAGE="http://www.gnu.org/software/global/"
LICENSE="GPL-2"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
S=${WORKDIR}/${P}
KEYWORDS="~x86"
SLOT="0"
DEPEND=">=sys-libs/glibc-2.2
postgres? ( >=dev-db/postgresql-7.1 )
ssl? ( >=dev-libs/openssl-0.9.6-r1 )"
src_compile() {
# Patch configure to add -lssl when using postgresql and ssl
if [ "`use postgres`" ] && [ "`use ssl`" ]
then
sed -i "s/-lcrypt/-lcrypt -lssl/" configure
fi
myconf="--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man" || die "./configure failed"
use postgres && myconf="${myconf} --with-postgres=/usr"
./configure ${myconf} || die "./configure failed"
emake || die
}
src_install() {
einstall || die
insinto /etc
doins gtags.conf
dodoc AUTHORS COPYING INSTALL LICENSE NEWS README THANKS
insinto /usr/share/${PN}
doins gtags.el gtags.pl globash.rc
}
|