blob: d6f73651edc092e7f58ba0d7597cb0955aad3a67 (
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
|
# New ports collection makefile for: poudriere
# Date created: 2012-01-31
# Whom: Baptiste Daroussin <bapt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= poudriere
PORTVERSION= 1.5.99.20120817
CATEGORIES= ports-mgmt
MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/
MAINTAINER= bapt@FreeBSD.org
COMMENT= Port build and test system
LICENSE= BSD
FSL_CHKIN= d000cd0980
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz?uuid=${FSL_CHKIN}
PKGNAMESUFFIX= -devel
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/pbi.sh \
share/poudriere/jail.sh \
share/poudriere/bulk.sh \
share/poudriere/cron.sh \
share/poudriere/queue.sh \
PLIST_DIRS= share/poudriere \
.include <bsd.port.options.mk>
.if defined(WITH_ZSH)
PLIST_FILES+= share/zsh/site-functions/_poudriere
PLIST_DIRSTRY+= share/zsh/site-functions
PLIST_DIRSTRY+= share/zsh/
.endif
post-patch:
@${FIND} ${WRKSRC} -name "*.orig" -delete
post-install:
.if defined(WITH_ZSH)
@${MKDIR} ${PREFIX}/share/zsh/site-functions/
@${INSTALL_DATA} ${WRKSRC}/zsh-completions ${PREFIX}/share/zsh/site-functions/_poudriere
.endif
.include <bsd.port.mk>
|