mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
09da978633
- Add LICENSE - Pass maintainership to submitter PR: ports/150533 Submitted by: Joe Horn <joehorn@gmail.com>
72 lines
1.8 KiB
Makefile
72 lines
1.8 KiB
Makefile
# New ports collection makefile for: adodb
|
|
# Date created: 4 May 2001
|
|
# Whom: abgoeree@uwnet.nl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= adodb
|
|
PORTVERSION= 4.99.2
|
|
CATEGORIES= databases www
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-php-4-and-5/${PORTNAME}-${PORTVERSION:S/.//g}-for-php
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= joehorn@gmail.com
|
|
COMMENT= Database library for PHP
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_PHP= pcre
|
|
|
|
CONFLICTS= adodb-5.*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_BUILD= YES
|
|
|
|
ADODB_SUBDIRS= contrib datadict drivers lang pear perf session xsl
|
|
|
|
OPTIONS= TESTS "Install tests" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
SUB_FILES+= pkg-message
|
|
|
|
.if defined (WITH_TESTS)
|
|
PLIST_SUB+= TESTS=
|
|
.else
|
|
PLIST_SUB+= TESTS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}; ${RM} -f cute_icons_for_site/Thumbs.db
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
@cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type d \
|
|
-exec ${MKDIR} ${DATADIR}/{} \;
|
|
@cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f \( -name '*.php' -or -name '*.dtd' -or -name '*.zip' \) \
|
|
-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \;
|
|
@cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type f \
|
|
-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \;
|
|
|
|
.if defined (WITH_TESTS)
|
|
@${MKDIR} ${DATADIR}/tests
|
|
@cd ${WRKSRC}; ${FIND} tests -type f \
|
|
-exec ${INSTALL_DATA} ${WRKSRC}/{} ${DATADIR}/{} \;
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR} ${DOCSDIR}/cute_icons_for_site
|
|
@cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f -name '*.txt' \
|
|
-exec ${INSTALL_MAN} ${WRKSRC}/{} ${DOCSDIR}/{} \;
|
|
@cd ${WRKSRC}/docs; ${FIND} . -type f \
|
|
-exec ${INSTALL_MAN} ${WRKSRC}/docs/{} ${DOCSDIR}/{} \;
|
|
@cd ${WRKSRC}; ${FIND} cute_icons_for_site -type f \
|
|
-exec ${INSTALL_MAN} ${WRKSRC}/{} ${DOCSDIR}/{} \;
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|