diff options
author | Steve Price <steve@FreeBSD.org> | 2000-05-01 02:45:01 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-05-01 02:45:01 +0000 |
commit | 01de4f1c56ab180acb37202391c01145d1247d1a (patch) | |
tree | 5d2765b6cbd3222af2ea5ba459c5ea2e8655a7ef /databases/mysql-editor/Makefile | |
parent | Adding the libxode and wordnet ports. (diff) |
Adding mysql-editor version 0.2.
A set of CGI scripts in Perl for editing your MySQL tables.
PR: 17376
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'databases/mysql-editor/Makefile')
-rw-r--r-- | databases/mysql-editor/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/databases/mysql-editor/Makefile b/databases/mysql-editor/Makefile new file mode 100644 index 000000000000..71eb053dcede --- /dev/null +++ b/databases/mysql-editor/Makefile @@ -0,0 +1,34 @@ +# 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> |