freebsd-ports/databases/mysqlman/Makefile
Philip M. Gollucci 956dc1cc7f - Set EXPIRATION_DATE to an actual date (9.0 is behind, so guess 2 months from now).
- This can be changed later as needed, if at all, either way we won't remove them
  until after 9.0 is released.

With Hat:   apache@
Reported by:    dvl via freshports
2011-09-07 03:00:51 +00:00

68 lines
1.8 KiB
Makefile

# New ports collection makefile for: mysqlman
# Date created: 06.06.2002
# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
#
# $FreeBSD$
PORTNAME= mysqlman
PORTVERSION= 1.09
PORTREVISION= 2
CATEGORIES= databases www
MASTER_SITES= http://www.gossamer-threads.com/products/source/
DISTNAME= ${PORTNAME}
MAINTAINER= janos.mohacsi@bsd.hu
COMMENT= MySQLMan is a web based MySQL database manager written in perl
RESTRICTED= not redistributable, license agreement required
DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now
EXPIRATION_DATE= 2011-11-01
USE_PERL5= yes
USE_APACHE= 13
USE_MYSQL= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
#install dir of mysqlman
MYMANDIR= www/mysqlman-${PORTVERSION}
#do the substitution according to the install place
PLIST_SUB+= MYMANDIR=${MYMANDIR}
#FILES to patch
f="mysql.cgi"
#Web user
WEBUSER?= ${WWWOWN}:${WWWGRP}
.include <bsd.port.pre.mk>
do-configure:
@${MV} ${WRKSRC}/${f} ${WRKSRC}/${f}.bak && ${SED} <${WRKSRC}/${f}.bak \
s+%%PATHPERLBIN%%+${PERL5}+g >${WRKSRC}/${f}
do-install:
@${FIND} ${WRKSRC} ! \( -path "*/${f}*" -or -path "*/mysql.cfg" \) | ${XARGS} -n1 ${SH} -c 'if ${TEST} -d $$0; \
then ${MKDIR} ${PREFIX}/${MYMANDIR}$${0#${WRKSRC}}; \
else ${INSTALL_DATA} $$0 ${PREFIX}/${MYMANDIR}$${0#${WRKSRC}}; fi'
@${INSTALL_SCRIPT} ${WRKSRC}/mysql.cgi ${PREFIX}/${MYMANDIR}
@if [ -L ${PREFIX}/www/mysqlman ]; then \
${ECHO} "Updating ${PREFIX}/www/mysqlman symbolic link" ; \
${RM} ${PREFIX}/www/mysqlman ; \
fi
${LN} -s ${PREFIX}/${MYMANDIR} ${PREFIX}/www/mysqlman
post-install:
@${CHOWN} ${WEBUSER} ${PREFIX}/${MYMANDIR}/templates/compiled
@${INSTALL_DATA} ${WRKSRC}/mysql.cfg ${PREFIX}/${MYMANDIR}/mysql.cfg.dist
@${ECHO} ""
@${ECHO} "Sample config installed at \
${PREFIX}/${MYMANDIR}/mysql.cfg.dist"
@${ECHO} "Modify to your needs!"
@${ECHO} ""
.include <bsd.port.post.mk>