Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/autoupnp: metadata.xml ChangeLog autoupnp-0.4.5.ebuild
Date: Wed, 27 Jul 2011 20:09:02
Message-Id: 20110727200852.A70012004B@flycatcher.gentoo.org
1 mgorny 11/07/27 20:08:52
2
3 Added: metadata.xml ChangeLog autoupnp-0.4.5.ebuild
4 Log:
5 Introduce an ebuild for autoupnp, automatic UPnP port forwarder (bug #322057).
6
7 (Portage version: 2.2.0_alpha47_p5/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-misc/autoupnp/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>mgorny@g.o</email>
23 <name>Michał Górny</name>
24 </maintainer>
25 <upstream>
26 <maintainer status="active">
27 <email>mgorny@g.o</email>
28 <name>Michał Górny</name>
29 </maintainer>
30 <bugs-to>http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Linux&amp;component=Applications&amp;short_desc=net-misc/autoupnp:%20</bugs-to>
31 </upstream>
32 </pkgmetadata>
33
34
35
36 1.1 net-misc/autoupnp/ChangeLog
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/ChangeLog?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/ChangeLog?rev=1.1&content-type=text/plain
40
41 Index: ChangeLog
42 ===================================================================
43 # ChangeLog for net-misc/autoupnp
44 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
45 # $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/ChangeLog,v 1.1 2011/07/27 20:08:52 mgorny Exp $
46
47 *autoupnp-0.4.5 (27 Jul 2011)
48
49 27 Jul 2011; Michał Górny <mgorny@g.o> +autoupnp-0.4.5.ebuild,
50 +metadata.xml:
51 Introduce an ebuild for autoupnp, automatic UPnP port forwarder (bug
52 #322057).
53
54
55
56
57 1.1 net-misc/autoupnp/autoupnp-0.4.5.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/autoupnp-0.4.5.ebuild?rev=1.1&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/autoupnp/autoupnp-0.4.5.ebuild?rev=1.1&content-type=text/plain
61
62 Index: autoupnp-0.4.5.ebuild
63 ===================================================================
64 # Copyright 1999-2011 Gentoo Foundation
65 # Distributed under the terms of the GNU General Public License v2
66 # $Header: /var/cvsroot/gentoo-x86/net-misc/autoupnp/autoupnp-0.4.5.ebuild,v 1.1 2011/07/27 20:08:52 mgorny Exp $
67
68 EAPI=4
69 inherit autotools-utils
70
71 DESCRIPTION="Automatic open port forwarder using UPnP"
72 HOMEPAGE="https://github.com/mgorny/autoupnp/"
73 SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
74
75 LICENSE="BSD"
76 SLOT="0"
77 KEYWORDS="~amd64 ~x86"
78 IUSE=""
79
80 # libnotify RDEP forced due to missing pthreads in this version,
81 # and libnotify pulls it in indirectly.
82
83 RDEPEND="net-libs/miniupnpc
84 x11-libs/libnotify"
85 DEPEND="${RDEPEND}"
86
87 DOCS=( README )
88
89 src_prepare() {
90 autotools-utils_src_prepare
91 }
92
93 src_install() {
94 autotools-utils_src_install
95 remove_libtool_files all
96 }