aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt/poudriere-devel/Makefile
blob: 082bffa86500f2dc1c8dd605774e60a8933a42b1 (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
# $FreeBSD$

PORTNAME=   poudriere
PORTVERSION=    2.2.99.20121017
CATEGORIES= ports-mgmt
MASTER_SITES=   http://fossil.etoilebsd.net/poudriere/tarball/
PKGNAMESUFFIX=  -devel
DISTFILES=  ${PORTNAME}-${PORTVERSION}.tar.gz?uuid=${FSL_CHKIN}

# Also maintained by bdrewery@FreeBSD.org
MAINTAINER= bapt@FreeBSD.org
COMMENT=    Port build and test system

LICENSE=    BSD

FSL_CHKIN=  98a87680a1

NO_BUILD=   yes
MANCOMPRESSED=  yes
MAN8=   poudriere.8

CONFLICTS_INSTALL=  poudriere-[0-9]*

OPTIONS_DEFINE= ZSH
ZSH_DESC=   Install zsh completion

PLIST_FILES=    etc/poudriere.conf.sample \
        bin/poudriere \
        share/poudriere/clean.sh \
        share/poudriere/common.sh \
        share/poudriere/test_ports.sh \
        share/poudriere/ports.sh \
        share/poudriere/jail.sh \
        share/poudriere/bulk.sh \
        share/poudriere/cron.sh \
        share/poudriere/queue.sh \
        share/poudriere/options.sh \

PLIST_DIRS= share/poudriere

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MZSH}
PLIST_FILES+=   share/zsh/site-functions/_poudriere
PLIST_DIRSTRY+= share/zsh/site-functions
PLIST_DIRSTRY+= share/zsh/
.endif

post-install:
.if ${PORT_OPTIONS:MZSH}
    @${MKDIR} ${PREFIX}/share/zsh/site-functions/
    @${INSTALL_DATA} ${WRKSRC}/zsh-completions ${PREFIX}/share/zsh/site-functions/_poudriere
.endif

.include <bsd.port.mk>