diff options
author | dinoex <dinoex@FreeBSD.org> | 2004-03-26 19:16:54 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2004-03-26 19:16:54 +0000 |
commit | 810b64b610ea7285ca008497f86e5b6b9e56e77f (patch) | |
tree | 4581a1df3b471ac1cce61d898e28406e96230cc4 /net | |
parent | df096b05bf4ca121e071c345ffe49f40ed0fb7f5 (diff) | |
download | FreeBSD-ports-810b64b610ea7285ca008497f86e5b6b9e56e77f.zip FreeBSD-ports-810b64b610ea7285ca008497f86e5b6b9e56e77f.tar.gz |
- make PKGNAMESUFFIX more flexible
Diffstat (limited to 'net')
-rw-r--r-- | net/freebsd-uucp/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/freebsd-uucp/Makefile b/net/freebsd-uucp/Makefile index b6f25f2..def6060 100644 --- a/net/freebsd-uucp/Makefile +++ b/net/freebsd-uucp/Makefile @@ -10,9 +10,7 @@ PORTVERSION= 1.07.2 CATEGORIES= net comms MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=dinoex -.if defined(WITH_PAM) -PKGNAMESUFFIX?= -pam -.endif +PKGNAMESUFFIX?= ${PAM_SUFFIX}${PKGNAMESUFFIX2} MAINTAINER= dinoex@FreeBSD.org COMMENT= FreeBSD-modified Taylor UUCP (unix-to-unix copy program) @@ -32,6 +30,7 @@ BPKGNAME= base-uucp-1.06.1 MAKE_ENV+= CSTD=gnu99 .if defined(WITH_PAM) +PAM_SUFFIX= -pam MAKE_ENV+= WITH_PAM=${WITH_PAM} CONFLICTS?= freebsd-uucp-1.* .else @@ -83,7 +82,7 @@ post-install: @if test "$$(pw usershow uucp)" != "uucp:*:66:66::0:0:UUCP pseudo-user:/var/spool/uucppublic:${PREFIX}/libexec/uucp/uucico"; then \ pw usermod uucp -s ${PREFIX}/libexec/uucp/uucico; fi @pw usershow uucp -.endif +.endif @${ECHO_MSG} "Use the 'make upgrade' command to copy your old configuration" @${ECHO_MSG} "files from /etc/uucp to the new location in ${PREFIX}/etc/uucp" @${ECHO_MSG} |