blob: b19c5abfe3f77bae57a7b90a0c5b564953f7ce68 (
plain) (
blame)
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
|
# New ports collection makefile for: nocatauth-server
# Date created: 19 November 2003
# Whom: Bruce M Simpson <bms@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= nocatauth-server
PORTVERSION= 0.82
PORTREVISION= 3
CATEGORIES= net
MASTER_SITES= http://nocat.net/download/NoCatAuth/
DISTNAME= NoCatAuth-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Open 802.11 Authentication Server
RUN_DEPENDS= \
${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1
IGNORE= uses a UID registered to another port
CONFLICTS= nocatauth-gateway-*
NO_BUILD= yes
INSTALL_TARGET= authserv
USE_PERL5_RUN= yes
USE_GMAKE= yes
USE_SUBMAKE= yes
WRAP_USER?= nocat
NOCATDIR?= nocat
MAKE_ARGS+= DESTDIR=${PREFIX}/ PREFIX=${NOCATDIR}
MAKE_ARGS+= WRAP_USER=${WRAP_USER}
MAKE_ARGS+= -w
pre-install:
@( ${FIND} ${WRKDIR} -type f -name '*.orig' -exec ${RM} '{}' ';' )
@${SETENV} NOCAT_DIR="${PREFIX}/${NOCATDIR}" WRAP=${WRAP_USER} \
${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
.include <bsd.port.mk>
|