1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Source: libpam-radius-auth
Section: libs
Priority: extra
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.5.6
Upstream-Source: <URL:ftp://ftp.freeradius.org/pub/radius/>
Home-Page: <URL:http://www.freeradius.org/pam_radius_auth/>
Description: the PAM RADIUS authentication module
Packaged-For: Debian
Copyright: GPL
This module is a merger of an old version of pam_radius.c, and
code which went into mod_auth_radius.c, with further modifications
by Alan DeKok of CRYPTOCard Inc..
.
The original pam_radius.c code is copyright (c) Cristian Gafton, 1996,
<gafton@redhat.com>
.
The additional code is copyright (c) CRYPTOCard Inc, 1998.
.
All rights reserved.
Patches: *.diff
Major-Changes:
[001] Fix for 64-bit architectures
Build-Depends: libpam-dev
Build: sh
CC=gcc
CFLAGS="-O2 -Wall -fPIC -DCONF_FILE=\\\"/etc/pam_radius_auth.conf\\\""
LDFLAGS=
if [ "${DEB_BUILD_OPTIONS#*debug}" != "$DEB_BUILD_OPTIONS" ]; then
CFLAGS="$CFLAGS -g"
fi
case "$DEB_HOST_GNU_CPU" in
hppa|m68k|mips|powerpc|s390|sparc|sparc64|sheb)
CFLAGS="$CFLAGS -DHIGHFIRST" ;;
esac
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CC="$CC"
ld -Bshareable pam_radius_auth.o md5.o -lpam -lc -o pam_radius_auth.so
Clean: sh
make clean || true
Package: libpam-radius-auth
Architecture: any
Suggests: radiusd
Description: The PAM RADIUS authentication module.
This is the PAM to RADIUS authentication module. It allows any PAM-capable
machine to become a RADIUS client for authentication and accounting
requests. You will, however, need to supply your own RADIUS server to
perform the actual authentication.
Install: sh
yada install -lib -into /lib/security pam_radius_auth.so
yada install -conffile debian/pam_radius_auth.conf
yada install -doc README TODO USAGE
yada install -doc -subdir html index.html
yada install -doc -as changelog Changelog
yada dpkg-shlibdeps
|