2012-08-16 12:11:05 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= poudriere
|
2012-09-11 17:55:32 +02:00
|
|
|
PORTVERSION= 2.1.99.20120911
|
2012-08-16 12:11:05 +02:00
|
|
|
CATEGORIES= ports-mgmt
|
|
|
|
MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/
|
|
|
|
|
2012-09-11 18:51:18 +02:00
|
|
|
# Also maintained by bdrewery@FreeBSD.org
|
2012-08-16 12:11:05 +02:00
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
|
|
COMMENT= Port build and test system
|
|
|
|
|
|
|
|
LICENSE= BSD
|
|
|
|
|
2012-09-11 17:55:32 +02:00
|
|
|
FSL_CHKIN= a766128118
|
2012-08-16 12:11:05 +02:00
|
|
|
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 \
|
2012-09-04 00:10:38 +02:00
|
|
|
share/poudriere/options.sh \
|
2012-08-16 12:11:05 +02:00
|
|
|
|
|
|
|
PLIST_DIRS= share/poudriere \
|
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2012-09-09 01:06:10 +02:00
|
|
|
.if ${PORT_OPTIONS:MZSH}
|
2012-08-16 12:11:05 +02:00
|
|
|
PLIST_FILES+= share/zsh/site-functions/_poudriere
|
|
|
|
PLIST_DIRSTRY+= share/zsh/site-functions
|
|
|
|
PLIST_DIRSTRY+= share/zsh/
|
|
|
|
.endif
|
|
|
|
|
|
|
|
post-install:
|
2012-09-09 01:06:10 +02:00
|
|
|
.if ${PORT_OPTIONS:MZSH}
|
2012-08-16 12:11:05 +02:00
|
|
|
@${MKDIR} ${PREFIX}/share/zsh/site-functions/
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/zsh-completions ${PREFIX}/share/zsh/site-functions/_poudriere
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|