9dd48c587b
PR: ports/171311 Submitted by: Alexander Moisseev <moiseev@mezonplus.ru> (maintainer) Approved by: eadler, bapt (mentors, implicit)
39 lines
1,007 B
Makefile
39 lines
1,007 B
Makefile
# New ports collection makefile for: roundcube-contextmenu
|
|
# Date created: 27 Oct 2011
|
|
# Whom: Alexander Moisseev <moiseev@mezonplus.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= contextmenu
|
|
PORTVERSION= 1.9
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.tehinterweb.co.uk/roundcube/plugins/
|
|
PKGNAMEPREFIX= roundcube-
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= moiseev@mezonplus.ru
|
|
COMMENT= RoundCube webmail contextmenu plugin
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= roundcube>=0.6:${PORTSDIR}/mail/roundcube
|
|
|
|
NO_BUILD= yes
|
|
|
|
WWWDIR?= ${PREFIX}/www/roundcube/plugins/contextmenu
|
|
|
|
# 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>
|