[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2021-10-31 Thread Sam James
commit: a689dc27e45ceca1d5a00b8f40818ca16f0496a5
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 31 09:41:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 31 09:41:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a689dc27

net-misc/stuntman: respect AR, CXX

Signed-off-by: Sam James  gentoo.org>

 net-misc/stuntman/stuntman-1.2.16.ebuild | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/net-misc/stuntman/stuntman-1.2.16.ebuild 
b/net-misc/stuntman/stuntman-1.2.16.ebuild
index ceea617f4d7..6cf50090706 100644
--- a/net-misc/stuntman/stuntman-1.2.16.ebuild
+++ b/net-misc/stuntman/stuntman-1.2.16.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit toolchain-funcs
+
 DESCRIPTION="Open source implementation of the STUN protocol"
 HOMEPAGE="http://www.stunprotocol.org;
 SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
@@ -10,7 +12,6 @@ SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 RDEPEND="
dev-libs/openssl:0=
@@ -22,9 +23,15 @@ DEPEND="${RDEPEND}
 S="${WORKDIR}/stunserver"
 
 src_compile() {
+   tc-export AR CXX
+
emake T=""
 }
 
+src_test() {
+   ./stuntestcode || die
+}
+
 src_install() {
dobin stunclient
dosbin stunserver
@@ -32,7 +39,3 @@ src_install() {
newinitd "${FILESDIR}/${PN}.initd" ${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
 }
-
-src_test() {
-   ./stuntestcode
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2021-10-30 Thread Sam James
commit: 93e535bea3d47b81de6209bc0be445128c81041c
Author: Jaco Kroon  uls  co  za>
AuthorDate: Sun Oct 17 18:29:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 31 03:34:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e535be

net-misc/stuntman: 1.2.16

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Jaco Kroon  uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/22614
Signed-off-by: Sam James  gentoo.org>

 net-misc/stuntman/Manifest   |  1 +
 net-misc/stuntman/stuntman-1.2.16.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/net-misc/stuntman/Manifest b/net-misc/stuntman/Manifest
index 794be176089..f4c204a4497 100644
--- a/net-misc/stuntman/Manifest
+++ b/net-misc/stuntman/Manifest
@@ -1 +1,2 @@
 DIST stunserver-1.2.15.tgz 124675 BLAKE2B 
fc59a400dea30382aec80d6b634ed7c2a1823712788b7775c1bbf8511fa62173224084ae9b05a402e0efb11f0077087e515d9639eb9eec5d0ced48ce37c20cef
 SHA512 
8af5341cd3a78bd3a68f75e2da1b6d5e75de94c9baa4f48824667e2c50f9b8323a60d33711c658c7e628e2a170cea7584e4d4012603736ad7140fe1a37ad9b66
+DIST stunserver-1.2.16.tgz 123549 BLAKE2B 
6b5d31d9567d687236414a853ed3723c3dccb7d7eeea9d99d1384758ca34f430538b40b54fc9447ca55beccb82dfe45fd8cd0a330ef36b25f88d53f5e148e8cb
 SHA512 
d6444954c9d1791eba52418a63c36ae41d009731b1bfebdcb216af4242e816b1fd878b43c3c3dccb5c9c462a993ae5f53f3256d949f3e6ce889659ba6fe211a5

diff --git a/net-misc/stuntman/stuntman-1.2.16.ebuild 
b/net-misc/stuntman/stuntman-1.2.16.ebuild
new file mode 100644
index 000..ceea617f4d7
--- /dev/null
+++ b/net-misc/stuntman/stuntman-1.2.16.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Open source implementation of the STUN protocol"
+HOMEPAGE="http://www.stunprotocol.org;
+SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/openssl:0=
+"
+DEPEND="${RDEPEND}
+   dev-libs/boost
+"
+
+S="${WORKDIR}/stunserver"
+
+src_compile() {
+   emake T=""
+}
+
+src_install() {
+   dobin stunclient
+   dosbin stunserver
+   dodoc HISTORY README
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+}
+
+src_test() {
+   ./stuntestcode
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2021-10-13 Thread Joonas Niilola
commit: 9fcf2ec33fe22bdc373a8f1793cffc5f13a3c438
Author: Jaco Kroon  uls  co  za>
AuthorDate: Tue Oct  5 09:07:10 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Oct 13 15:25:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fcf2ec3

net-misc/stuntman: take maintainership (via pm).

Signed-off-by: Jaco Kroon  uls.co.za>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/stuntman/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-misc/stuntman/metadata.xml b/net-misc/stuntman/metadata.xml
index bef24d2c233..6aebbc46f55 100644
--- a/net-misc/stuntman/metadata.xml
+++ b/net-misc/stuntman/metadata.xml
@@ -1,5 +1,12 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+   
+   j...@uls.co.za
+   Jaco Kroon
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2021-10-04 Thread Sam James
commit: 0b563086b91aad6027bacd3d2169c72509adee3d
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct  4 20:39:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct  4 20:40:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b563086

net-misc/stuntman: drop inactive chainsaw@

As agreed with retirement@.

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Sam James  gentoo.org>

 net-misc/stuntman/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/net-misc/stuntman/metadata.xml b/net-misc/stuntman/metadata.xml
index e3538516d2b..bef24d2c233 100644
--- a/net-misc/stuntman/metadata.xml
+++ b/net-misc/stuntman/metadata.xml
@@ -1,8 +1,5 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-chain...@gentoo.org
-Tony Vroon
-  
+  
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2020-01-01 Thread Andreas Sturmlechner
commit: 47aed4252fd3fcfe01c86d6fc6a7e2af28a7c739
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun  5 20:00:38 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  1 16:03:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47aed425

net-misc/stuntman: Drop old

Broken by >=OpenSSL-1.1.

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-misc/stuntman/Manifest  |  2 --
 net-misc/stuntman/stuntman-1.2.7.ebuild | 35 -
 net-misc/stuntman/stuntman-1.2.9.ebuild | 35 -
 3 files changed, 72 deletions(-)

diff --git a/net-misc/stuntman/Manifest b/net-misc/stuntman/Manifest
index b6ef2f4d983..794be176089 100644
--- a/net-misc/stuntman/Manifest
+++ b/net-misc/stuntman/Manifest
@@ -1,3 +1 @@
 DIST stunserver-1.2.15.tgz 124675 BLAKE2B 
fc59a400dea30382aec80d6b634ed7c2a1823712788b7775c1bbf8511fa62173224084ae9b05a402e0efb11f0077087e515d9639eb9eec5d0ced48ce37c20cef
 SHA512 
8af5341cd3a78bd3a68f75e2da1b6d5e75de94c9baa4f48824667e2c50f9b8323a60d33711c658c7e628e2a170cea7584e4d4012603736ad7140fe1a37ad9b66
-DIST stunserver-1.2.7.tgz 113853 BLAKE2B 
b4da41c46d2017da76b21544bae9eaba4deb25d50145829d92fa18fb8e2c5eec6b81c54a3c91f592686c73c0ef66dfde0e74fe34e82a1eac320455d0808eb7a6
 SHA512 
b6adc1b237e8717f296201bf865bea39c759b978db954cc15e37c3be7c2e109607273d96bb88c42654d0b843ca1a557874d02ab58e16506534db30f52d7e6f51
-DIST stunserver-1.2.9.tgz 116797 BLAKE2B 
16a380c9dd002f9ededa5cc7ea757087b2c5199144c8b6cff2c429ce6f77741d7f18a1ed12e9035c1f77f7c1546adb95ceaad744780347f035a1b302637de442
 SHA512 
8e947dbe050f70e10615a23900dbd2151cd9fad36e343b4cf34c0b7a4e07debb8ced16fb7eac0469cd5ec3ef7a4c04cb9347f59c2a1326af3db400906198454f

diff --git a/net-misc/stuntman/stuntman-1.2.7.ebuild 
b/net-misc/stuntman/stuntman-1.2.7.ebuild
deleted file mode 100644
index dfb40eb4a22..000
--- a/net-misc/stuntman/stuntman-1.2.7.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="STUNTMAN is an open source implementation of the STUN protocol"
-HOMEPAGE="http://www.stunprotocol.org;
-SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-libs/boost
-   dev-libs/openssl:0"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/stunserver"
-
-src_compile() {
-   emake T=""
-}
-
-src_install() {
-   dobin stunclient
-   dosbin stunserver
-   dodoc HISTORY README
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-}
-
-src_test() {
-   ./stuntestcode
-}

diff --git a/net-misc/stuntman/stuntman-1.2.9.ebuild 
b/net-misc/stuntman/stuntman-1.2.9.ebuild
deleted file mode 100644
index d391ab7e5ef..000
--- a/net-misc/stuntman/stuntman-1.2.9.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="STUNTMAN is an open source implementation of the STUN protocol"
-HOMEPAGE="http://www.stunprotocol.org;
-SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-libs/boost
-   dev-libs/openssl:0"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/stunserver"
-
-src_compile() {
-   emake T=""
-}
-
-src_install() {
-   dobin stunclient
-   dosbin stunserver
-   dodoc HISTORY README
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-}
-
-src_test() {
-   ./stuntestcode
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2019-04-28 Thread Andreas Sturmlechner
commit: 53cd6b394f44976c1fb6e1446cd799c80e9006bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Apr 28 20:07:37 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Apr 28 21:40:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53cd6b39

net-misc/stuntman: 1.2.15 version bump, add missing openssl slot op

Closes: https://bugs.gentoo.org/683428
Closes: https://bugs.gentoo.org/677614
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-misc/stuntman/Manifest   |  1 +
 net-misc/stuntman/stuntman-1.2.15.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/net-misc/stuntman/Manifest b/net-misc/stuntman/Manifest
index 901db130254..b6ef2f4d983 100644
--- a/net-misc/stuntman/Manifest
+++ b/net-misc/stuntman/Manifest
@@ -1,2 +1,3 @@
+DIST stunserver-1.2.15.tgz 124675 BLAKE2B 
fc59a400dea30382aec80d6b634ed7c2a1823712788b7775c1bbf8511fa62173224084ae9b05a402e0efb11f0077087e515d9639eb9eec5d0ced48ce37c20cef
 SHA512 
8af5341cd3a78bd3a68f75e2da1b6d5e75de94c9baa4f48824667e2c50f9b8323a60d33711c658c7e628e2a170cea7584e4d4012603736ad7140fe1a37ad9b66
 DIST stunserver-1.2.7.tgz 113853 BLAKE2B 
b4da41c46d2017da76b21544bae9eaba4deb25d50145829d92fa18fb8e2c5eec6b81c54a3c91f592686c73c0ef66dfde0e74fe34e82a1eac320455d0808eb7a6
 SHA512 
b6adc1b237e8717f296201bf865bea39c759b978db954cc15e37c3be7c2e109607273d96bb88c42654d0b843ca1a557874d02ab58e16506534db30f52d7e6f51
 DIST stunserver-1.2.9.tgz 116797 BLAKE2B 
16a380c9dd002f9ededa5cc7ea757087b2c5199144c8b6cff2c429ce6f77741d7f18a1ed12e9035c1f77f7c1546adb95ceaad744780347f035a1b302637de442
 SHA512 
8e947dbe050f70e10615a23900dbd2151cd9fad36e343b4cf34c0b7a4e07debb8ced16fb7eac0469cd5ec3ef7a4c04cb9347f59c2a1326af3db400906198454f

diff --git a/net-misc/stuntman/stuntman-1.2.15.ebuild 
b/net-misc/stuntman/stuntman-1.2.15.ebuild
new file mode 100644
index 000..4801a72bba3
--- /dev/null
+++ b/net-misc/stuntman/stuntman-1.2.15.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Open source implementation of the STUN protocol"
+HOMEPAGE="http://www.stunprotocol.org;
+SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/openssl:0=
+"
+DEPEND="${RDEPEND}
+   dev-libs/boost
+"
+
+S="${WORKDIR}/stunserver"
+
+src_compile() {
+   emake T=""
+}
+
+src_install() {
+   dobin stunclient
+   dosbin stunserver
+   dodoc HISTORY README
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+}
+
+src_test() {
+   ./stuntestcode
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/files/

2017-01-26 Thread David Seifert
commit: 80f9e5739927f1714727f41036ba7e7ca6293fd9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 24 16:43:29 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Jan 26 22:36:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f9e573

net-misc/stuntman: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/3628

 net-misc/stuntman/files/initd.v1 | 21 -
 1 file changed, 21 deletions(-)

diff --git a/net-misc/stuntman/files/initd.v1 b/net-misc/stuntman/files/initd.v1
deleted file mode 100644
index 732ca55..
--- a/net-misc/stuntman/files/initd.v1
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
-   need net
-}
-
-start() {
-   ebegin "Starting STUNTMAN"
-   start-stop-daemon --start --quiet --exec /usr/sbin/stunserver \
-   --make-pidfile --pidfile=/run/stunserver.pid --background
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping STUNTMAN"
-   start-stop-daemon --stop --quiet --pidfile=/run/stunserver.pid
-   eend $?
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2016-08-04 Thread Tony Vroon
commit: 2d16abba3a65488c85fd9867b1ab463d4df972f3
Author: Tony Vroon  gentoo  org>
AuthorDate: Thu Aug  4 13:49:39 2016 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Thu Aug  4 13:49:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d16abba

net-misc/stuntman: Version bump to 1.2.9; remove 1.2.6 ebuilds.

Package-Manager: portage-2.3.0

 net-misc/stuntman/Manifest  | 2 +-
 net-misc/stuntman/stuntman-1.2.9.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/stuntman/Manifest b/net-misc/stuntman/Manifest
index ee56344..1b1c80e 100644
--- a/net-misc/stuntman/Manifest
+++ b/net-misc/stuntman/Manifest
@@ -1,2 +1,2 @@
-DIST stunserver-1.2.6.tgz 116056 SHA256 
6d88792f6bba4be4a21227e1dbb58e5fad5bb36ce826352187d35451d9c6f58f SHA512 
1d5f74d851308cf455795f9fcc80cdec687b4b1f6fa44477f13b7085c41a1c2eb8ab94578c71f9f00e4c830f3775d5d56f320247fd6b7d227a45e679ba784ef4
 WHIRLPOOL 
226c9520547102b6a49f227f97e00899d7f5d2c4775c32c8bea3dfa52659281fe97c41d6c384bd2adb102c64600391c20227c4698157223adc8b992a299d607b
 DIST stunserver-1.2.7.tgz 113853 SHA256 
51415bf83339f059c6a65bbece9b758e3f198cb86063a0f1b4f12d825c87640e SHA512 
b6adc1b237e8717f296201bf865bea39c759b978db954cc15e37c3be7c2e109607273d96bb88c42654d0b843ca1a557874d02ab58e16506534db30f52d7e6f51
 WHIRLPOOL 
67b19195b6f64420d9283241e7f51442b347020a55e46f405c3e875a6c59eca382bc680b3b17874a77df76ba8e64d1ecfa40367ef1713e83e96c25c4c6f441d1
+DIST stunserver-1.2.9.tgz 116797 SHA256 
f63452869bccc6dc1ae55a9cce9e34fba3b96bb7b0f70ea33b211a0fb4eff49a SHA512 
8e947dbe050f70e10615a23900dbd2151cd9fad36e343b4cf34c0b7a4e07debb8ced16fb7eac0469cd5ec3ef7a4c04cb9347f59c2a1326af3db400906198454f
 WHIRLPOOL 
1da2c751ac28d0b80c3d88bfbccb7e9bc63791f85ac1c209d0ae9d2005d799d1f97471b8d54b0a7317599afb927cadc2c34b694e5c3a7b730ec643422187336f

diff --git a/net-misc/stuntman/stuntman-1.2.9.ebuild 
b/net-misc/stuntman/stuntman-1.2.9.ebuild
index 7bb599d..d67d907 100644
--- a/net-misc/stuntman/stuntman-1.2.9.ebuild
+++ b/net-misc/stuntman/stuntman-1.2.9.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 DESCRIPTION="STUNTMAN is an open source implementation of the STUN protocol"
 HOMEPAGE="http://www.stunprotocol.org;



[gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/

2016-08-04 Thread Tony Vroon
commit: efa033a77238e3967d5078eb0fbc96a7626db295
Author: Tony Vroon  gentoo  org>
AuthorDate: Thu Aug  4 13:49:22 2016 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Thu Aug  4 13:49:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa033a7

net-misc/stuntman: Version bump to 1.2.9; remove 1.2.6 ebuilds.

 net-misc/stuntman/stuntman-1.2.6.ebuild| 38 --
 ...ntman-1.2.6-r1.ebuild => stuntman-1.2.9.ebuild} |  4 +--
 2 files changed, 2 insertions(+), 40 deletions(-)

diff --git a/net-misc/stuntman/stuntman-1.2.6.ebuild 
b/net-misc/stuntman/stuntman-1.2.6.ebuild
deleted file mode 100644
index 8edb194..000
--- a/net-misc/stuntman/stuntman-1.2.6.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="STUNTMAN is an open source implementation of the STUN protocol"
-HOMEPAGE="http://www.stunprotocol.org;
-SRC_URI="http://www.stunprotocol.org/stunserver-${PV}.tgz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-libs/boost
-   dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/stunserver"
-
-src_compile()
-{
-   emake T=""
-}
-
-src_install()
-{
-   dobin stunclient
-   dosbin stunserver
-   dodoc HISTORY README
-   newinitd "${FILESDIR}/initd.v1" stuntman
-}
-
-src_test()
-{
-   ./stuntestcode
-}

diff --git a/net-misc/stuntman/stuntman-1.2.6-r1.ebuild 
b/net-misc/stuntman/stuntman-1.2.9.ebuild
similarity index 90%
rename from net-misc/stuntman/stuntman-1.2.6-r1.ebuild
rename to net-misc/stuntman/stuntman-1.2.9.ebuild
index 2629dc7..7bb599d 100644
--- a/net-misc/stuntman/stuntman-1.2.6-r1.ebuild
+++ b/net-misc/stuntman/stuntman-1.2.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="dev-libs/boost
-   dev-libs/openssl"
+   dev-libs/openssl:0"
 RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/stunserver"