if you need to connect to an old MySQL database (< 5.5) you have to set $cfg['MysqlMinVersion'] = 50015; in your config file.
44 lines
1002 B
Makefile
44 lines
1002 B
Makefile
# $OpenBSD: Makefile,v 1.123 2016/03/04 23:10:32 giovanni Exp $
|
|
|
|
COMMENT= tool to handle the administration of MySQL over the web
|
|
|
|
V= 4.5.5.1
|
|
|
|
PKGNAME= phpMyAdmin-$V
|
|
DISTNAME= phpMyAdmin-$V-all-languages
|
|
CATEGORIES= www
|
|
HOMEPAGE= http://www.phpmyadmin.net/
|
|
|
|
PORTROACH= site:https://www.phpmyadmin.net/files/
|
|
|
|
MAINTAINER= Giovanni Bechis <giovanni@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= http://files.phpmyadmin.net/phpMyAdmin/${V}/
|
|
|
|
NO_BUILD= Yes
|
|
NO_TEST= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= ${VARBASE}/www
|
|
INSTDIR= ${PREFIX}/phpMyAdmin
|
|
SUBST_VARS= INSTDIR V
|
|
|
|
MODULES= lang/php
|
|
RUN_DEPENDS= lang/php/${MODPHP_VERSION},-mysqli \
|
|
lang/php/${MODPHP_VERSION},-mcrypt \
|
|
lang/php/${MODPHP_VERSION},-gd
|
|
|
|
post-extract:
|
|
${SUBST_CMD} -m 0644 -c ${FILESDIR}/phpMyAdmin-httpd.conf \
|
|
${WRKSRC}/examples/phpMyAdmin-httpd.conf
|
|
|
|
do-install:
|
|
@find ${WRKSRC} -type f -name "*.orig" -exec rm -f {} \;
|
|
${INSTALL_DATA_DIR} ${INSTDIR}/
|
|
cd ${WRKSRC}; pax -rw ./ ${INSTDIR}/
|
|
|
|
.include <bsd.port.mk>
|