blob: 126db0c9687a9e18e51ca5a4c825d91c99480637 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/lwp/lwp-1.9.ebuild,v 1.6 2004/02/22 12:35:25 mr_bones_ Exp $
DESCRIPTION="Light weight process library (used by Coda). This is NOT libwww-perl."
HOMEPAGE="http://www.coda.cs.cmu.edu/"
SRC_URI="ftp://ftp.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="1"
KEYWORDS="x86"
DEPEND="virtual/glibc"
src_compile() {
econf
emake || die "make failed"
}
src_install() {
# does not seems to consistently use DESTDIR where it needs to, but I could be wrong too
# make DESTDIR=${D} install || die
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
oldincludedir=${D}/usr/include \
install || die
}
|