diff options
author | clsung <clsung@FreeBSD.org> | 2006-09-20 15:10:48 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-09-20 15:10:48 +0800 |
commit | 0feffaa821a1c671cdb41b8f734df33fe844fd93 (patch) | |
tree | 56d15b8ab89c5fa8e485bee0d94c62de2b885984 /www/webcalendar | |
parent | 9fadb5eac98e0ab3287087de11ddc152942deb98 (diff) | |
download | freebsd-ports-gnome-0feffaa821a1c671cdb41b8f734df33fe844fd93.tar.gz freebsd-ports-gnome-0feffaa821a1c671cdb41b8f734df33fe844fd93.tar.zst freebsd-ports-gnome-0feffaa821a1c671cdb41b8f734df33fe844fd93.zip |
- The port was fixed to correct a problem that caused to be marked
for deletion. Thanks to the following individuals:
Miroslav Lachman - Patch to remove non-configurable LDAP dependency
Thomas Abthorpe - A kick in the pants to get this done!
PR: ports/103403
Submitted by: maintainer (Greg Larkin)
Diffstat (limited to 'www/webcalendar')
-rw-r--r-- | www/webcalendar/Makefile | 17 | ||||
-rw-r--r-- | www/webcalendar/pkg-message | 2 |
2 files changed, 11 insertions, 8 deletions
diff --git a/www/webcalendar/Makefile b/www/webcalendar/Makefile index ceaa8a79011d..91207f783393 100644 --- a/www/webcalendar/Makefile +++ b/www/webcalendar/Makefile @@ -15,11 +15,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= glarkin@sourcehosting.net COMMENT= A web-based calendar application -BROKEN= fails to deinstall cleanly -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2006-12-01 - -USE_PHP= pcre session ldap +USE_PHP= pcre session WANT_PHP_WEB= yes NO_BUILD= yes @@ -41,7 +37,8 @@ OPTIONS= MYSQL "Use MySQL database backend (default)" On \ MSSQL "Use MSSQL database backend" Off \ DBASE "Use DBase database backend" Off \ ODBC "Use ODBC database backend" Off \ - ORACLE "Use Oracle database backend" Off + ORACLE "Use Oracle database backend" Off \ + LDAP "Use LDAP user authentication" Off .include <bsd.port.pre.mk> @@ -78,7 +75,11 @@ DB_DEFINED= yes .endif .if ${DB_DEFINED} == "no" -IGNORE= please, choose database backend running 'make config' +IGNORE= please choose database backend by running 'make config' +.endif + +.if defined(WITH_LDAP) +USE_PHP+= ldap .endif # Fix USE_PHP after bsd.port.pre.mk @@ -91,6 +92,8 @@ pre-install: ${SED} -e 's|^|@dirrm ${WEBWCDIR}/|' >> ${PLIST} \ && ${ECHO_CMD} @dirrm ${WEBWCDIR} >> ${PLIST} @${CAT} pkg-plist >> ${PLIST} + @${ECHO_CMD} @dirrmtry www/data-dist >> ${PLIST} + @${ECHO_CMD} @dirrmtry www/data >> ${PLIST} do-install: @${MKDIR} ${PREFIX}/${WEBWCDIR} diff --git a/www/webcalendar/pkg-message b/www/webcalendar/pkg-message index 22d7c31ab63c..709418e4f0b4 100644 --- a/www/webcalendar/pkg-message +++ b/www/webcalendar/pkg-message @@ -1,7 +1,7 @@ Post-installation instructions: -To make WebCalendar workable, please read +To configure WebCalendar, please read %%DOCSDIR%%/WebCalendar-SysAdmin.html for information about creating the database, installing the database tables and other post-installation tasks, |