mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
01de4f1c56
A set of CGI scripts in Perl for editing your MySQL tables. PR: 17376 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
35 lines
981 B
Makefile
35 lines
981 B
Makefile
# 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= http://sorry.vse.cz/~xzemt02/mysql/ \
|
|
http://www.mysql.com/Contrib/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
|
${CGI_BIN}:${PORTSDIR}/www/apache13
|
|
|
|
NO_BUILD= True
|
|
|
|
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 ${PREFIX}/share/doc/mysql-editor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|