c2ff523da6
send an email to and records it in an address book, making it available for later use or auto-completion. WWW: http://code.crapouillou.net/projects/roundcube-plugins PR: ports/170993 Submitted by: Anes Mukhametov <anes@anes.su> Approved by: culot (mentor)
39 lines
990 B
Makefile
39 lines
990 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= automatic_addressbook
|
|
PORTVERSION= 0.3.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://code.crapouillou.net/attachments/download/16/
|
|
PKGNAMEPREFIX= roundcube-
|
|
|
|
MAINTAINER= anes@anes.su
|
|
COMMENT= Roundcube webmail automatic addressbook plugin
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= roundcube>=0.8:${PORTSDIR}/mail/roundcube
|
|
|
|
USE_BZIP2= yes
|
|
NO_BUILD= yes
|
|
|
|
RCDIR= ${PREFIX}/www/roundcube
|
|
WWWDIR= ${RCDIR}/plugins/automatic_addressbook
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= RCDIR=${RCDIR} PLUGINDIR=${WWWDIR}
|
|
|
|
# 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}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|