7fd3978cb4
of MySQL over the web interface. It is small, quick, easy to use alternative to phpMyAdmin. In comparison with with phpMyAdmin is this application more oriented to hand writing of SQL queries and their use for later use. It enables also other tasks like database dump, import, export (csv,html), insert data, database scheme, index manager, history and reuse of SQL requests, etc. Interface is either in English and/or in Czech languages, and it is very easy to add other languages. WWW: http://www.the.cz/mywwwatcher - Petr Macek pm@kostax.cz PR: ports/107762 Submitted by: Petr Macek <pm at kostax.cz>
41 lines
891 B
Makefile
41 lines
891 B
Makefile
# New ports collection makefile for: mywwwatcher
|
|
# Date created: 10 January 2007
|
|
# Whom: Petr Macek <pm@kostax.cz>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mywwwatcher
|
|
PORTVERSION= 3.0
|
|
CATEGORIES= databases www
|
|
MASTER_SITES= http://www.the.cz/mywwwatcher/files/
|
|
DISTNAME= mywwwatcher-${PORTVERSION}
|
|
|
|
MAINTAINER= pm@kostax.cz
|
|
COMMENT= Simply web-based mysql client + tools (dump, import, scheme, ...)
|
|
|
|
WRKSRC= ${WRKDIR}/mywwwatcher
|
|
|
|
DEFAULT_PHP_VER= 4
|
|
USE_PHP= pcre session mysql
|
|
|
|
NO_BUILD= yes
|
|
|
|
PKGMESSAGE= ${PKGDIR}/pkg-message
|
|
PLIST_SUB+= INSTALLDIR=${INSTALLDIR}
|
|
|
|
INSTALLDIR= www/${PORTNAME}
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${INSTALLDIR}
|
|
@${CP} -Rp ${WRKSRC}/* ${PREFIX}/${INSTALLDIR}
|
|
@${CHMOD} 775 ${PREFIX}/${INSTALLDIR}/ini
|
|
@${CHMOD} 775 ${PREFIX}/${INSTALLDIR}/query_archive
|
|
@${ECHO_CMD} ""
|
|
|
|
post-install:
|
|
.if !defined(BATCH)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|