public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/xmw:master commit in: net-misc/iodine/files/, net-misc/iodine/
@ 2014-07-18 15:30 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2014-07-18 15:30 UTC (permalink / raw
  To: gentoo-commits

commit:     540b7b19cc15980db103c3fc0802a286ad437168
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Fri Jul 18 14:31:29 2014 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 14:31:29 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=540b7b19

Version bump (bug 513560)

Package-Manager: portage-2.2.10
Manifest-Sign-Key:

---
 net-misc/iodine/ChangeLog                          |  6 +++
 net-misc/iodine/Manifest                           |  1 +
 .../iodine/files/iodine-0.7.0-TestMessage.patch    | 12 +++++
 net-misc/iodine/files/iodined.conf                 | 44 +++++++++++++++
 net-misc/iodine/files/iodined.init                 | 62 ++++++++++++++++++++++
 net-misc/iodine/iodine-0.7.0.ebuild                | 51 ++++++++++++++++++
 net-misc/iodine/metadata.xml                       |  8 +++
 7 files changed, 184 insertions(+)

diff --git a/net-misc/iodine/ChangeLog b/net-misc/iodine/ChangeLog
new file mode 100644
index 0000000..1875b3f
--- /dev/null
+++ b/net-misc/iodine/ChangeLog
@@ -0,0 +1,6 @@
+*iodine-0.7.0 (18 Jul 2014)
+
+  18 Jul 2014; Michael Weber <xmw@gentoo.org>
+  +files/iodine-0.7.0-TestMessage.patch, +files/iodined.conf,
+  +files/iodined.init, +iodine-0.7.0.ebuild, +metadata.xml:
+  Version bump (bug 513560)

diff --git a/net-misc/iodine/Manifest b/net-misc/iodine/Manifest
new file mode 100644
index 0000000..080608c
--- /dev/null
+++ b/net-misc/iodine/Manifest
@@ -0,0 +1 @@
+DIST iodine-0.7.0.tar.gz 96181 SHA256 ad2b40acf1421316ec15800dcde0f587ab31d7d6f891fa8b9967c4ded93c013e SHA512 49fe4f0cf614d3400cbfdade84eb4f50430f8f92004f663a08acc1514e8ff342443a8c3f855828bbca1864a3fafe419b5256f8a80fc4024b364d4c8c953fc0ec WHIRLPOOL ac098f9a409c75768b6b2da0f755560ea932a97855df32aefe860237a28ebf1ef1b576860378575522221214d9dc65c26f0297fafe628ea770e4449217c5d593

diff --git a/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch b/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch
new file mode 100644
index 0000000..6b814b6
--- /dev/null
+++ b/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch
@@ -0,0 +1,12 @@
+--- iodine-0.7.0/Makefile
++++ iodine-0.7.0/Makefile
+@@ -35,8 +35,7 @@
+ 	$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
+ 
+ test: all
+-	@echo "!! The check library is required for compiling and running the tests"
+-	@echo "!! Get it at http://check.sf.net"
++	@echo "Executing tests target"
+ 	@(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all)
+ 
+ clean:

diff --git a/net-misc/iodine/files/iodined.conf b/net-misc/iodine/files/iodined.conf
new file mode 100644
index 0000000..7889b08
--- /dev/null
+++ b/net-misc/iodine/files/iodined.conf
@@ -0,0 +1,44 @@
+# /etc/conf.d/iodined: config file for /etc/init.d/iodined
+
+# Drop privileges to this user after startup
+# This is used by the -u argument. Comment out to keep running as root.
+IODINED_USER="nobody"
+
+# Chroot to this directory after startup
+# This is used by the -t argument. Comment out to avoid chroot.
+IODINED_CHROOT="/var/empty"
+
+# This password needs to be used in all clients when they connect
+# This is used by the -P argument
+IODINED_PASSWD=""
+
+# This is the MTU (Max Transmit Unit) used in the tunnel.
+# You probably dont need this field at all, downstream data will
+# now be fragmented. This is used by the -m argument
+#IODINED_MTU=1020
+
+# The server port to listen on. You should normally not change this.
+# See man page. This is used by the -p argument
+#IODINED_LISTENPORT=53
+
+# The IP address to return as reply to NS queries. If not set, it will
+# be the destination address of the query. Used by the -n argument
+#IODINED_EXTERN_IP=1.1.1.1
+
+# The port used by a "real" DNS server on localhost. Queries for
+# domains not handled by iodined will be forwarded to this port,
+# and answers will be routed back. Used by the -b argument
+#IODINED_LOCAL_DNS_PORT=5353
+
+# The IP number to listen on.
+# This is used by the -l argument
+#IODINED_LISTENIP=127.0.0.1
+
+# This IP number will be used by the local tun device.
+IODINED_IP="172.28.0.1"
+
+# Use subdomains to this domain for network tunneling
+# If a real domain is used, it should be delegated to this server with 
+# a NS entry in the domain zone (see man page)
+IODINED_DOMAIN="blah.abc"
+

diff --git a/net-misc/iodine/files/iodined.init b/net-misc/iodine/files/iodined.init
new file mode 100644
index 0000000..a0d0e0b
--- /dev/null
+++ b/net-misc/iodine/files/iodined.init
@@ -0,0 +1,62 @@
+#!/sbin/runscript
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/files/iodined.init,v 1.2 2012/06/07 19:53:54 floppym Exp $
+
+PID_FILE="/var/run/iodined.pid"
+
+depend() {
+	need net
+}
+
+start() {
+	ebegin "Starting iodined"
+	ARGS=""
+	if [ "$IODINED_USER" ]; then
+		ARGS="$ARGS -u $IODINED_USER"
+	fi
+	if [ "$IODINED_CHROOT" ]; then
+		ARGS="$ARGS -t $IODINED_CHROOT"
+	fi
+	if [ "$IODINED_MTU" ]; then
+		ARGS="$ARGS -m $IODINED_MTU"
+	fi
+	if [ "$IODINED_LISTENPORT" ]; then
+		ARGS="$ARGS -p $IODINED_LISTENPORT"
+	fi
+	if [ "$IODINED_EXTERN_IP" ]; then
+		ARGS="$ARGS -n $IODINED_EXTERN_IP"
+	fi
+	if [ "$IODINED_LOCAL_DNS_PORT" ]; then
+		ARGS="$ARGS -b $IODINED_LOCAL_DNS_PORT"
+	fi
+	if [ "$IODINED_LISTENIP" ]; then
+		ARGS="$ARGS -l $IODINED_LISTENIP"
+	fi
+	if [ "$IODINED_PASSWD" ]; then
+		ARGS="$ARGS -P $IODINED_PASSWD"
+	else
+		eerror "Please set a password (IODINED_PASSWD) in /etc/conf.d/iodined!"
+		return 1
+	fi
+	if [ "$IODINED_IP" ]; then
+		ARGS="$ARGS $IODINED_IP"
+	else
+		eerror "Please set an IP (IODINED_IP) in /etc/conf.d/iodined!"
+		return 1
+	fi
+	if [ "$IODINED_DOMAIN" ]; then
+		ARGS="$ARGS $IODINED_DOMAIN"
+	else
+		eerror "Please set a domain (IODINED_DOMAIN) in /etc/conf.d/iodined!"
+		return 1
+	fi
+	start-stop-daemon --start --exec /usr/bin/iodined --pidfile $PID_FILE -- -F $PID_FILE $ARGS
+	eend $?
+}
+
+stop() {
+	ebegin "Stopping iodined"
+	start-stop-daemon --stop --exec /usr/bin/iodined --pidfile $PID_FILE
+	eend $?
+}

diff --git a/net-misc/iodine/iodine-0.7.0.ebuild b/net-misc/iodine/iodine-0.7.0.ebuild
new file mode 100644
index 0000000..2b40e9f
--- /dev/null
+++ b/net-misc/iodine/iodine-0.7.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild,v 1.2 2012/07/11 18:03:38 vostorga Exp $
+
+EAPI=5
+
+inherit linux-info eutils toolchain-funcs
+
+DESCRIPTION="IP over DNS tunnel"
+HOMEPAGE="http://code.kryo.se/iodine/"
+SRC_URI="http://code.kryo.se/${PN}/${P}.tar.gz"
+
+CONFIG_CHECK="~TUN"
+
+LICENSE="ISC GPL-2" #GPL-2 for init script bug #426060
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="sys-libs/zlib"
+DEPEND="${RDEPEND}
+	test? ( dev-libs/check )"
+
+src_prepare(){
+	epatch \
+		"${FILESDIR}"/${P}-TestMessage.patch
+
+	sed -e '/^\s@echo \(CC\|LD\)/d' \
+		-e 's:^\(\s\)@:\1:' \
+		-i {,src/}Makefile || die
+
+	tc-export CC
+}
+
+src_compile() {
+	#shipped ./Makefiles doesn't pass -j<n> to submake
+	emake -C src TARGETOS=Linux all
+}
+
+src_install() {
+	#don't re-run submake
+	sed -e '/^install:/s: all: :' \
+		-i Makefile || die
+	emake prefix="${EPREFIX}"usr DESTDIR="${D}" install
+
+	dodoc CHANGELOG README TODO
+
+	newinitd "${FILESDIR}"/iodined.init iodined
+	newconfd "${FILESDIR}"/iodined.conf iodined
+	keepdir /var/empty
+}

diff --git a/net-misc/iodine/metadata.xml b/net-misc/iodine/metadata.xml
new file mode 100644
index 0000000..5b80fb9
--- /dev/null
+++ b/net-misc/iodine/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>xmw@gentoo.org</email>
+<name>Michael Weber</name>
+</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] dev/xmw:master commit in: net-misc/iodine/files/, net-misc/iodine/
@ 2014-07-18 15:36 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2014-07-18 15:36 UTC (permalink / raw
  To: gentoo-commits

commit:     d1cc61c4db733fe348d39a1c88650be8fd4a9cdd
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Fri Jul 18 15:36:00 2014 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 15:36:00 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=d1cc61c4

Move /var/run to /run, and use upstream /usr/sbin

Package-Manager: portage-2.2.10
Manifest-Sign-Key: 62EEF090

---
 net-misc/iodine/ChangeLog                              | 4 ++++
 net-misc/iodine/files/{iodined.init => iodined-1.init} | 6 +++---
 net-misc/iodine/iodine-0.7.0.ebuild                    | 5 ++---
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/net-misc/iodine/ChangeLog b/net-misc/iodine/ChangeLog
index 1875b3f..a0e7e75 100644
--- a/net-misc/iodine/ChangeLog
+++ b/net-misc/iodine/ChangeLog
@@ -1,3 +1,7 @@
+  18 Jul 2014; Michael Weber <xmw@gentoo.org> +files/iodined-1.init,
+  -files/iodined.init, iodine-0.7.0.ebuild:
+  Move /var/run to /run, and use upstream /usr/sbin
+
 *iodine-0.7.0 (18 Jul 2014)
 
   18 Jul 2014; Michael Weber <xmw@gentoo.org>

diff --git a/net-misc/iodine/files/iodined.init b/net-misc/iodine/files/iodined-1.init
similarity index 87%
rename from net-misc/iodine/files/iodined.init
rename to net-misc/iodine/files/iodined-1.init
index a0d0e0b..533cc67 100644
--- a/net-misc/iodine/files/iodined.init
+++ b/net-misc/iodine/files/iodined-1.init
@@ -3,7 +3,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/files/iodined.init,v 1.2 2012/06/07 19:53:54 floppym Exp $
 
-PID_FILE="/var/run/iodined.pid"
+PID_FILE="/run/iodined.pid"
 
 depend() {
 	need net
@@ -51,12 +51,12 @@ start() {
 		eerror "Please set a domain (IODINED_DOMAIN) in /etc/conf.d/iodined!"
 		return 1
 	fi
-	start-stop-daemon --start --exec /usr/bin/iodined --pidfile $PID_FILE -- -F $PID_FILE $ARGS
+	start-stop-daemon --start --exec /usr/sbin/iodined --pidfile $PID_FILE -- -F $PID_FILE $ARGS
 	eend $?
 }
 
 stop() {
 	ebegin "Stopping iodined"
-	start-stop-daemon --stop --exec /usr/bin/iodined --pidfile $PID_FILE
+	start-stop-daemon --stop --exec /usr/sbin/iodined --pidfile $PID_FILE
 	eend $?
 }

diff --git a/net-misc/iodine/iodine-0.7.0.ebuild b/net-misc/iodine/iodine-0.7.0.ebuild
index 2b40e9f..542de74 100644
--- a/net-misc/iodine/iodine-0.7.0.ebuild
+++ b/net-misc/iodine/iodine-0.7.0.ebuild
@@ -22,8 +22,7 @@ DEPEND="${RDEPEND}
 	test? ( dev-libs/check )"
 
 src_prepare(){
-	epatch \
-		"${FILESDIR}"/${P}-TestMessage.patch
+	epatch "${FILESDIR}"/${P}-TestMessage.patch
 
 	sed -e '/^\s@echo \(CC\|LD\)/d' \
 		-e 's:^\(\s\)@:\1:' \
@@ -45,7 +44,7 @@ src_install() {
 
 	dodoc CHANGELOG README TODO
 
-	newinitd "${FILESDIR}"/iodined.init iodined
+	newinitd "${FILESDIR}"/iodined-1.init iodined
 	newconfd "${FILESDIR}"/iodined.conf iodined
 	keepdir /var/empty
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] dev/xmw:master commit in: net-misc/iodine/files/, net-misc/iodine/
@ 2014-07-18 16:00 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2014-07-18 16:00 UTC (permalink / raw
  To: gentoo-commits

commit:     eac2ffea1ed6d7c6f97d6cb77b19d1e62e901696
Author:     Michael Weber <michael <AT> xmw <DOT> de>
AuthorDate: Fri Jul 18 15:59:58 2014 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 15:59:58 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=eac2ffea

moved to main tree

---
 net-misc/iodine/ChangeLog                          | 10 ----
 net-misc/iodine/Manifest                           |  1 -
 .../iodine/files/iodine-0.7.0-TestMessage.patch    | 12 -----
 net-misc/iodine/files/iodined-1.init               | 62 ----------------------
 net-misc/iodine/files/iodined.conf                 | 44 ---------------
 net-misc/iodine/iodine-0.7.0.ebuild                | 50 -----------------
 net-misc/iodine/metadata.xml                       |  8 ---
 7 files changed, 187 deletions(-)

diff --git a/net-misc/iodine/ChangeLog b/net-misc/iodine/ChangeLog
deleted file mode 100644
index a0e7e75..0000000
--- a/net-misc/iodine/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
-  18 Jul 2014; Michael Weber <xmw@gentoo.org> +files/iodined-1.init,
-  -files/iodined.init, iodine-0.7.0.ebuild:
-  Move /var/run to /run, and use upstream /usr/sbin
-
-*iodine-0.7.0 (18 Jul 2014)
-
-  18 Jul 2014; Michael Weber <xmw@gentoo.org>
-  +files/iodine-0.7.0-TestMessage.patch, +files/iodined.conf,
-  +files/iodined.init, +iodine-0.7.0.ebuild, +metadata.xml:
-  Version bump (bug 513560)

diff --git a/net-misc/iodine/Manifest b/net-misc/iodine/Manifest
deleted file mode 100644
index 080608c..0000000
--- a/net-misc/iodine/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST iodine-0.7.0.tar.gz 96181 SHA256 ad2b40acf1421316ec15800dcde0f587ab31d7d6f891fa8b9967c4ded93c013e SHA512 49fe4f0cf614d3400cbfdade84eb4f50430f8f92004f663a08acc1514e8ff342443a8c3f855828bbca1864a3fafe419b5256f8a80fc4024b364d4c8c953fc0ec WHIRLPOOL ac098f9a409c75768b6b2da0f755560ea932a97855df32aefe860237a28ebf1ef1b576860378575522221214d9dc65c26f0297fafe628ea770e4449217c5d593

diff --git a/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch b/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch
deleted file mode 100644
index 6b814b6..0000000
--- a/net-misc/iodine/files/iodine-0.7.0-TestMessage.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- iodine-0.7.0/Makefile
-+++ iodine-0.7.0/Makefile
-@@ -35,8 +35,7 @@
- 	$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
- 
- test: all
--	@echo "!! The check library is required for compiling and running the tests"
--	@echo "!! Get it at http://check.sf.net"
-+	@echo "Executing tests target"
- 	@(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all)
- 
- clean:

diff --git a/net-misc/iodine/files/iodined-1.init b/net-misc/iodine/files/iodined-1.init
deleted file mode 100644
index 533cc67..0000000
--- a/net-misc/iodine/files/iodined-1.init
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/files/iodined.init,v 1.2 2012/06/07 19:53:54 floppym Exp $
-
-PID_FILE="/run/iodined.pid"
-
-depend() {
-	need net
-}
-
-start() {
-	ebegin "Starting iodined"
-	ARGS=""
-	if [ "$IODINED_USER" ]; then
-		ARGS="$ARGS -u $IODINED_USER"
-	fi
-	if [ "$IODINED_CHROOT" ]; then
-		ARGS="$ARGS -t $IODINED_CHROOT"
-	fi
-	if [ "$IODINED_MTU" ]; then
-		ARGS="$ARGS -m $IODINED_MTU"
-	fi
-	if [ "$IODINED_LISTENPORT" ]; then
-		ARGS="$ARGS -p $IODINED_LISTENPORT"
-	fi
-	if [ "$IODINED_EXTERN_IP" ]; then
-		ARGS="$ARGS -n $IODINED_EXTERN_IP"
-	fi
-	if [ "$IODINED_LOCAL_DNS_PORT" ]; then
-		ARGS="$ARGS -b $IODINED_LOCAL_DNS_PORT"
-	fi
-	if [ "$IODINED_LISTENIP" ]; then
-		ARGS="$ARGS -l $IODINED_LISTENIP"
-	fi
-	if [ "$IODINED_PASSWD" ]; then
-		ARGS="$ARGS -P $IODINED_PASSWD"
-	else
-		eerror "Please set a password (IODINED_PASSWD) in /etc/conf.d/iodined!"
-		return 1
-	fi
-	if [ "$IODINED_IP" ]; then
-		ARGS="$ARGS $IODINED_IP"
-	else
-		eerror "Please set an IP (IODINED_IP) in /etc/conf.d/iodined!"
-		return 1
-	fi
-	if [ "$IODINED_DOMAIN" ]; then
-		ARGS="$ARGS $IODINED_DOMAIN"
-	else
-		eerror "Please set a domain (IODINED_DOMAIN) in /etc/conf.d/iodined!"
-		return 1
-	fi
-	start-stop-daemon --start --exec /usr/sbin/iodined --pidfile $PID_FILE -- -F $PID_FILE $ARGS
-	eend $?
-}
-
-stop() {
-	ebegin "Stopping iodined"
-	start-stop-daemon --stop --exec /usr/sbin/iodined --pidfile $PID_FILE
-	eend $?
-}

diff --git a/net-misc/iodine/files/iodined.conf b/net-misc/iodine/files/iodined.conf
deleted file mode 100644
index 7889b08..0000000
--- a/net-misc/iodine/files/iodined.conf
+++ /dev/null
@@ -1,44 +0,0 @@
-# /etc/conf.d/iodined: config file for /etc/init.d/iodined
-
-# Drop privileges to this user after startup
-# This is used by the -u argument. Comment out to keep running as root.
-IODINED_USER="nobody"
-
-# Chroot to this directory after startup
-# This is used by the -t argument. Comment out to avoid chroot.
-IODINED_CHROOT="/var/empty"
-
-# This password needs to be used in all clients when they connect
-# This is used by the -P argument
-IODINED_PASSWD=""
-
-# This is the MTU (Max Transmit Unit) used in the tunnel.
-# You probably dont need this field at all, downstream data will
-# now be fragmented. This is used by the -m argument
-#IODINED_MTU=1020
-
-# The server port to listen on. You should normally not change this.
-# See man page. This is used by the -p argument
-#IODINED_LISTENPORT=53
-
-# The IP address to return as reply to NS queries. If not set, it will
-# be the destination address of the query. Used by the -n argument
-#IODINED_EXTERN_IP=1.1.1.1
-
-# The port used by a "real" DNS server on localhost. Queries for
-# domains not handled by iodined will be forwarded to this port,
-# and answers will be routed back. Used by the -b argument
-#IODINED_LOCAL_DNS_PORT=5353
-
-# The IP number to listen on.
-# This is used by the -l argument
-#IODINED_LISTENIP=127.0.0.1
-
-# This IP number will be used by the local tun device.
-IODINED_IP="172.28.0.1"
-
-# Use subdomains to this domain for network tunneling
-# If a real domain is used, it should be delegated to this server with 
-# a NS entry in the domain zone (see man page)
-IODINED_DOMAIN="blah.abc"
-

diff --git a/net-misc/iodine/iodine-0.7.0.ebuild b/net-misc/iodine/iodine-0.7.0.ebuild
deleted file mode 100644
index 542de74..0000000
--- a/net-misc/iodine/iodine-0.7.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild,v 1.2 2012/07/11 18:03:38 vostorga Exp $
-
-EAPI=5
-
-inherit linux-info eutils toolchain-funcs
-
-DESCRIPTION="IP over DNS tunnel"
-HOMEPAGE="http://code.kryo.se/iodine/"
-SRC_URI="http://code.kryo.se/${PN}/${P}.tar.gz"
-
-CONFIG_CHECK="~TUN"
-
-LICENSE="ISC GPL-2" #GPL-2 for init script bug #426060
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
-	test? ( dev-libs/check )"
-
-src_prepare(){
-	epatch "${FILESDIR}"/${P}-TestMessage.patch
-
-	sed -e '/^\s@echo \(CC\|LD\)/d' \
-		-e 's:^\(\s\)@:\1:' \
-		-i {,src/}Makefile || die
-
-	tc-export CC
-}
-
-src_compile() {
-	#shipped ./Makefiles doesn't pass -j<n> to submake
-	emake -C src TARGETOS=Linux all
-}
-
-src_install() {
-	#don't re-run submake
-	sed -e '/^install:/s: all: :' \
-		-i Makefile || die
-	emake prefix="${EPREFIX}"usr DESTDIR="${D}" install
-
-	dodoc CHANGELOG README TODO
-
-	newinitd "${FILESDIR}"/iodined-1.init iodined
-	newconfd "${FILESDIR}"/iodined.conf iodined
-	keepdir /var/empty
-}

diff --git a/net-misc/iodine/metadata.xml b/net-misc/iodine/metadata.xml
deleted file mode 100644
index 5b80fb9..0000000
--- a/net-misc/iodine/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer>
-<email>xmw@gentoo.org</email>
-<name>Michael Weber</name>
-</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-18 16:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-18 15:36 [gentoo-commits] dev/xmw:master commit in: net-misc/iodine/files/, net-misc/iodine/ Michael Weber
  -- strict thread matches above, loose matches on Subject: below --
2014-07-18 16:00 Michael Weber
2014-07-18 15:30 Michael Weber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox