aboutsummaryrefslogtreecommitdiff
path: root/www/webcalendar/Makefile
blob: e469bd3becf9f98e6b14b4779de915d306d39d4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# New ports collection makefile for:   WebCalendar
# Date created:        21 June 2005
# Whom:                glarkin
#
# $FreeBSD$
#

PORTNAME=	WebCalendar
DISTVERSION=	1.0.1
CATEGORIES=	www
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	webcalendar
DISTNAME=	${PORTNAME}-${PORTVERSION}

MAINTAINER=	glarkin@sourcehosting.net
COMMENT=	A web-based calendar application

USE_PHP=	yes
NO_BUILD=	yes
WRKSRC=		${WRKDIR}/WebCalendar-${DISTVERSION}

WEBWCDIR?=	www/data/WebCalendar
PLIST=		${WRKDIR}/pkg-plist

DOCSDIR?=	${PREFIX}/share/doc/${PORTNAME}
DOCS=		docs/README \
		docs/WebCalendar-Database.html \
		docs/WebCalendar-DeveloperGuide.html \
		docs/WebCalendar-Styling.html \
		docs/WebCalendar-SysAdmin.html \
		docs/newwin.gif

pre-install:
	cd ${WRKSRC} && ${FIND} -s * -type f | \
		${SED} -e 's|^|${WEBWCDIR}/|' > ${PLIST} \
		&& ${FIND} -d * -type d | \
		${SED} -e 's|^|@dirrm ${WEBWCDIR}/|' >> ${PLIST} \
		&& ${ECHO_CMD} @dirrm ${WEBWCDIR} >> ${PLIST}
	${CAT} pkg-plist >> ${PLIST}

do-install:
	${MKDIR} ${PREFIX}/${WEBWCDIR}
	${CP} -R ${WRKSRC}/* ${PREFIX}/${WEBWCDIR}
	${CHOWN} -R www:www ${PREFIX}/${WEBWCDIR}
	${FIND} ${PREFIX}/${WEBWCDIR} -type f | ${XARGS} ${CHMOD} 644

post-install:
	${MKDIR} ${DOCSDIR}
.for i in ${DOCS}
	@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
	@${CAT} ${PKGMESSAGE} | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%WEBWCDIR%%|${WEBWCDIR}|g' -e 's|%%DOCSDIR%%|${DOCSDIR}|g'

.include <bsd.port.mk>