View | Details | Raw Unified | Return to bug 96053
Collapse All | Expand All

(-)webcalendar/Makefile (-3 / +53 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	WebCalendar
8
PORTNAME=	WebCalendar
9
DISTVERSION=	1.0.2
9
DISTVERSION=	1.0.3
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	webcalendar
12
MASTER_SITE_SUBDIR=	webcalendar
Lines 15-21 Link Here
15
MAINTAINER=	glarkin@sourcehosting.net
15
MAINTAINER=	glarkin@sourcehosting.net
16
COMMENT=	A web-based calendar application
16
COMMENT=	A web-based calendar application
17
17
18
USE_PHP=	yes
18
OPTIONS=	MYSQL "Use MySQL database backend (default)" On \
19
		PGSQL "Use PostgreSQL database backend" Off \
20
		MSSQL "Use MSSQL database backend" Off \
21
		DBASE "Use DBase database backend" Off \
22
		ODBC "Use ODBC database backend" Off \
23
		ORACLE "Use Oracle database backend" Off
24
25
USE_PHP=	pcre session ldap
26
27
.include <bsd.port.pre.mk>
28
29
DB_DEFINED=	no
30
31
.if defined(WITH_MYSQL)
32
USE_PHP+=	mysql
33
DB_DEFINED=	yes
34
.endif
35
36
.if defined(WITH_PGSQL)
37
USE_PHP+=	pgsql
38
DB_DEFINED=	yes
39
.endif
40
41
.if defined(WITH_MSSQL)
42
USE_PHP+=	mssql
43
DB_DEFINED=	yes
44
.endif
45
46
.if defined(WITH_DBASE)
47
USE_PHP+=	dbase
48
DB_DEFINED=	yes
49
.endif
50
51
.if defined(WITH_ODBC)
52
USE_PHP+=	odbc
53
DB_DEFINED=	yes
54
.endif
55
56
.if defined(WITH_ORACLE)
57
USE_PHP+=	oracle
58
DB_DEFINED=	yes
59
.endif
60
61
.if ${DB_DEFINED} == "no"
62
USE_PHP+=	mysql
63
.endif
64
65
# Fix USE_PHP after bsd.port.pre.mk
66
.include "${PORTSDIR}/Mk/bsd.php.mk"
67
68
USE_APACHE=	yes
19
NO_BUILD=	yes
69
NO_BUILD=	yes
20
WRKSRC=		${WRKDIR}/WebCalendar-${DISTVERSION}
70
WRKSRC=		${WRKDIR}/WebCalendar-${DISTVERSION}
21
71
Lines 51-54 Link Here
51
.endfor
101
.endfor
52
	@${CAT} ${PKGMESSAGE} | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%WEBWCDIR%%|${WEBWCDIR}|g' -e 's|%%DOCSDIR%%|${DOCSDIR}|g'
102
	@${CAT} ${PKGMESSAGE} | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%WEBWCDIR%%|${WEBWCDIR}|g' -e 's|%%DOCSDIR%%|${DOCSDIR}|g'
53
103
54
.include <bsd.port.mk>
104
.include <bsd.port.post.mk>
(-)webcalendar/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (WebCalendar-1.0.2.tar.gz) = 358bde9195b88f33134e1fad9d617921
1
MD5 (WebCalendar-1.0.3.tar.gz) = 499f9daed1970625e26b8062d4b53f0e
2
SHA256 (WebCalendar-1.0.2.tar.gz) = 4f484634aeaec0895f7959460bac08bd2866acdfe02f4e3250af48febaffd0b2
2
SHA256 (WebCalendar-1.0.3.tar.gz) = dd974906eaf5bceeca4dbe8ea545b913ac53f79cc68aa9bb7d6a25bce9a962b2
3
SIZE (WebCalendar-1.0.2.tar.gz) = 942031
3
SIZE (WebCalendar-1.0.3.tar.gz) = 885250
(-)webcalendar/pkg-message (-2 / +3 lines)
Lines 3-10 Link Here
3
3
4
To make WebCalendar workable, please read
4
To make WebCalendar workable, please read
5
%%DOCSDIR%%/WebCalendar-SysAdmin.html
5
%%DOCSDIR%%/WebCalendar-SysAdmin.html
6
for information about creating the database and installing
6
for information about creating the database, installing
7
the database tables.
7
the database tables and other post-installation tasks,
8
such as setting up email reminders.
8
9
9
Then copy
10
Then copy
10
%%PREFIX%%/%%WEBWCDIR%%/includes/settings.php.orig to
11
%%PREFIX%%/%%WEBWCDIR%%/includes/settings.php.orig to

Return to bug 96053