blob: aec62039ed5e6aa941b75e162f8e876fd9680426 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/gnet-1.1.9.ebuild,v 1.11 2004/06/24 23:11:08 agriffis Exp $
DESCRIPTION="GNet network library."
SRC_URI="http://www.gnetlibrary.org/src/${P}.tar.gz"
HOMEPAGE="http://www.gnetlibrary.org/"
IUSE=""
SLOT="1"
LICENSE="LGPL-2"
KEYWORDS="x86 ppc hppa amd64 alpha sparc ia64"
# yes, the >= is correct, this software can use both glib 1.2 and 2.0!
RDEPEND=">=dev-libs/glib-1.2.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf \
--with-html-dir=${D}/usr/share/doc/${PF} \
--sysconfdir=/etc \
--localstatedir=/var/lib || die
emake || die
}
src_install() {
make \
prefix=${D}/usr \
datadir=${D}/usr/share \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS BUGS ChangeLog COPYING NEWS README TODO
}
|