blob: 3a51d23036d1f3d4439eebe68f4bcfe1950121a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# New ports collection makefile for: adodb
# Date created: 4 May 2001
# Whom: abgoeree@uwnet.nl
#
# $FreeBSD$
#
PORTNAME= adodb
PORTVERSION= 2.50
CATEGORIES= databases www
MASTER_SITES= http://phplens.com/lens/dl/
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//}
EXTRACT_SUFX= .tgz
MAINTAINER= abgoeree@wish.net
COMMENT= A database library for PHP4
RUN_DEPENDS= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= YES
ADODB_DIR= www/data.default/php/adodb
ADODB_DRIVERS= ${ADODB_DIR}/drivers
ADODB_TESTS= ${ADODB_DIR}/tests
PLIST_SUB= ADODB_DIR=${ADODB_DIR} \
ADODB_DRIVERS=${ADODB_DRIVERS} \
ADODB_TESTS=${ADODB_TESTS} \
DOCSDIR=share/doc/adodb
DOCS= readme.htm tute.htm readme.txt
DRIVERS= drivers/adodb-access.inc.php \
drivers/adodb-ado.inc.php \
drivers/adodb-ado_access.inc.php \
drivers/adodb-ado_mssql.inc.php \
drivers/adodb-borland_ibase.inc.php \
drivers/adodb-csv.inc.php \
drivers/adodb-db2.inc.php \
drivers/adodb-fbsql.inc.php \
drivers/adodb-firebird.inc.php \
drivers/adodb-ibase.inc.php \
drivers/adodb-informix.inc.php \
drivers/adodb-mssql.inc.php \
drivers/adodb-mysql.inc.php \
drivers/adodb-mysqlt.inc.php \
drivers/adodb-oci8.inc.php \
drivers/adodb-oci8po.inc.php \
drivers/adodb-odbc.inc.php \
drivers/adodb-odbc_mssql.inc.php \
drivers/adodb-odbc_oracle.inc.php \
drivers/adodb-oracle.inc.php \
drivers/adodb-postgres.inc.php \
drivers/adodb-postgres7.inc.php \
drivers/adodb-proxy.inc.php \
drivers/adodb-sqlanywhere.inc.php \
drivers/adodb-sybase.inc.php \
drivers/adodb-vfp.inc.php \
INCLUDES= adodb-csvlib.inc.php \
adodb-errorhandler.inc.php \
adodb-errorpear.inc.php \
adodb.inc.php \
adodb-lib.inc.php \
adodb-pear.inc.php \
crypt.inc.php \
tohtml.inc.php
PICS= cute_icons_for_site/adodb.gif \
cute_icons_for_site/adodb.png \
cute_icons_for_site/adodb2.gif \
cute_icons_for_site/adodb2.png
SAMPLES= adodb-cryptsession.php \
adodb-session.php \
server.php
TESTS= tests/benchmark.php \
tests/client.php \
tests/test.php \
tests/test2.php \
tests/test3.php \
tests/test4.php \
tests/test5.php \
tests/testcache.php \
tests/testdatabases.inc.php \
tests/testoci8.php \
tests/testpaging.php \
tests/testpear.php \
tests/testsessions.php
do-install:
@${MKDIR} ${PREFIX}/${ADODB_DRIVERS}
@${MKDIR} ${PREFIX}/${ADODB_TESTS}
.for FILE in ${DRIVERS}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/${ADODB_DRIVERS}
.endfor
.for FILE in ${INCLUDES}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/${ADODB_DIR}/${FILE}
.endfor
.for FILE in ${PICS}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${PREFIX}/${ADODB_DIR}
.endfor
.for FILE in ${SAMPLES}
if [ ! -f ${PREFIX}/${ADODB_DIR}/${FILE} ]; then \
${INSTALL_DATA} ${WRKSRC}/${FILE} \
${PREFIX}/${ADODB_DIR}/${FILE};\
fi
${INSTALL_DATA} ${WRKSRC}/${FILE} \
${PREFIX}/${ADODB_DIR}/${FILE}.sample
.endfor
.for FILE in ${TESTS}
if [ ! -f ${PREFIX}/${ADODB_DIR}/${FILE} ]; then \
${INSTALL_DATA} ${WRKSRC}/${FILE} \
${PREFIX}/${ADODB_DIR}/${FILE};\
fi
${INSTALL_DATA} ${WRKSRC}/${FILE} \
${PREFIX}/${ADODB_DIR}/${FILE}.sample
.endfor
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for FILE in ${DOCS}
${INSTALL_MAN} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|