blob: f413315183ad8854e30d9a078bd3e936729f25f3 (
plain)
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
|
# Created by: Anes Muhametov <anes@anes.su>
# $FreeBSD$
PORTNAME= sieverules
PORTVERSION= 0.9.2
PORTEPOCH= 1
CATEGORIES= mail
PKGNAMEPREFIX= roundcube-
MAINTAINER= anes@anes.su
COMMENT= Roundcube webmail sieve plugin
LICENSE= GPLv3
BUILD_DEPENDS= roundcube>=0.9.2:${PORTSDIR}/mail/roundcube
RUN_DEPENDS= roundcube>=0.9.2:${PORTSDIR}/mail/roundcube
USE_GITHUB= yes
GH_ACCOUNT= JohnDoh
GH_PROJECT= Roundcube-Plugin-SieveRules-Managesieve
GH_TAGNAME= v${PORTVERSION}
GH_COMMIT= 6eda4de
NO_BUILD= yes
WWWDIR= ${PREFIX}/www/roundcube/plugins/sieverules
# 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%%," >${WRKDIR}/pkg-plist.tmp ; \
${FIND} . -type d | ${SORT} -r | ${SED} \
-e "s,^\.$$,@dirrmtry %%WWWDIR%%," \
-e "s,^\.,@dirrm %%WWWDIR%%," >>${WRKDIR}/pkg-plist.tmp
do-install:
${MKDIR} ${WWWDIR}
cd ${WRKSRC} && ${PAX} -r -w . ${WWWDIR}
.include <bsd.port.mk>
|