tcp_wrappers: removed; nothing depends on it and seems to be obsolete.

This commit is contained in:
Juan RP 2014-04-17 09:05:11 +02:00
parent c3be4a3adb
commit 79f6c9014c
8 changed files with 0 additions and 1112 deletions

View file

@ -1 +0,0 @@
tcp_wrappers

View file

@ -1 +0,0 @@
tcp_wrappers

View file

@ -1,10 +0,0 @@
#
# hosts.allow This file contains access rules which are used to
# allow or deny connections to network services that
# either use the tcp_wrappers library or that have been
# started through a tcp_wrappers-enabled xinetd.
#
# See 'man 5 hosts_options' and 'man 5 hosts_access'
# for information on rule syntax.
# See 'man tcpd' for information on tcp_wrappers
#

View file

@ -1,18 +0,0 @@
#
# hosts.deny This file contains access rules which are used to
# deny connections to network services that either use
# the tcp_wrappers library or that have been
# started through a tcp_wrappers-enabled xinetd.
#
# The rules in this file can also be set up in
# /etc/hosts.allow with a 'deny' option instead.
#
# See 'man 5 hosts_options' and 'man 5 hosts_access'
# for information on rule syntax.
# See 'man tcpd' for information on tcp_wrappers
#
#
# The portmap line is redundant, but it is left to remind you that
# the new secure portmap uses hosts.deny and hosts.allow. In particular
# you should know that NFS uses portmap!
#

View file

@ -1,10 +0,0 @@
--- scaffold.c 1997-03-21 10:27:24.000000000 -0800
+++ scaffold.c 2004-05-07 19:44:50.000000000 -0700
@@ -25,7 +25,6 @@
#define INADDR_NONE (-1) /* XXX should be 0xffffffff */
#endif
-extern char *malloc();
/* Application-specific. */

File diff suppressed because it is too large Load diff

View file

@ -1,46 +0,0 @@
# Template file for 'tcp_wrappers'
pkgname=tcp_wrappers
version=7.6
revision=6
wrksrc="${pkgname}_${version}"
build_style=gnu-makefile
make_build_target="REAL_DAEMON_DIR=/usr/sbin STYLE=-DSYS_ERRLIST_DEFINED linux"
short_desc="A security tool which acts as a wrapper for TCP daemons"
homepage="ftp://ftp.porcupine.org/pub/security/index.html"
license="Custom"
maintainer="Juan RP <xtraeme@gmail.com>"
distfiles="ftp://ftp.porcupine.org/pub/security/${pkgname}_${version}.tar.gz"
checksum=9543d7adedf78a6de0b221ccbbd1952e08b5138717f4ade814039bb489a4315d
pre_install() {
install -d ${DESTDIR}/usr/lib
install -d ${DESTDIR}/usr/sbin
install -d ${DESTDIR}/usr/include
for f in 3 5 8; do
install -d ${DESTDIR}/usr/share/man/man${f}
done
install -D -m644 ${FILESDIR}/hosts.allow ${DESTDIR}/etc/hosts.allow
install -m644 ${FILESDIR}/hosts.deny ${DESTDIR}/etc/hosts.deny
sed -i -e "s|-o root -g root||g" ${wrksrc}/Makefile
}
tcp_wrappers-devel_package() {
depends="tcp_wrappers-libs>=${version}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
}
}
tcp_wrappers-libs_package() {
short_desc+=" - shared libraries"
conf_files="/etc/hosts.allow /etc/hosts.deny"
pkg_install() {
vmove "usr/lib/*.so.*"
vmove usr/share/man/man5
vmove etc
}
}