mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
2b9eb4083f
- Convert USE_BZIP2 to USES - Support STAGEDIR * Make PORTEXAMPLES unconditional to stage - Unmute INSTALL_SCRIPT and INSTALL_DATA
36 lines
726 B
Makefile
36 lines
726 B
Makefile
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mysqlviz
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= MySQL and SQLite Database Visualisation Tool
|
|
|
|
LICENSE= GPLv3
|
|
|
|
NO_BUILD= yes
|
|
USES= tar:bzip2
|
|
USE_PHP= yes
|
|
WANT_PHP_CLI= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
PORTEXAMPLES= eg.png eg.sql sqlite-eg.sql
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e 's|/usr/bin/php|${LOCALBASE}/bin/php|' \
|
|
${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|