blob: 7023a8c3d2a4a7c920acc0751af609c188971758 (
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: 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= 2.27
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= dougb@FreeBSD.org
COMMENT= Manage your ports without external databases or languages
OPTIONS= BASH "Install programmable completions for Bash" off \
ZSH "Install programmable completions for zsh" off
NO_BUILD= yes
SUB_FILES= portmaster.sh
PLIST_FILES= sbin/portmaster
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
.endif
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/portmaster.sh ${PREFIX}/sbin/portmaster
${INSTALL_MAN} ${FILESDIR}/portmaster.8 ${MAN8PREFIX}/man/man8
post-install:
.if defined(WITH_BASH)
${MKDIR} ${PREFIX}/share/portmaster
${INSTALL_DATA} ${FILESDIR}/bash-completions ${PREFIX}/share/portmaster
.endif
.if defined(WITH_ZSH)
${MKDIR} ${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${FILESDIR}/zsh-completions \
${PREFIX}/share/zsh/site-functions/_portmaster
.endif
.include <bsd.port.post.mk>
|