diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-06-11 11:58:21 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-06-11 11:58:21 +0000 |
commit | 526db16c194b4fba629e372c03bd369a7d58ea0e (patch) | |
tree | c9790b3a60867a94b46b7ddc6f9a06842a206b62 /net-misc | |
parent | Stable for HPPA (bug #512904). (diff) | |
download | gentoo-2-526db16c194b4fba629e372c03bd369a7d58ea0e.tar.gz gentoo-2-526db16c194b4fba629e372c03bd369a7d58ea0e.tar.bz2 gentoo-2-526db16c194b4fba629e372c03bd369a7d58ea0e.zip |
Version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/minissdpd/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/minissdpd/minissdpd-1.2.20140610.ebuild | 36 |
2 files changed, 44 insertions, 2 deletions
diff --git a/net-misc/minissdpd/ChangeLog b/net-misc/minissdpd/ChangeLog index 51c58c9a32e4..c5ca415ac855 100644 --- a/net-misc/minissdpd/ChangeLog +++ b/net-misc/minissdpd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/minissdpd -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/minissdpd/ChangeLog,v 1.10 2013/09/07 13:20:11 blueness Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/minissdpd/ChangeLog,v 1.11 2014/06/11 11:58:21 blueness Exp $ + +*minissdpd-1.2.20140610 (11 Jun 2014) + + 11 Jun 2014; Anthony G. Basile <blueness@gentoo.org> + +minissdpd-1.2.20140610.ebuild: + Version bump *minissdpd-1.2.20130907 (07 Sep 2013) diff --git a/net-misc/minissdpd/minissdpd-1.2.20140610.ebuild b/net-misc/minissdpd/minissdpd-1.2.20140610.ebuild new file mode 100644 index 000000000000..cdf720d70233 --- /dev/null +++ b/net-misc/minissdpd/minissdpd-1.2.20140610.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/minissdpd/minissdpd-1.2.20140610.ebuild,v 1.1 2014/06/11 11:58:21 blueness Exp $ + +EAPI="5" +inherit eutils toolchain-funcs + +DESCRIPTION="MiniSSDP Daemon" +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz" +HOMEPAGE="http://miniupnp.free.fr/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=sys-apps/net-tools-1.60_p20120127084908[old-output] + || ( net-misc/miniupnpd net-libs/miniupnpc )" + +src_prepare() { + epatch "${FILESDIR}/${PN}-1.2-respect-CC.patch" + epatch "${FILESDIR}/${PN}-1.2-remove-initd.patch" +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install () { + einstall PREFIX="${D}" + newinitd "${FILESDIR}/${PN}.initd" ${PN} + newconfd "${FILESDIR}/${PN}.confd" ${PN} + dodoc Changelog.txt README + doman minissdpd.1 +} |