blob: e10cbde7c9e4149f8239856c75b26099f1c31269 (
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
|
# New ports collection makefile for: portmaster
# Date created: 20 February 2006
# Whom: Doug Barton <dougb@FreeBSD.org>
#
# $FreeBSD$
#
# This port is self contained in the files directory.
#
PORTNAME= portmaster
PORTVERSION= 3.9.1
CATEGORIES= ports-mgmt
MASTER_SITES= http://dougbarton.us/Downloads/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= dougb@FreeBSD.org
COMMENT= Manage your ports without external databases or languages
LICENSE= BSD
OPTIONS= BASH "Install programmable completions for Bash" off \
ZSH "Install programmable completions for zsh" off
PLIST_FILES= sbin/portmaster etc/portmaster.rc.sample
MAN8= portmaster.8
.include <bsd.port.pre.mk>
.if defined(WITH_BASH)
PLIST_FILES+= share/portmaster/bash-completions
PLIST_DIRS+= share/portmaster
.endif
.if defined(WITH_ZSH)
PLIST_FILES+= share/zsh/site-functions/_portmaster
PLIST_DIRSTRY+= share/zsh/site-functions share/zsh
.endif
verify: checksum
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc
do-build:
.for file in portmaster.sh portmaster.rc.sample
${SED} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/${file}.in \
> ${WRKDIR}/${file}
.endfor
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/portmaster.sh ${PREFIX}/sbin/portmaster
${INSTALL_DATA} ${WRKDIR}/portmaster.rc.sample ${PREFIX}/etc
${INSTALL_MAN} ${WRKSRC}/portmaster.8 ${MAN8PREFIX}/man/man8
post-install:
.if defined(WITH_BASH)
${MKDIR} ${PREFIX}/share/portmaster
${INSTALL_DATA} ${WRKSRC}/bash-completions ${PREFIX}/share/portmaster
.endif
.if defined(WITH_ZSH)
${MKDIR} ${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${WRKSRC}/zsh-completions \
${PREFIX}/share/zsh/site-functions/_portmaster
.endif
.include <bsd.port.post.mk>
|