blob: 5ffecf7990eda29ff964d8223a0ae5312d796bd0 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libproxy/libproxy-0.4.6.ebuild,v 1.16 2011/03/26 14:26:11 ssuominen Exp $
EAPI="2"
PYTHON_DEPEND="python? 2:2.5"
inherit cmake-utils eutils multilib python portability
DESCRIPTION="Library for automatic proxy configuration management"
HOMEPAGE="http://code.google.com/p/libproxy/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="gnome kde mono networkmanager perl python test webkit xulrunner"
RDEPEND="
gnome? ( gnome-base/gconf:2 )
kde? ( >=kde-base/kdelibs-4.3 )
mono? ( dev-lang/mono )
networkmanager? ( net-misc/networkmanager )
perl? ( dev-lang/perl )
webkit? ( net-libs/webkit-gtk:2 )
xulrunner? ( =net-libs/xulrunner-1.9*:1.9 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.19"
DOCS="AUTHORS NEWS README ChangeLog"
PATCHES=( "${FILESDIR}"/${P}-mozjs-link_directory.patch )
pkg_setup() {
if use python; then
python_set_active_version 2
fi
}
src_configure() {
mycmakeargs=(
-DPERL_VENDORINSTALL=ON
-DCMAKE_C_FLAGS="${CFLAGS}"
-DCMAKE_CXX_FLAGS="${CXXFLAGS}"
$(cmake-utils_use_with gnome GNOME)
$(cmake-utils_use_with kde KDE4)
$(cmake-utils_use_with mono DOTNET)
$(cmake-utils_use_with networkmanager NM)
$(cmake-utils_use_with perl PERL)
$(cmake-utils_use_with python PYTHON)
-DWITH_VALA=OFF
$(cmake-utils_use_with webkit WEBKIT)
$(cmake-utils_use_with xulrunner MOZJS)
$(cmake-utils_use test BUILD_TESTING)
)
cmake-utils_src_configure
}
src_compile() {
# Prevent access violation when building with mono support
export MONO_SHARED_DIR="${T}/shared"
cmake-utils_src_compile
}
pkg_preinst() {
preserve_old_lib /usr/$(get_libdir)/libproxy.so.0
}
pkg_postinst() {
preserve_old_lib_notify /usr/$(get_libdir)/libproxy.so.0
if use python; then
python_need_rebuild
python_mod_optimize $(python_get_sitedir)/${PN}.py
fi
}
pkg_postrm() {
if use python; then
python_mod_cleanup $(python_get_sitedir)/${PN}.py
fi
}
|