diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-19 18:56:45 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-19 18:56:45 +0100 |
commit | 8f496ed7dab7c911b128968bb6f3541de5593bc8 (patch) | |
tree | f968d1fcc322da8c687fbc0e51a6998c68d9e646 /net-dialup | |
parent | net-dialup/fbgetty: treeclean (diff) | |
download | gentoo-8f496ed7dab7c911b128968bb6f3541de5593bc8.tar.gz gentoo-8f496ed7dab7c911b128968bb6f3541de5593bc8.tar.bz2 gentoo-8f496ed7dab7c911b128968bb6f3541de5593bc8.zip |
net-dialup/cistronradius: treeclean
Closes: https://bugs.gentoo.org/819363
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/cistronradius/Manifest | 1 | ||||
-rw-r--r-- | net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild | 48 | ||||
-rw-r--r-- | net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch | 11 | ||||
-rw-r--r-- | net-dialup/cistronradius/files/cistronradius.rc | 34 | ||||
-rw-r--r-- | net-dialup/cistronradius/metadata.xml | 5 |
5 files changed, 0 insertions, 99 deletions
diff --git a/net-dialup/cistronradius/Manifest b/net-dialup/cistronradius/Manifest deleted file mode 100644 index a767c6728a83..000000000000 --- a/net-dialup/cistronradius/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST radiusd-cistron-1.6.8.tar.gz 199459 BLAKE2B 5cd40915597e8d02c4624c0ea9161ee50a09c85137f9cf2d84f99504af1581a58c52d99aab473a034ef557beefd1fc7753757b4a04c1bd460871d37a6c7479da SHA512 9d42ec39eaa78f0c35ca036cf891d45a99c38af03416e4bca2d9d883a9aac818a0da1a52b5c1d4e54a1bdb108b237ed92c16309b61b7aa24f8782d0d0e0f8de5 diff --git a/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild b/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild deleted file mode 100644 index 4ff41bdc7fcd..000000000000 --- a/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit epatch toolchain-funcs - -DESCRIPTION="Authentication and accounting server for terminal servers using RADIUS" -HOMEPAGE="http://www.radius.cistron.nl/" -SRC_URI="ftp://ftp.radius.cistron.nl/pub/radius/radiusd-cistron-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* x86" - -DEPEND=" - !net-dialup/freeradius - !net-dialup/gnuradius" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/radiusd-cistron-${PV}" - -src_prepare() { - epatch "${FILESDIR}/${P}-gcc41.patch" - sed -i -e "s:SHAREDIR/::g" raddb/dictionary || die - mv src/checkrad.pl src/checkrad || die - - epatch_user -} - -src_compile() { - emake -C src \ - CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - BINDIR=/usr/bin SBINDIR=/usr/sbin \ - MANDIR=/usr/share/man SHAREDIR=/usr/share/radius -} - -src_install() { - insinto /etc/raddb - doins raddb/* - dodoc README doc/{ChangeLog,FAQ.txt,README*} - doman doc/{*.1,*.8,*.5rad,*.8rad} - - dosbin src/{checkrad,radiusd,radrelay} - dobin src/{radclient,radlast,radtest,radwho,radzap} - - newinitd "${FILESDIR}/cistronradius.rc" cistronradius -} diff --git a/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch b/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch deleted file mode 100644 index 7600df739c7b..000000000000 --- a/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Nru radiusd-cistron-1.6.8.orig/src/radiusd.h radiusd-cistron-1.6.8/src/radiusd.h ---- radiusd-cistron-1.6.8.orig/src/radiusd.h 2003-12-08 18:12:22.000000000 +0200 -+++ radiusd-cistron-1.6.8/src/radiusd.h 2006-09-21 15:33:05.000000000 +0300 -@@ -204,7 +204,6 @@ - extern char *radwtmp_path; - extern UINT4 expiration_seconds; - extern UINT4 warning_seconds; --extern int radius_pid; - extern int use_dbm; - extern int use_dns; - extern int use_wtmp; diff --git a/net-dialup/cistronradius/files/cistronradius.rc b/net-dialup/cistronradius/files/cistronradius.rc deleted file mode 100644 index 9155ee59b6a5..000000000000 --- a/net-dialup/cistronradius/files/cistronradius.rc +++ /dev/null @@ -1,34 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net -} - -checkconfig() { - if [ ! -x /usr/sbin/radiusd ] ; then - eerror "The radius daemon was not found." - eerror "Please (re)emerge cistronradius." - return 1 - fi - - if [ ! -e /etc/raddb/clients ] ; then - eerror "No /etc/raddb/clients file found." - eerror "Please create the file and retry." - return 1 - fi -} - -start() { - checkconfig || return 1 - ebegin "Starting Cistron Radius" - start-stop-daemon --start --quiet --exec /usr/sbin/radiusd - eend $? -} - -stop() { - ebegin "Stopping Cistron Radius" - start-stop-daemon --stop --quiet --pidfile /var/run/radiusd.pid - eend $? -} diff --git a/net-dialup/cistronradius/metadata.xml b/net-dialup/cistronradius/metadata.xml deleted file mode 100644 index 85e4ed814fa2..000000000000 --- a/net-dialup/cistronradius/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> |