1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/sysutils/webmin/Makefile
2001-05-31 11:02:04 +00:00

94 lines
3.8 KiB
Makefile

# New ports collection makefile for: webmin
# Date created: Do 19 Nov 1998 21:13:55 CET
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
# $FreeBSD$
#
PORTNAME= webmin
PORTVERSION= 0.85
PORTREVISION= 8
CATEGORIES= sysutils
MASTER_SITES= http://webadmin.sourceforge.net/webmin/updates/ \
http://webadmin.sourceforge.net/webmin/download/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${WEBMIN_MODULES} ${WEBMIN_SERVER}
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= olgeni@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay
NO_BUILD= yes
USE_PERL5= yes
SCRIPTS_ENV+= WRKDIR="${WRKDIR}"
WEBMIN_MODULES= postgresql-0.85-1.wbm.gz squid-0.85-1.wbm.gz \
useradmin-0.85-1.wbm.gz net-0.85-1.wbm.gz \
apache-0.85-2.wbm.gz quota-0.85-1.wbm.gz \
bind8-0.85-1.wbm.gz mysql-0.85-1.wbm.gz \
shell-0.85-1.wbm.gz man-0.85-1.wbm.gz
WEBMIN_SERVER= miniserv.pl
post-extract:
if [ "${WEBMIN_MODULES}" != "" ]; then \
for webmin_module in ${WEBMIN_MODULES}; do \
${ECHO} "===> Unpacking updated module: $${webmin_module}"; \
${TAR} xfz ${DISTDIR}/$${webmin_module} -C ${WRKSRC}; \
done; \
fi
@${CP} ${DISTDIR}/${WEBMIN_SERVER} ${WRKSRC}
@find ${WRKSRC} -name "*.bak" | xargs ${RM}
post-patch:
${CP} ${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.0 \
${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.1
${CP} ${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.0 \
${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.2
${CP} ${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.0 \
${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.3
${CP} ${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.0 \
${WRKDIR}/webmin-${PORTVERSION}/bind8/config-freebsd-3.4
${CP} ${WRKSRC}/postfix/config ${WRKSRC}/postfix/config.sed
${SED} -e "s@/usr/sbin/postfix@${LOCALBASE}/sbin/postfix@" \
-e "s@/usr/sbin/postconf@${LOCALBASE}/sbin/postconf@" \
-e "s@/etc/postfix/main.cf@${LOCALBASE}/etc/postfix/main.cf@" \
-e "s@/usr/sbin/postalias@${LOCALBASE}/sbin/postalias@" \
-e "s@/usr/sbin/postmap@${LOCALBASE}/sbin/postmap@" \
${WRKSRC}/postfix/config.sed > ${WRKSRC}/postfix/config
${RM} ${WRKSRC}/postfix/config.sed
${CP} ${WRKSRC}/postgresql/config ${WRKSRC}/postgresql/config.sed
${SED} -e "s@^hba_conf=.*@hba_conf=${LOCALBASE}/pgsql/data/pg_hba.conf@" \
-e "s@^login=.*@login=pgsql@" \
-e "s@^pid_file=.*@pid_file=${LOCALBASE}/pgsql/data/postmaster.pid@" \
-e "s@^start_cmd=.*@start_cmd=${LOCALBASE}/etc/rc.d/010.pgsql.sh start@" \
-e "s@^stop_cmd=.*@stop_cmd=${LOCALBASE}/etc/rc.d/010.pgsql.sh stop@" \
-e "s@^psql=.*@psql=${LOCALBASE}/bin/psql@" \
-e "s@^plib=.*@plib=${LOCALBASE}/lib@" \
${WRKSRC}/postgresql/config.sed > ${WRKSRC}/postgresql/config
${RM} ${WRKSRC}/postgresql/config.sed
${CP} ${WRKSRC}/dhcpd/config-freebsd ${WRKSRC}/dhcpd/config-freebsd.sed
${SED} -e "s@^dhcpd_conf=.*@dhcpd_conf=${LOCALBASE}/etc/dhcpd.conf@" \
${WRKSRC}/dhcpd/config-freebsd.sed > ${WRKSRC}/dhcpd/config-freebsd
${RM} ${WRKSRC}/dhcpd/config-freebsd.sed
do-install:
@${MKDIR} ${PREFIX}/lib/webmin
@${CP} -r ${WRKSRC}/* ${PREFIX}/lib/webmin
@cd ${PREFIX}/lib/webmin && find . -name "*.orig" -print \
| xargs ${RM}
@${CP} ${WRKDIR}/webmin.sh ${PREFIX}/etc/rc.d/webmin.sh
@${CHMOD} 554 ${PREFIX}/etc/rc.d/webmin.sh
post-install:
@${CP} ${PLIST} ${TMPPLIST}
@find ${PREFIX}/lib/webmin -type f | ${SED} -e "s@${PREFIX}/@@" | sort >> ${TMPPLIST}
@find ${PREFIX}/lib/webmin -type l | ${SED} -e "s@${PREFIX}/@@" | sort >> ${TMPPLIST}
@find ${PREFIX}/lib/webmin -type d | ${SED} -e "s@${PREFIX}/@@" | ${PERL} -e 'print (join ("\n", reverse map ("\@dirrm " . substr ($$_, 0, -1), <STDIN>)) . "\n");' >> ${TMPPLIST}
@if [ -d ${PREFIX}/etc/webmin ]; then echo | ${PREFIX}/lib/webmin/setup.sh ; fi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>