# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/paxtest-0.9.6.ebuild,v 1.2 2004/09/02 11:56:11 lv Exp $ inherit eutils # pax flags are not strip safe. RESTRICT="nostrip" FEATURES="-distcc" DESCRIPTION="PaX regression test suite" HOMEPAGE="http://www.adamantix.org/paxtest/" SRC_URI="http://www.adamantix.org/paxtest/paxtest-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 amd64" IUSE="" DEPEND="virtual/libc >=sys-apps/chpax-0.5" src_unpack() { unpack ${A} cp ${FILESDIR}/Makefile-portable ${S}/Makefile } src_compile() { emake DESTDIR=${D} BINDIR=${D}/usr/bin RUNDIR=/usr/lib/paxtest || die } src_install() { emake DESTDIR=${D} BINDIR=/usr/bin RUNDIR=/usr/lib/paxtest install for doc in Changelog README ;do [ -f "${doc}" ] && dodoc ${doc} done }