summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-09-26 09:21:35 -0400
committerAaron Bauman <bman@gentoo.org>2020-09-26 10:33:25 -0400
commitf6da7e0c09c44461d43d2526bd242b52c67298fe (patch)
treef8b11ab99d44ac633343eebe3c3821034cb7f37d /app-admin
parentapp-admin/aerospike-amc-community: drop old EAPI=5 (diff)
downloadgentoo-f6da7e0c09c44461d43d2526bd242b52c67298fe.tar.gz
gentoo-f6da7e0c09c44461d43d2526bd242b52c67298fe.tar.bz2
gentoo-f6da7e0c09c44461d43d2526bd242b52c67298fe.zip
app-admin/bastille: drop old EAPI=5
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/bastille/bastille-3.0.9-r1.ebuild69
1 files changed, 0 insertions, 69 deletions
diff --git a/app-admin/bastille/bastille-3.0.9-r1.ebuild b/app-admin/bastille/bastille-3.0.9-r1.ebuild
deleted file mode 100644
index 19860743e3f6..000000000000
--- a/app-admin/bastille/bastille-3.0.9-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PERL_EXPORT_PHASE_FUNCTIONS=no
-inherit eutils perl-module
-
-PATCHVER=0.2
-MY_PN=${PN/b/B}
-MY_P=${MY_PN}-${PV}
-S=${WORKDIR}/${MY_PN}
-DESCRIPTION="Bastille-Linux is a security hardening tool"
-HOMEPAGE="http://bastille-linux.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}-linux/${MY_P}.tar.bz2
- mirror://gentoo/${P}-gentoo-${PATCHVER}.patch.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="X"
-
-RDEPEND="
- app-admin/logrotate
- dev-perl/Curses
- net-firewall/iptables
- net-firewall/psad
- virtual/logger
- X? ( dev-perl/Tk )
-"
-
-src_prepare() {
- epatch "${WORKDIR}"/${P}-gentoo-${PATCHVER}.patch
-
- # make sure the Perl modules go into vendor dir
- epatch "${FILESDIR}/${P}-perl.patch"
- perl_set_version
-
- cd "${S}" || die
- chmod a+x Install.sh bastille-ipchains bastille-netfilter
-}
-
-src_install() {
- perl_set_version
- export VENDOR_LIB
-
- cd "${S}" || die
- DESTDIR="${D}" ./Install.sh
-
- # Example configs
- cd "${S}" || die
- insinto /usr/share/Bastille
- doins *.config
-
- newinitd ${PN}-firewall.gentoo-init ${PN}-firewall
-
- # Documentation
- cd "${S}" || die
- dodoc *.txt BUGS Change* README*
- cd "${S}"/docs || die
- doman *.1m
-}
-
-pkg_postinst() {
- elog "Please be aware that when using the Server Lax, Server Moderate, or"
- elog "Server Paranoia configurations, you may need to use InteractiveBastille"
- elog "to set any advanced network information, such as masquerading and"
- elog "internal interfaces, if you plan to use them."
-}