forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
herqq-1.0.0-r2.ebuild
45 lines (36 loc) · 956 Bytes
/
herqq-1.0.0-r2.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit multilib qt4-r2
DESCRIPTION="A software library for building UPnP devices"
HOMEPAGE="http://www.herqq.org"
SRC_URI="mirror://sourceforge/hupnp/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="doc"
# no release of QtSolutions using bundled libQtSolutions_SOAP
RDEPEND="
dev-qt/qtcore:4
!media-libs/hupnp-ng
"
DEPEND="${RDEPEND}
app-arch/unzip
"
DOCS=( hupnp/ChangeLog )
PATCHES=( "${FILESDIR}/${P}-gcc6.patch" )
src_prepare() {
# fix the .pro file for multilib issues
sed \
-e "s:PREFIX/lib:PREFIX/$(get_libdir):" \
-i "${S}/hupnp/src.pro" \
-i "${S}/hupnp/lib/qtsoap-2.7-opensource/buildlib/buildlib.pro" || die
qt4-r2_src_prepare
}
src_configure() {
eqmake4 PREFIX="${EPREFIX}/usr/" CONFIG+=DISABLE_TESTAPP
}
src_install() {
qt4-r2_src_install
use doc && dohtml -r hupnp/docs/html/
}