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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# Copyright 1999-2014 Sabayon
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
AVAHI_MODULE="${AVAHI_MODULE:-${PN/avahi-}}"
MY_P=${P/-${AVAHI_MODULE}}
MY_PN=${PN/-${AVAHI_MODULE}}
WANT_AUTOMAKE=1.11
PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE="gdbm"
inherit autotools eutils flag-o-matic multilib multilib-minimal \
python-r1 systemd user
DESCRIPTION="System which facilitates service discovery on a local network (qt4 pkg)"
HOMEPAGE="http://avahi.org/"
SRC_URI="http://avahi.org/download/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
IUSE="dbus gdbm introspection nls python utils"
S="${WORKDIR}/${MY_P}"
COMMON_DEPEND="
~net-dns/avahi-base-${PV}[dbus=,gdbm=,introspection=,nls=,python=,${MULTILIB_USEDEP}]
dev-qt/qtcore:4
"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
MULTILIB_WRAPPED_HEADERS=(
# necessary until the UI libraries are ported
/usr/include/avahi-qt4/qt-watch.h
)
src_prepare() {
# Make gtk utils optional
epatch "${FILESDIR}"/${MY_PN}-0.6.30-optional-gtk-utils.patch
# Fix init scripts for >=openrc-0.9.0, bug #383641
epatch "${FILESDIR}"/${MY_PN}-0.6.x-openrc-0.9.x-init-scripts-fixes.patch
# install-exec-local -> install-exec-hook
epatch "${FILESDIR}"/${MY_P}-install-exec-hook.patch
# Backport host-name-from-machine-id patch, bug #466134
epatch "${FILESDIR}"/${MY_P}-host-name-from-machine-id.patch
# Don't install avahi-discover unless ENABLE_GTK_UTILS, bug #359575
epatch "${FILESDIR}"/${MY_P}-fix-install-avahi-discover.patch
epatch "${FILESDIR}"/${MY_P}-so_reuseport-may-not-exist-in-running-kernel.patch
# allow building client without the daemon
epatch "${FILESDIR}"/${MY_P}-build-client-without-daemon.patch
# Drop DEPRECATED flags, bug #384743
sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED=1::g' avahi-ui/Makefile.am || die
# Fix references to Lennart's home directory, bug #466210
sed -i -e 's/\/home\/lennart\/tmp\/avahi//g' man/* || die
# Prevent .pyc files in DESTDIR
>py-compile
eautoreconf
# bundled manpages
multilib_copy_sources
}
src_configure() {
# those steps should be done once-per-ebuild rather than per-ABI
use sh && replace-flags -O? -O0
# We need to unset DISPLAY, else the configure script might have problems detecting the pygtk module
unset DISPLAY
multilib-minimal_src_configure
}
multilib_src_configure() {
local myconf=( --disable-static )
if ! multilib_is_native_abi; then
myconf+=(
# used by daemons only
--disable-libdaemon
--with-xml=none
)
fi
if use python; then
myconf+=(
$(multilib_native_use_enable dbus python-dbus)
)
fi
econf \
--localstatedir="${EPREFIX}/var" \
--with-distro=gentoo \
--disable-python-dbus \
--disable-xmltoman \
--disable-monodoc \
--disable-pygtk \
--enable-glib \
--enable-gobject \
$(use_enable dbus) \
$(multilib_native_use_enable python) \
$(use_enable nls) \
$(multilib_native_use_enable introspection) \
--disable-qt3 \
--disable-gtk3 \
--disable-gtk --disable-gtk-utils \
$(multilib_is_native_abi && echo -n --enable-qt4 || echo -n --disable-qt4) \
$(use_enable gdbm) \
$(systemd_with_unitdir) \
"${myconf[@]}"
}
multilib_src_compile() {
if multilib_is_native_abi; then
cd "${BUILD_DIR}"/avahi-common || die
emake || die
cd "${BUILD_DIR}"/avahi-qt || die
emake || die
cd "${BUILD_DIR}" || die
emake avahi-qt4.pc || die
fi
}
multilib_src_install() {
if multilib_is_native_abi; then
mkdir -p "${D}/usr/bin" || die
cd "${BUILD_DIR}"/avahi-qt || die
emake install DESTDIR="${D}" || die
cd "${BUILD_DIR}" || die
dodir /usr/$(get_libdir)/pkgconfig
insinto /usr/$(get_libdir)/pkgconfig
doins avahi-qt4.pc
fi
}
multilib_src_install_all() {
prune_libtool_files --all
}
|