diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-06-26 12:52:58 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-06-26 12:52:58 +0000 |
commit | 3e09482aefa129dbac55d616c3f31389dfb2a941 (patch) | |
tree | 7cbf7570c154263f1913665f1d61478587f07e6c /net-misc | |
parent | Remove old. (diff) | |
download | gentoo-2-3e09482aefa129dbac55d616c3f31389dfb2a941.tar.gz gentoo-2-3e09482aefa129dbac55d616c3f31389dfb2a941.tar.bz2 gentoo-2-3e09482aefa129dbac55d616c3f31389dfb2a941.zip |
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/l7-protocols/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/l7-protocols/l7-protocols-2008.12.18.ebuild | 64 |
2 files changed, 5 insertions, 65 deletions
diff --git a/net-misc/l7-protocols/ChangeLog b/net-misc/l7-protocols/ChangeLog index 964a133e22d4..b1f6d2f9eabd 100644 --- a/net-misc/l7-protocols/ChangeLog +++ b/net-misc/l7-protocols/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/l7-protocols # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/l7-protocols/ChangeLog,v 1.72 2014/03/14 10:15:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/l7-protocols/ChangeLog,v 1.73 2014/06/26 12:52:58 kensington Exp $ + + 26 Jun 2014; Michael Palimaka <kensington@gentoo.org> + -l7-protocols-2008.12.18.ebuild: + Remove old. 14 Mar 2014; Agostino Sarubbo <ago@gentoo.org> l7-protocols-2009.05.28.ebuild: Stable for ppc64, wrt bug #474280 diff --git a/net-misc/l7-protocols/l7-protocols-2008.12.18.ebuild b/net-misc/l7-protocols/l7-protocols-2008.12.18.ebuild deleted file mode 100644 index 27a398deb194..000000000000 --- a/net-misc/l7-protocols/l7-protocols-2008.12.18.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/l7-protocols/l7-protocols-2008.12.18.ebuild,v 1.6 2011/06/28 09:31:26 pva Exp $ - -inherit eutils fixheadtails toolchain-funcs - -IUSE="" - -MY_P=${PN}-${PV//./-} - -DESCRIPTION="Protocol definitions of l7-filter kernel modules" -HOMEPAGE="http://l7-filter.sourceforge.net/protocols" - -SRC_URI="mirror://sourceforge/l7-filter/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh sparc x86" -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - - cd "${S}" - sed -e "s|gcc.*\-o|$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o|g" \ - -e "s|g++.*\-o|$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} -o|g" \ - -i testing/Makefile - ht_fix_file testing/*.sh -} - -src_compile() { - emake -C testing || die -} - -# NOTE Testing mechanism is currently broken: -# stack smashing attack in function main() - -# Is also extraordinarly inefficent getting random data. -# -#src_test() { -# cd testing -# find ${S} -name \*.pat -print -exec ./test_match.sh {} \; \ -# -exec ./timeit.sh {} \; || die "failed tests" -# einfo "patterns past testing" -#} - -src_install() { - dodir /usr/share/${PN} - pushd testing > /dev/null - cp -pPR randprintable randchars test_speed-{kernel,userspace} README \ - match_kernel speeds-2007-10-02-450MHz *.sh data "${D}"/usr/share/${PN} - popd > /dev/null - mv example_traffic "${D}"/usr/share/${PN} - - dodoc README CHANGELOG HOWTO WANTED - for dir in extra file_types malware ; do - newdoc ${dir}/README README.${dir} - done - rm -rf README CHANGELOG HOWTO LICENSE Makefile WANTED */README testing - - dodir /etc/l7-protocols - cp -R * "${D}"/etc/l7-protocols - chown -R root:0 "${D}" -} |