aboutsummaryrefslogtreecommitdiff
path: root/sysutils/webmin/Makefile
blob: 54650a7f6f0e6f39df79eece759f1ba8720dbb02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 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=	2
CATEGORIES=	sysutils
MASTER_SITES=	http://webadmin.sourceforge.net/webmin/updates/ \
		http://webadmin.sourceforge.net/webmin/download/
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} ${WEBMIN_MODULES}
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}"

.if defined(WITH_UPDATES)
WEBMIN_MODULES=	net-0.85-1.wbm.gz apache-0.85-1.wbm.gz
.endif

post-extract:
.if defined(WITH_UPDATES)
	if [ "${WEBMIN_MODULES}" != "" ]; then \
		for webmin_module in "${WEBMIN_MODULES}"; do \
			${TAR} xfz ${DISTDIR}/$${webmin_module} -C ${WRKSRC}; \
		done; \
	fi
.endif
	@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/pgsql.sh start@" \
		-e "s@^stop_cmd=.*@stop_cmd=${LOCALBASE}/etc/rc.d/pgsql.sh stop@" \
		${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}
	@${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>