1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-19 08:13:21 +00:00
freebsd-ports/databases/sqlbuddy/Makefile
John Marino a6a0c60093 databases/sqlbuddy: Unbreak and stage
The maintainer actually provided a PR to address the breakage long
before it was marked broken.  itetcu asked him a valid question: Why
is sqlbuddy defaulting to sqlite when it is primarily a mysql tool?
The question was never answered and the PR got thrown back on the heap.

The SQLite component is what is missing.  Let's remove sqlite as an
option to restore the build and stage while here.  It's bumped because
of the change in default options.

PR:		ports/181708
submitted by:	maintainer (Chenguang Li)
modified by:	marino
MFH:		2014Q2
2014-04-21 19:02:18 +00:00

41 lines
1.0 KiB
Makefile

# Created by: Chenguang LI
# $FreeBSD$
PORTNAME= sqlbuddy
PORTVERSION= 1.3.3
PORTREVISION= 1
CATEGORIES= databases www
MASTER_SITES= http://www.sqlbuddy.com/download/
DISTNAME= ${PORTNAME}_1_3_3
MAINTAINER= horus.li@gmail.com
COMMENT= Web based MySQL administration with a set of PHP scripts
USES= zip
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_PHP= ctype pcre session mysql
WANT_PHP_WEB= yes
SUB_FILES= pkg-message
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} "NOTE:"
@${ECHO_MSG} "This port assumes you have already installed a mysql database, "
@${ECHO_MSG} "and you want to use SQL Buddy to manage the server."
@${ECHO_MSG} "If you are planning to install it/them on this machine later, "
@${ECHO_MSG} "you can find it/them at ${PORTSDIR}/databases."
@${ECHO_MSG} ""
do-install:
@${ECHO_MSG} ""
@${ECHO_MSG} "Installing SQL Buddy under ${WWWDIR}/"
@${MKDIR} ${STAGEDIR}${WWWDIR}
@cd ${WRKSRC} && ${CP} -R * ${STAGEDIR}${WWWDIR}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}
.include <bsd.port.mk>