net-misc/l7-protocols - 2009.05.28 (gentoo)

Search

Install

Install this version:

emerge -a =net-misc/l7-protocols-2009.05.28

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-misc/l7-protocols-2009.05.28

Or alternatively:

emerge --autounmask-write -a =net-misc/l7-protocols-2009.05.28

Package Information

Description:
Protocol definitions of l7-filter kernel modules
Homepage:
http://l7-filter.sourceforge.net/protocols https://l7-filter.clearos.com/docs/start
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
2009.05.28 7 ~amd64 ~arm ~x86 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit fixheadtails toolchain-funcs

MY_P=${PN}-${PV//./-}

DESCRIPTION="Protocol definitions of l7-filter kernel modules"
HOMEPAGE="http://l7-filter.sourceforge.net/protocols
	https://l7-filter.clearos.com/docs/start"
SRC_URI="https://downloads.sourceforge.net/l7-filter/${MY_P}.tar.gz"
S="${WORKDIR}"/${MY_P}

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"

src_prepare() {
	sed -i -e "s|gcc.*\-o|$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o|" \
		-e "s|g++.*\-o|$(tc-getCXX) ${CFLAGS} ${LDFLAGS} -o|" \
			testing/Makefile || die
	sed -i -e "s|f in data|f in ${EPREFIX}/usr/share/l7-protocols/data|" \
		testing/timeit.sh || die
	ht_fix_file testing/*.sh
	eapply_user
}

src_compile() {
	emake -C testing
}

# 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,lib}/${PN}
	mv testing/data example_traffic "${ED}"/usr/share/${PN} || die

	pushd testing >/dev/null || die
	cp -pPR randprintable randchars test_speed-{kernel,userspace} README \
		match_kernel *.sh "${ED}"/usr/lib/${PN} || die
	popd >/dev/null || die

	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 || die

	dodir /etc/l7-protocols
	cp -R * "${ED}"/etc/l7-protocols || die
	chown -R root:0 "${ED}" || die
}

Inherited Eclasses

Manifest for 2009.05.28

Type File Size Source URLs
DIST l7-protocols-2009-05-28.tar.gz 142050 bytes https://downloads.sourceforge.net/l7-filter/l7-protocols-2009-05-28.tar.gz