blob: 573ceecd07fa74ce82b1c8b620c9d0f0120d26b5 (
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
|
# New ports collection makefile for: mysql-editor
# Date created: Mar 14, 2000
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= mysql-editor
PORTVERSION= 0.2
CATEGORIES= databases www
MASTER_SITES= ${MASTER_SITE_MYSQL}
MASTER_SITE_SUBDIR=Contrib/Old-Versions
DISTNAME= ${PORTNAME}
MAINTAINER= mi@aldan.algebra.com
COMMENT= CGI scripts in Perl to edit your MySQL tables
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
RUN_DEPENDS:= ${BUILD_DEPENDS}
DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now
EXPIRATION_DATE= 2011-11-01
USE_APACHE= 13
NO_BUILD= yes
USE_PERL5= yes
CGI_BIN= ${LOCALBASE}/www/cgi-bin
do-install:
${MKDIR} ${CGI_BIN}/mysql-editor
${INSTALL_SCRIPT} ${WRKSRC}/*.cgi ${CGI_BIN}/mysql-editor/
${INSTALL_DATA} ${WRKSRC}/index.html ${CGI_BIN}/mysql-editor/
${INSTALL_DATA} ${WRKSRC}/dat.conf ${CGI_BIN}/mysql-editor/dat.conf.sample
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/mysql-editor
${INSTALL_DATA} ${WRKSRC}/readme.html ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|