28 lines
576 B
Makefile
28 lines
576 B
Makefile
# Created by: spam@rm-rf.kiev.ua
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= phpminiadmin
|
|
DISTVERSION= 1.5.091221
|
|
CATEGORIES= databases www
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ak@FreeBSD.org
|
|
COMMENT= Lightweight alternative to phpMyAdmin
|
|
|
|
USE_ZIP= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= ${WWWDIR_REL}/phpminiadmin.php
|
|
PLIST_DIRS= ${WWWDIR_REL}
|
|
|
|
.if !defined(WITHOUT_PHP_DEPENDS)
|
|
USE_PHP= mysql session pcre
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/phpminiadmin.php ${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|