38 lines
781 B
Makefile
38 lines
781 B
Makefile
# $OpenBSD: Makefile,v 1.10 2021/02/06 20:33:27 sthen Exp $
|
|
|
|
COMMENT= roundcube plugin: log end-user IP in Dovecot using IMAP ID
|
|
|
|
GH_ACCOUNT= corbosman
|
|
GH_PROJECT= dovecot_ident
|
|
GH_TAGNAME= 2.2
|
|
PKGNAME= rcube-${DISTNAME}
|
|
MODPHP_VERSION= 7.4
|
|
REVISION= 4
|
|
|
|
CATEGORIES= mail www
|
|
|
|
MAINTAINER= Stuart Henderson <stu.ports@spacehopper.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
NO_BUILD= Yes
|
|
NO_TEST= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= ${VARBASE}/www
|
|
INSTDIR= ${PREFIX}/roundcubemail/plugins
|
|
SUBST_VARS= INSTDIR
|
|
|
|
MODULES= lang/php
|
|
|
|
RUN_DEPENDS= mail/roundcubemail>=1.1
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${INSTDIR}/dovecot_ident
|
|
cp -Rp ${WRKDIST}/* ${INSTDIR}/dovecot_ident
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR}
|
|
find ${INSTDIR} \( -name \*.orig -or -name \*.src \) -delete
|
|
|
|
.include <bsd.port.mk>
|