blob: a515c5c713f05975969aa1c0ceaac1cce45689fb (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.15.2.ebuild,v 1.1 2002/01/23 18:45:25 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Shared library implementing a Lisp dialect"
SRC_URI="http://download.sourceforge.net/librep/${P}.tar.gz"
HOMEPAGE="http://librep.sourceforge.net/"
DEPEND="virtual/glibc
>=sys-libs/gdbm-1.8.0
>=dev-libs/gmp-3.1.1
readline? ( >=sys-libs/readline-4.1
>=sys-libs/ncurses-5.2 )
sys-apps/texinfo"
src_compile() {
local myconf
if [ "`use readline`" ]
then
myconf="--with-readline"
else
myconf="--without-readline"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--libexecdir=/usr/lib \
--infodir=/usr/share/info || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
insinto /usr/include
doins src/rep_config.h
dodoc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO DOC
docinto doc
dodoc doc/*
}
|