1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/www/trac-ldapauthstore/Makefile
Dmitry Marakasov bdb06fad8a www/trac-*: minor cleanup
- Don't use trac/plugin.mk which is now empty and unneeded
- Add some NO_ARCH'es
- Add/fix some LICENSEs and LICENSE_FILES
- Pet portlint
- Regenerate some patches

Approved by:	portmgr blanket
2016-05-29 01:29:08 +00:00

45 lines
1.1 KiB
Makefile

# $FreeBSD$
PORTNAME= ldapauthstore
PORTVERSION= 0.3.2.${SVN_REVISION}
CATEGORIES= www devel python
MASTER_SITES= LOCAL/matthew
PKGNAMEPREFIX= trac-
DISTNAME= ${PORTNAME}plugin-${PORTVERSION}
MAINTAINER= matthew@FreeBSD.org
COMMENT= Trac AccountManager plugin using LDAP authentication store
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= tracd:www/trac \
trac-accountmanager>0:www/trac-accountmanager \
trac-ldap>0:www/trac-ldap \
${PYTHON_PKGNAMEPREFIX}ldap>0:net/py-ldap
NO_ARCH= yes
PORTSCOUT= ignore:1
SVN_REVISION= 15146
USES= python:-2.7
USE_PYTHON= distutils autoplist
# Maintainter targets below this point
# Retrieve the latest version from SVN and package in a tarball.
.if defined(BOOTSTRAP)
FETCH_DEPENDS+= svn:devel/subversion
do-fetch:
${MKDIR} ${WRKDIR}
cd ${WRKDIR} && \
svn export --non-interactive \
--trust-server-cert-failures=unknown-ca \
--revision ${SVN_REVISION} \
https://trac-hacks.org/svn/${PORTNAME}plugin/trunk/ \
${DISTNAME}
cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
.endif
.include <bsd.port.mk>