mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
c9b41dd6a7
(1) PKGNAME satisfies handbook rule. (2) @dirrm lib/radius fails when lib/radius/acct exists. Submitted by: Stefan Esser <se@mi.uni-koeln.de> ----- diff -urN -x CVS merit/Makefile radius/Makefile --- merit/Makefile Fri Sep 18 02:00:05 1998 +++ radius/Makefile Wed Oct 7 23:54:43 1998 @@ -7,7 +7,7 @@ # DISTNAME= radius.3.6B.basic -PKGNAME= radius-3.6B.basic +PKGNAME= radius-basic-3.6B CATEGORIES= net MASTER_SITES= ftp://ftp.merit.edu/radius/releases/ diff -urN -x CVS merit/pkg/PLIST radius/pkg/PLIST --- merit/pkg/PLIST Fri Sep 18 01:58:28 1998 +++ radius/pkg/PLIST Wed Oct 7 23:51:47 1998 @@ -12,4 +12,5 @@ lib/radius/db/engine.config.sample lib/radius/db/vendors.sample @dirrm lib/radius/db +@dirrm lib/radius/acct @dirrm lib/radius -----
31 lines
856 B
Makefile
31 lines
856 B
Makefile
# New ports collection makefile for: radius
|
|
# Version required: merit radius 2.4.23
|
|
# Date created: 4. July 1996
|
|
# Whom: torstenb@FreeBSD.ORG
|
|
#
|
|
# $Id: Makefile,v 1.9 1998/09/16 21:27:59 torstenb Exp $
|
|
#
|
|
|
|
DISTNAME= radius.3.6B.basic
|
|
PKGNAME= radius-basic-3.6B
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.merit.edu/radius/releases/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
# restrictive copyright in several files, e.g., "src/sendserver.c"
|
|
RESTRICTED= redistribution in binary only
|
|
NO_CDROM= not allowed to charge fee for redistribution
|
|
|
|
NO_WRKSUBDIR= yes
|
|
INSTALL_TARGET= install-all
|
|
MAKE-FLAGS+= -DPREFIX=${PREFIX}
|
|
MAN5= authfile.5 clients.5 dictionary.5 engine.config.5 \
|
|
radius.fsm.5 users.5 vendors.5
|
|
MAN8= builddbm.8 dnscheck.8 radcheck.8 radiusd.8 radpwtst.8
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/lib/radius/db ${PREFIX}/lib/radius/acct
|
|
|
|
.include <bsd.port.mk>
|