diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-09-15 10:42:23 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-09-15 10:42:23 +0000 |
commit | 5bb2adb1bac293ff1bd9a146a890f3f86dd4191c (patch) | |
tree | 65839297de553c8a116a91b7f3368b3a2a2027c7 /net-misc/autoupnp | |
parent | Version bump, fixes security issue in mod_proxy_ajp #382971 and regression fo... (diff) | |
download | gentoo-2-5bb2adb1bac293ff1bd9a146a890f3f86dd4191c.tar.gz gentoo-2-5bb2adb1bac293ff1bd9a146a890f3f86dd4191c.tar.bz2 gentoo-2-5bb2adb1bac293ff1bd9a146a890f3f86dd4191c.zip |
Version bump. The new version fixes pthread optionality and uses libtinynotify.
(Portage version: 2.2.0_alpha55_p39/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/autoupnp')
-rw-r--r-- | net-misc/autoupnp/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/autoupnp/autoupnp-0.4.6.ebuild (renamed from net-misc/autoupnp/autoupnp-0.4.5.ebuild) | 19 |
2 files changed, 18 insertions, 10 deletions
diff --git a/net-misc/autoupnp/ChangeLog b/net-misc/autoupnp/ChangeLog index bf46690dd1a4..929ab4fa6acc 100644 --- a/net-misc/autoupnp/ChangeLog +++ b/net-misc/autoupnp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/autoupnp # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/ChangeLog,v 1.1 2011/07/27 20:08:52 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/ChangeLog,v 1.2 2011/09/15 10:42:23 mgorny Exp $ + +*autoupnp-0.4.6 (15 Sep 2011) + + 15 Sep 2011; Michał Górny <mgorny@gentoo.org> -autoupnp-0.4.5.ebuild, + +autoupnp-0.4.6.ebuild: + Version bump. The new version fixes pthread optionality and uses + libtinynotify. *autoupnp-0.4.5 (27 Jul 2011) diff --git a/net-misc/autoupnp/autoupnp-0.4.5.ebuild b/net-misc/autoupnp/autoupnp-0.4.6.ebuild index fb032f04e949..806eae5bf182 100644 --- a/net-misc/autoupnp/autoupnp-0.4.5.ebuild +++ b/net-misc/autoupnp/autoupnp-0.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/autoupnp-0.4.5.ebuild,v 1.1 2011/07/27 20:08:52 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/autoupnp-0.4.6.ebuild,v 1.1 2011/09/15 10:42:23 mgorny Exp $ EAPI=4 inherit autotools-utils @@ -12,19 +12,20 @@ SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" - -# libnotify RDEP forced due to missing pthreads in this version, -# and libnotify pulls it in indirectly. +IUSE="libnotify" RDEPEND="net-libs/miniupnpc - x11-libs/libnotify" + libnotify? ( x11-libs/libtinynotify )" DEPEND="${RDEPEND}" -DOCS=( README ) +DOCS=( NEWS README ) + +src_configure() { + myeconfargs=( + $(use_with libnotify) + ) -src_prepare() { - autotools-utils_src_prepare + autotools-utils_src_configure } src_install() { |