mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
fecbee6f44
PR: 139978 Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org> (maintainer)
37 lines
916 B
Makefile
37 lines
916 B
Makefile
# New ports collection makefile for: air
|
|
# Date created: Fri 14 Aug 2009
|
|
# Whom: Alexey V. Degtyarev
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= air
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://renatasystems.org/pub/FreeBSD/ports/distfiles/
|
|
PKGNAMEPREFIX= roundcube-
|
|
|
|
MAINTAINER= alexey@renatasystems.org
|
|
COMMENT= Theme for RoundCube Web Mail
|
|
|
|
RUN_DEPENDS= roundcube>=0.3:${PORTSDIR}/mail/roundcube
|
|
|
|
NO_BUILD= yes
|
|
|
|
WWWDIR?= ${PREFIX}/www/roundcube/skins/air
|
|
|
|
# This target is only meant to be used by the port maintainer.
|
|
x-generate-plist: build
|
|
cd ${WRKSRC}; \
|
|
${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \
|
|
${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \
|
|
${FIND} . -type d | ${SORT} -r | ${SED} \
|
|
-e "s,^\.$$,@dirrmtry %%WWWDIR%%," \
|
|
-e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
cd ${WRKSRC} && ${PAX} -r -w . ${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|