FreeBSD Bugzilla – Attachment 83659 Details for
Bug 119474
[NEW PORT] www/webcalendar-devel: A web-based calendar application
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
WebCalendar-devel-1.1.6.shar
WebCalendar-devel-1.1.6.shar (text/plain), 5.16 KB, created by
Greg Larkin
on 2008-01-09 00:00:08 UTC
(
hide
)
Description:
WebCalendar-devel-1.1.6.shar
Filename:
MIME Type:
Creator:
Greg Larkin
Created:
2008-01-09 00:00:08 UTC
Size:
5.16 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># webcalendar-devel ># webcalendar-devel/files ># webcalendar-devel/files/pkg-message.in ># webcalendar-devel/Makefile ># webcalendar-devel/distinfo ># webcalendar-devel/pkg-descr ># webcalendar-devel/pkg-plist ># >echo c - webcalendar-devel >mkdir -p webcalendar-devel > /dev/null 2>&1 >echo c - webcalendar-devel/files >mkdir -p webcalendar-devel/files > /dev/null 2>&1 >echo x - webcalendar-devel/files/pkg-message.in >sed 's/^X//' >webcalendar-devel/files/pkg-message.in << 'END-of-webcalendar-devel/files/pkg-message.in' >X************************************************* >XPost-installation instructions: >X >XFirst, add the following line to your httpd.conf: >X >XAlias /%%WCURL%%/ "%%PREFIX%%/%%WCDIR%%/" >X >XMake sure to restart your web server after changing >Xhttpd.conf. >X >XNext, to configure WebCalendar, please visit >Xhttp://localhost/%%WCURL%%/ and you will >Xbe guided through the installation process. >X************************************************* >END-of-webcalendar-devel/files/pkg-message.in >echo x - webcalendar-devel/Makefile >sed 's/^X//' >webcalendar-devel/Makefile << 'END-of-webcalendar-devel/Makefile' >X# New ports collection makefile for: WebCalendar >X# Date created: 08 Jan 2008 >X# Whom: glarkin >X# >X# $FreeBSD$ >X# >X >XPORTNAME= WebCalendar-devel >XPORTVERSION= 1.1.6 >XCATEGORIES= www >XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} >XMASTER_SITE_SUBDIR= webcalendar >XDISTNAME= ${PORTNAME:S/-devel//g}-${PORTVERSION} >X >XMAINTAINER= glarkin@sourcehosting.net >XCOMMENT= A web-based calendar application >X >XUSE_PHP= pcre session >XWANT_PHP_WEB= yes >XNO_BUILD= yes >XCONFLICTS= WebCalendar-[0-9]* >X >XWRKSRC= ${WRKDIR}/${DISTNAME} >X >XWCURL?= ${MASTER_SITE_SUBDIR} >XWCDIR?= www/${WCURL} >XPLIST= ${WRKDIR}/pkg-plist >X >XSUB_FILES= pkg-message >XSUB_LIST= WCURL=${WCURL} WCDIR=${WCDIR} >X >XDOCSDIR?= ${PREFIX}/share/doc/${MASTER_SITE_SUBDIR} >XDOCS= docs/WebCalendar-SysAdmin.html \ >X docs/newwin.gif >X >XOPTIONS= MYSQL "Use MySQL database backend (default)" On \ >X PGSQL "Use PostgreSQL database backend" Off \ >X MSSQL "Use MSSQL database backend" Off \ >X DBASE "Use DBase database backend" Off \ >X ODBC "Use ODBC database backend" Off \ >X ORACLE "Use Oracle database backend" Off \ >X LDAP "Use LDAP user authentication" Off \ >X GRADIENTBG "Add gradient background image support" Off \ >X REMINDERS "Add email reminder support" On >X >X.include <bsd.port.pre.mk> >X >XDB_DEFINED= no >X >X.if !defined(WITHOUT_MYSQL) >XUSE_PHP+= mysql >XDB_DEFINED= yes >X.endif >X >X.if defined(WITH_PGSQL) >XUSE_PHP+= pgsql >XDB_DEFINED= yes >X.endif >X >X.if defined(WITH_MSSQL) >XUSE_PHP+= mssql >XDB_DEFINED= yes >X.endif >X >X.if defined(WITH_DBASE) >XUSE_PHP+= dbase >XDB_DEFINED= yes >X.endif >X >X.if defined(WITH_ODBC) >XUSE_PHP+= odbc >XDB_DEFINED= yes >X.endif >X >X.if defined(WITH_ORACLE) >XUSE_PHP+= oracle >XDB_DEFINED= yes >X.endif >X >X.if ${DB_DEFINED} == "no" >XIGNORE= please choose database backend by running 'make config' >X.endif >X >X.if defined(WITH_LDAP) >XUSE_PHP+= ldap >X.endif >X >X.if defined(WITH_GRADIENTBG) >XUSE_PHP+= gd >X.endif >X >X.if defined(WITH_REMINDERS) >XWANT_PHP_CLI= yes >X.endif >X >Xpre-install: >X cd ${WRKSRC} && ${FIND} -s * -type f | \ >X ${SED} -e 's|^|${WCDIR}/|' > ${PLIST} \ >X && ${FIND} -d * -type d | \ >X ${SED} -e 's|^|@dirrm ${WCDIR}/|' >> ${PLIST} \ >X && ${ECHO_CMD} @dirrm ${WCDIR} >> ${PLIST} >X @${CAT} pkg-plist >> ${PLIST} >X @${ECHO_CMD} @dirrmtry www/data-dist >> ${PLIST} >X @${ECHO_CMD} @dirrmtry www/data >> ${PLIST} >X >Xdo-install: >X @${MKDIR} ${PREFIX}/${WCDIR} >X ${CP} -R ${WRKSRC}/* ${PREFIX}/${WCDIR} >X ${CHOWN} -R www:www ${PREFIX}/${WCDIR} >X ${FIND} ${PREFIX}/${WCDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 >X >Xpost-install: >X.if !defined(NOPORTDOCS) >X @${MKDIR} ${DOCSDIR} >X.for i in ${DOCS} >X ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} >X.endfor >X.endif >X @${CAT} ${PKGMESSAGE} >X >X.include <bsd.port.post.mk> >END-of-webcalendar-devel/Makefile >echo x - webcalendar-devel/distinfo >sed 's/^X//' >webcalendar-devel/distinfo << 'END-of-webcalendar-devel/distinfo' >XMD5 (WebCalendar-1.1.6.tar.gz) = 1a9e80abd7373008e0b998525dd03404 >XSHA256 (WebCalendar-1.1.6.tar.gz) = ea8ede2a7ce74a3f5c72a7039ec5db6f6ee8db80e8a461f79cd493f16ac87d42 >XSIZE (WebCalendar-1.1.6.tar.gz) = 1300618 >END-of-webcalendar-devel/distinfo >echo x - webcalendar-devel/pkg-descr >sed 's/^X//' >webcalendar-devel/pkg-descr << 'END-of-webcalendar-devel/pkg-descr' >XThis is a port of the WebCalendar application. WebCalendar is an >XOpen Source web-based calendar/scheduling system written in PHP. >XWebCalendar has been under development since 2000 and continues >Xto evolve. >X >XWWW: http://www.k5n.us/webcalendar.php >X- Greg Larkin >Xglarkin@sourcehosting.net >END-of-webcalendar-devel/pkg-descr >echo x - webcalendar-devel/pkg-plist >sed 's/^X//' >webcalendar-devel/pkg-plist << 'END-of-webcalendar-devel/pkg-plist' >X@comment The full PLIST will be generated in pre-install phase >X%%PORTDOCS%%%%DOCSDIR%%/WebCalendar-SysAdmin.html >X%%PORTDOCS%%%%DOCSDIR%%/newwin.gif >X%%PORTDOCS%%@dirrm %%DOCSDIR%% >END-of-webcalendar-devel/pkg-plist >exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 119474
: 83659