summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-09-10 21:30:36 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2023-09-10 21:30:36 +0300
commitae14a59c6f41e3405e6e163fe283a030a5074e78 (patch)
treef6b7bfdd8ba65bdeea82109771be2e233c1ea42a /net-misc/pingu
parentnet-misc/pingu: EAPI=8, fix implicit warning, cleanup (diff)
downloadgentoo-ae14a59c6f41e3405e6e163fe283a030a5074e78.tar.gz
gentoo-ae14a59c6f41e3405e6e163fe283a030a5074e78.tar.bz2
gentoo-ae14a59c6f41e3405e6e163fe283a030a5074e78.zip
net-misc/pingu: drop stale live ebuild
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'net-misc/pingu')
-rw-r--r--net-misc/pingu/pingu-9999.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/net-misc/pingu/pingu-9999.ebuild b/net-misc/pingu/pingu-9999.ebuild
deleted file mode 100644
index 30ea3b2eab70..000000000000
--- a/net-misc/pingu/pingu-9999.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit git-r3 systemd tmpfiles toolchain-funcs
-
-DESCRIPTION="Policy routing daemon with failover and load-balancing"
-HOMEPAGE="https://github.com/ncopa/pingu"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/ncopa/${PN}.git"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug doc"
-
-RDEPEND="dev-libs/libev:="
-DEPEND="${RDEPEND}
- sys-kernel/linux-headers
- virtual/pkgconfig
- doc? ( app-text/asciidoc )"
-
-# Fix QA with install into path /run/pingu must be created at runtime
-PATCHES=( "${FILESDIR}"/"${PN}"-1.5-makefile.patch )
-
-src_configure() {
- ./configure "$(use_enable debug)" "$(use_enable doc)" \
- --prefix=/usr || die "configure failed"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- default
-
- newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
- newinitd "${FILESDIR}"/pingu.initd pingu
- newconfd "${FILESDIR}"/pingu.confd pingu
- systemd_dounit "${FILESDIR}"/pingu.service
- keepdir /var/lib/pingu
- insinto /etc/pingu
- newins pingu.conf pingu.conf.example
-}
-
-pkg_postinst() {
- tmpfiles_process pingu.conf
-}