You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
921 B
46 lines
921 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
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 )
|
|
|
|
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/
|
|
}
|