blob: 0fb4aedc4f9678243f8afa5ebb2a2aad7098306c (
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
|
# 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-2.0.5.ebuild,v 1.11 2004/07/09 20:53:29 kloeri Exp $
inherit eutils gnome2
DESCRIPTION="GNet network library."
HOMEPAGE="http://www.gnetlibrary.org/"
SRC_URI="http://www.gnetlibrary.org/src/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="x86 ppc sparc alpha hppa ~ia64 amd64"
IUSE="doc"
RDEPEND=">=dev-libs/glib-1.2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( dev-util/gtk-doc )"
G2CONF=" --with-html-dir=${D}/usr/share/gtk-doc/html"
DOCS="AUTHORS BUGS ChangeLog COPYING HACKING NEWS README TODO"
src_unpack() {
unpack ${A}
cd ${S}
# Fix DocBook conflict. See bug #43942.
epatch ${FILESDIR}/${P}-gtkdoc_fix.patch
}
|