50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.18 2001/03/04 03:26:51 assar Exp $
|
|
#
|
|
# Tempted to install another radius package?
|
|
#
|
|
# Please consider e-mailing ${MAINTAINER} first with your concerns.
|
|
# It would be nice to just fold new extensions into this code, and
|
|
# avoid a myriad of incompatible radiusd incarnations.
|
|
|
|
DISTNAME= radius.3.6B
|
|
PKGNAME= ${DISTNAME:S/./-/}
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.merit.edu/radius/releases/ \
|
|
http://www.mr.net/~bradley/radius/
|
|
DISTFILES= ${DISTNAME}.basic.tar.gz \
|
|
${DISTNAME}-skey.tar.gz \
|
|
${DISTNAME}-ftp.tar \
|
|
${DISTNAME}-simultd.tar
|
|
|
|
MAINTAINER= kim@tac.nyc.ny.us
|
|
HOMEPAGE= http://www.merit.edu/aaa/
|
|
COMMENT= Standard authentication protocol server
|
|
|
|
DIST_SUBDIR= radius
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CFLAGS+= -DHAVE_SETVBUF -DNOSHADOW
|
|
|
|
.if defined(KERBEROS)
|
|
USE_KERBEROS= yes
|
|
CFLAGS+= -DM_KERB -I/usr/include/kerberosIV
|
|
RADLIBS= -lkrb -ldes
|
|
.endif
|
|
|
|
DECOMPRESS_CMD= ${GZCAT} -f
|
|
MAKE_ENV+= RADLIBS="${RADLIBS} -lskey" LIBS=-lcrypt \
|
|
GNUZIP="`${ECHO} ${GZIP_CMD} | ${AWK} '{print $$1}'`" \
|
|
INSTALL="${INSTALL} -c"
|
|
|
|
INSTALL_TARGET= man-install install util-install config-install
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
pre-patch:
|
|
.for FILE in prediff rad.simult rad.ftp rad.skey
|
|
@cd ${WRKSRC} && \
|
|
${SED} -e 's#^--- ${DISTNAME}.patched/#--- #' ${FILE}.diff | \
|
|
${PATCH} -s
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|