blob: 9110f04e307b0dcdde7ea75bfbd9ce8a855a6759 (
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
|
# New ports collection makefile for: auto-admin
# Date created: 2011-11-01
# Whom: Jason Bacon <jwbacon@tds.net>
#
# $FreeBSD$
#
PORTNAME= auto-admin
PORTVERSION= 0.3
CATEGORIES= sysutils
MASTER_SITES= http://acadix.biz/Ports/distfiles/ \
http://personalpages.tds.net/~jwbacon/Ports/distfiles/
MAINTAINER= jwbacon@tds.net
COMMENT= Tools for automating system management
NO_BUILD= yes
MAN1= auto-admin.1 \
auto-amd-nfs-setup.1 \
auto-amd-local-setup.1 \
auto-append-line.1 \
auto-ask.1 \
auto-clean-ports.1 \
auto-disable-service.1 \
auto-enable-compat32.1 \
auto-enable-passwdqc.1 \
auto-enable-procfs.1 \
auto-enable-service.1 \
auto-set-suspend-on-lid.1 \
auto-fastest-mirror.1 \
auto-install-packages.1 \
auto-ipfw-gateway-setup.1 \
auto-kdm3-toggle.1 \
auto-ldap-adduser.1 \
auto-ldap-client-setup.1 \
auto-package-installed.1 \
auto-replace-file.1 \
auto-service-enabled.1 \
auto-update-port-framework.1 \
auto-update-xorg.conf.1 \
auto-xdm-toggle.1
do-install:
${MKDIR} ${PREFIX}/sbin ${DATADIR}
${INSTALL_SCRIPT} ${WRKSRC}/Scripts/* ${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/Data/* ${DATADIR}
${INSTALL_MAN} ${WRKSRC}/Doc/auto-admin.man \
${MANPREFIX}/man/man1/auto-admin.1
for name in ${WRKSRC}/Scripts/*; do \
${INSTALL_MAN} ${WRKSRC}/Doc/auto-admin.man \
${MANPREFIX}/man/man1/`basename $${name}`.1; \
done
.include <bsd.port.mk>
|