summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests-only/paxmarking/paxmarking-0.1.ebuild')
-rw-r--r--tests-only/paxmarking/paxmarking-0.1.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests-only/paxmarking/paxmarking-0.1.ebuild b/tests-only/paxmarking/paxmarking-0.1.ebuild
deleted file mode 100644
index 20433fc..0000000
--- a/tests-only/paxmarking/paxmarking-0.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-inherit autotools pax-utils
-
-DESCRIPTION="Test XT and PT pax markings"
-HOMEPAGE="https://bugs.gentoo.org/show_bug.cgi?id=427888"
-SRC_URI=""
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+before after"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- mkdir -p "${S}"
- cp "${FILESDIR}"/{configure.ac,Makefile.am,mytest.c} "${S}"
-}
-
-src_prepare() {
- eautoreconf
-}
-
-src_install() {
- use before && pax-mark -m "${S}"/mytest
- emake DESTDIR="${ED}" install
- use after && pax-mark -m "${D}"/usr/bin/mytest
-}