diff options
author | Aaron Bauman <bman@gentoo.org> | 2016-11-25 21:48:22 +0900 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2016-11-25 21:48:54 +0900 |
commit | 82d62d66c8eef722a36e6136398521d92d07c644 (patch) | |
tree | 61e30b6a7965e4cdbc65c9ad8d3237fd72f28ae7 /net-misc | |
parent | net-misc/iodine: revbump wrt security bug #477102 (diff) | |
download | gentoo-82d62d66c8eef722a36e6136398521d92d07c644.tar.gz gentoo-82d62d66c8eef722a36e6136398521d92d07c644.tar.bz2 gentoo-82d62d66c8eef722a36e6136398521d92d07c644.zip |
net-misc/iodine: cleanup wrt security bug #477102
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/iodine/iodine-0.7.0.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
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 37870efa450c..000000000000 --- a/net-misc/iodine/iodine-0.7.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -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 - epatch "${FILESDIR}"/${P}-new-systemd.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 -} |