diff options
author | adamw <adamw@FreeBSD.org> | 2012-09-09 23:49:17 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2012-09-09 23:49:17 +0800 |
commit | ee61a9a6aa905db18a1f5963d1b7d60511969a86 (patch) | |
tree | 9e13ab83551e2be1900e2742f55949af2f4a3782 /mail/squirrelmail | |
parent | 1e9ac432a30912c7099e00d1eaa90bf0b18b320d (diff) | |
download | freebsd-ports-gnome-ee61a9a6aa905db18a1f5963d1b7d60511969a86.tar.gz freebsd-ports-gnome-ee61a9a6aa905db18a1f5963d1b7d60511969a86.tar.zst freebsd-ports-gnome-ee61a9a6aa905db18a1f5963d1b7d60511969a86.zip |
Remove WITHOUT_WWWDIR. This was a tunable to install into a nonstandard
location. It came with a pre-everything message warning you of the change.
This happened 8.5 years ago, so I am hoping people have converted over by
now. If not, just set SQUIRRELDIR to whatever path you please. This is
noted also in the Makefile.
Diffstat (limited to 'mail/squirrelmail')
-rw-r--r-- | mail/squirrelmail/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/mail/squirrelmail/Makefile b/mail/squirrelmail/Makefile index 23b5568aecd4..b9775011d75f 100644 --- a/mail/squirrelmail/Makefile +++ b/mail/squirrelmail/Makefile @@ -28,11 +28,8 @@ USE_GETTEXT= yes OPTIONS_DEFINE= DATABASE LDAP DATABASE_DESC= PEAR database support (must also intall a driver) -.ifndef WITHOUT_WWWDIR +# if you were using WITHOUT_WWWDIR, use SQUIRRELDIR=${PREFIX}/${PORTNAME} SQUIRRELDIR?= ${PREFIX}/www/${PORTNAME} -.else -SQUIRRELDIR?= ${PREFIX}/${PORTNAME} -.endif PLIST_SUB= PORTVERSION=${PORTVERSION} \ SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}" @@ -55,10 +52,6 @@ USE_PHP+= ldap .endif pre-everything:: - @${ECHO_CMD} "SquirrelMail is installed into ${SQUIRRELDIR}" - @${ECHO_CMD} "To use the old location ${PREFIX}/${PORTNAME} define" - @${ECHO_CMD} "WITHOUT_WWWDIR when patching or installing" - @${ECHO_CMD} .if ${PORT_OPTIONS:MDATABASE} @${ECHO_CMD} "Note that the PEAR database framework still requires you to install a" @${ECHO_CMD} "database-specific PEAR driver, e.g. MySQL." |