6e63b8a08d
- take maintainership (three time-outs) - modify www/davical due to flavorized linawl - flavorize www/davical PR: 236649 Reported by: rearnsha <rwe@eyrie.plus.com> Reviewed by: mat Approved by: tcberner Differential Revision: https://reviews.freebsd.org/D19653
39 lines
773 B
Makefile
39 lines
773 B
Makefile
# Created by: Cristiano Rolim Pereira <cristianorolim@hotmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libawl
|
|
DISTVERSIONPREFIX= r
|
|
DISTVERSION= 0.60
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= rigoletto@FreeBSD.org
|
|
COMMENT= Andrew.s Web Libraries - PHP Utility Libraries
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= php:build,flavors
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= davical-project
|
|
GL_PROJECT= awl
|
|
GL_COMMIT= 3efb13de38ea4c1cc298f206199848467af18456
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
LIBAWLDIR?= share/awl
|
|
|
|
post-patch:
|
|
${RM} ${WRKSRC}/inc/*.orig
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${LIBAWLDIR}
|
|
.for d in dba inc
|
|
cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} ${d} ${STAGEDIR}${PREFIX}/${LIBAWLDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|