blob: 98bd7186e7125dc820e6acf9b03a9cc6f2cfbd99 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-4.0.0_alpha17.ebuild,v 1.1 2011/11/01 19:23:53 vostorga Exp $
EAPI=4
inherit eutils confutils python waf-utils versionator
MY_PV="${PV/_alpha/alpha}"
MY_P="${PN}-${MY_PV}"
if [ "${PV}" = "4.9999" ]; then
EGIT_REPO_URI="git://git.samba.org/samba.git"
inherit git-2
else
SRC_URI="mirror://samba/samba4/${MY_P}.tar.gz"
fi
DESCRIPTION="Samba Server component"
HOMEPAGE="http://www.samba.org/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="acl addns ads aio avahi client cluster cups debug fulltest gnutls iprint
krb5 ldap pam quota swat syslog winbind"
RDEPEND="dev-libs/popt
sys-libs/readline
virtual/libiconv
>=dev-lang/python-2.4.2
dev-python/subunit
>=app-crypt/heimdal-1.5[-ssl]
>=sys-libs/tdb-1.2.9[python]
>=sys-libs/ldb-1.1.2
>=sys-libs/talloc-2.0.6[python]
>=sys-libs/tevent-0.9.14
sys-libs/zlib
ads? ( client? ( net-fs/cifs-utils[ads] ) )
client? ( net-fs/cifs-utils )
cluster? ( >=dev-db/ctdb-1.0.114_p1 )
ldap? ( net-nds/openldap )
gnutls? ( >=net-libs/gnutls-1.4.0 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
RESTRICT="mirror"
S="${WORKDIR}/${MY_P}"
CONFDIR="${FILESDIR}/$(get_version_component_range 1-2)"
WAF_BINARY="${S}/buildtools/bin/waf"
pkg_setup() {
confutils_use_depend_all fulltest test
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
cd "${WORKDIR}/${MY_P}" && epatch "${CONFDIR}"/com_err.patch
}
src_configure() {
local myconf=''
if use "debug"; then
myconf="${myconf} --enable-developer"
fi
if use "cluster"; then
myconf="${myconf} --with-ctdb-dir=/usr"
fi
myconf="${myconf} \
--enable-fhs \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-rpath \
--disable-rpath-install \
--nopyc \
--nopyo \
--bundled-libraries=NONE \
--builtin-libraries=replace,ccan \
$(use_with addns dnsupdate) \
$(use_with acl) \
$(use_with ads) \
$(use_with aio aio-support) \
$(use_enable avahi) \
$(use_with cluster cluster-support) \
$(use_enable cups) \
$(use_enable gnutls) \
$(use_enable iprint) \
$(use_with krb5) \
$(use_with ldap) \
$(use_with pam) \
$(use_with pam pam_smbpass) \
$(use_with quota) \
$(use_with syslog) \
$(use_with swat) \
$(use_with winbind)"
waf-utils_src_configure ${myconf}
}
src_install() {
waf-utils_src_install
newinitd "${CONFDIR}/samba4.initd" samba || die "newinitd failed"
#remove conflicting file for tevent profided by sys-libs/tevent
find "${D}" -type f -name "_tevent.so" -exec rm -f {} \;
}
src_test() {
local extra_opts=""
use fulltest || extra_opts+="--quick"
"${WAF_BINARY}" test ${extra_opts} || die "test failed"
}
pkg_postinst() {
# Optimize the python modules so they get properly removed
python_mod_optimize "${PN}"
einfo "See http://wiki.samba.org/index.php/Samba4/HOWTO for more"
einfo "information about samba 4."
# Warn that it's an alpha
ewarn "Samba 4 is an alpha and therefore not considered stable. It's only"
ewarn "meant to test and experiment and definitely not for production"
}
pkg_postrm() {
# Clean up the python modules
python_mod_cleanup "${PN}"
}
|