summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2011-04-20 17:43:37 +0000
committerChristoph Junghans <ottxor@gentoo.org>2011-04-20 17:43:37 +0000
commit040f5baa94c9c056ce9336862b47635f9ca594db (patch)
treed4a70d89b6dfb238c2d053bbeafbc60e2e6ebecb /media-libs
parentVersion bump, preparing for switch to fhs layout (diff)
downloadgentoo-2-040f5baa94c9c056ce9336862b47635f9ca594db.tar.gz
gentoo-2-040f5baa94c9c056ce9336862b47635f9ca594db.tar.bz2
gentoo-2-040f5baa94c9c056ce9336862b47635f9ca594db.zip
[media-libs/herqq] version bump
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/herqq/ChangeLog7
-rw-r--r--media-libs/herqq/herqq-1.0.0.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/media-libs/herqq/ChangeLog b/media-libs/herqq/ChangeLog
index 84fa859dd150..ed1b45098b0c 100644
--- a/media-libs/herqq/ChangeLog
+++ b/media-libs/herqq/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/herqq
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/ChangeLog,v 1.2 2011/04/19 02:37:14 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/ChangeLog,v 1.3 2011/04/20 17:43:37 ottxor Exp $
+
+*herqq-1.0.0 (20 Apr 2011)
+
+ 20 Apr 2011; Christoph Junghans <ottxor@gentoo.org> +herqq-1.0.0.ebuild:
+ Version bump
19 Apr 2011; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
herqq-0.8.0.ebuild:
diff --git a/media-libs/herqq/herqq-1.0.0.ebuild b/media-libs/herqq/herqq-1.0.0.ebuild
new file mode 100644
index 000000000000..2c5963253721
--- /dev/null
+++ b/media-libs/herqq/herqq-1.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/herqq/herqq-1.0.0.ebuild,v 1.1 2011/04/20 17:43:37 ottxor Exp $
+
+EAPI="3"
+
+inherit base 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 ~x86"
+IUSE="doc"
+
+#no release of QtSolutions using bundled libQtSolutions_SOAP
+RDEPEND="x11-libs/qt-core"
+DEPEND="${RDEPEND}"
+
+DOCS=( hupnp/ChangeLog )
+HTML_DOCS=( hupnp/docs/html/ )
+
+src_configure() {
+ eqmake4 herqq.pro PREFIX="${EPREFIX}/usr" || die
+}
+
+src_install() {
+ qt4-r2_src_install || die
+ if use doc; then
+ base_src_install_docs || die
+ fi
+}