blob: 5f18f8fde97a89b228b01ef1294400f90fac9d3b (
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
48
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/gnet-2.0.8-r1.ebuild,v 1.12 2012/05/05 02:54:30 jdhore Exp $
EAPI="2"
GCONF_DEBUG="yes"
inherit autotools eutils gnome2
DESCRIPTION="A simple network library."
HOMEPAGE="http://live.gnome.org/GNetLibrary"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE="doc test"
# FIXME: automagic use of valgrind
RDEPEND=">=dev-libs/glib-2.6:2"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( >=dev-util/gtk-doc-1.2 )
>=dev-libs/check-0.9.7"
# FIXME: check should only be needed with USE 'test', bug #349301
# test? ( >=dev-libs/check-0.9.7 )"
pkg_setup() {
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README* TODO"
# Do not enable network tests in an ebuild environment
G2CONF="${G2CONF} --disable-network-tests"
}
src_prepare() {
# Do not leak main context reference, from master
epatch "${FILESDIR}/${PN}-2.0.8-context-leak.patch"
# Fix usage of check framework, bug #296849, from master
epatch "${FILESDIR}/${PN}-2.0.8-check-usage-update.patch"
# ifdef around network tests code, refs. bug #320759
epatch "${FILESDIR}/${PN}-2.0.8-network-tests.patch"
# Do not pass silly cflags with USE=debug, bug #320759
sed 's/-Werror//' -i configure.ac configure || die "sed failed"
eautoreconf
gnome2_src_prepare
}
|