summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2023-11-29 16:43:51 +0100
committerUlrich Müller <ulm@gentoo.org>2023-11-29 16:46:11 +0100
commit09faa2c224cede90924f9293d1a647cc7412a382 (patch)
treef5de018d74dbb625a54a1aa9ce82e459fe59e2eb /net-misc/netkit-bootparamd
parentnet-misc/netkit-timed: drop 0.17-r10 (diff)
downloadgentoo-09faa2c224cede90924f9293d1a647cc7412a382.tar.gz
gentoo-09faa2c224cede90924f9293d1a647cc7412a382.tar.bz2
gentoo-09faa2c224cede90924f9293d1a647cc7412a382.zip
net-misc/netkit-bootparamd: drop 0.17-r4
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'net-misc/netkit-bootparamd')
-rw-r--r--net-misc/netkit-bootparamd/netkit-bootparamd-0.17-r4.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/net-misc/netkit-bootparamd/netkit-bootparamd-0.17-r4.ebuild b/net-misc/netkit-bootparamd/netkit-bootparamd-0.17-r4.ebuild
deleted file mode 100644
index 3ecbe4ece85c..000000000000
--- a/net-misc/netkit-bootparamd/netkit-bootparamd-0.17-r4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="Netkit - bootparamd"
-HOMEPAGE="https://wiki.linuxfoundation.org/networking/netkit"
-SRC_URI="mirror://debian/pool/main/n/${PN}/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~mips ppc sparc x86"
-IUSE="+libtirpc"
-
-DEPEND="
- !<=net-misc/netkit-bootpd-0.17-r2
- libtirpc? ( net-libs/rpcsvc-proto net-libs/libtirpc )
- !libtirpc? ( sys-libs/glibc[rpc(-)] )
-"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- eapply "${FILESDIR}"/0.17-jumpstart.patch
- eapply "${FILESDIR}"/0.17-libtirpc.patch
-
- # don't reset LDFLAGS (bug #335457), manpages into /usr/share/man
- sed -i -e '/^LDFLAGS=/d ; /MANDIR=/s:man:share/man:' configure || die
-
- sed -i -e 's:install -s:install:' rpc.bootparamd/Makefile || die
-
- default
-}
-
-src_configure() {
- if use libtirpc ; then
- append-cflags -I/usr/include/tirpc
- sed -i -e 's:^LIBS=$:LIBS=-ltirpc:' configure || die
- fi
-
- # Note this is not an autoconf configure
- CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}" ./configure || die
-}
-
-src_install() {
- dodir usr/bin usr/sbin usr/share/man/man8
- emake INSTALLROOT="${D}" install
-
- newconfd "${FILESDIR}"/bootparamd.confd bootparamd
- newinitd "${FILESDIR}"/bootparamd.initd bootparamd
-
- doman rpc.bootparamd/bootparams.5
- dodoc README ChangeLog
- newdoc rpc.bootparamd/README README.bootparamd
-}