1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/net/haproxy-devel/Makefile
Frederic Culot 0ab7b5eefe - Update to 1.5-dev6
PR:		ports/156276
Submitted by:	Ross West <freebsd AT linepoint.com> (maintainer)
2011-04-08 15:14:17 +00:00

59 lines
1.4 KiB
Makefile

# New ports collection makefile for: haproxy-devel
# Date created: Thu May 3 16:30:19 WEST 2007
# Whom: Hugo Saro <hugo@barafranca.com>
#
# $FreeBSD$
#
PORTNAME= haproxy
DISTVERSION= 1.5-dev6
CATEGORIES= net
MASTER_SITES= http://haproxy.1wt.eu/download/1.5/src/devel/
PKGNAMESUFFIX= -devel
MAINTAINER= freebsd@linepoint.com
COMMENT= The Reliable, High Performance TCP/HTTP Load Balancer
LICENSE_COMB= multi
LICENSE= GPLv2 LGPL21
CONFLICTS= haproxy-[1234567890]\*
USE_RC_SUBR= haproxy
USE_GMAKE= YES
SUB_FILES= pkg-message
MAN1= haproxy.1
OPTIONS= PCRE "Use PCRE regex library" On\
STATIC_PCRE "Use static PCRE regex library" Off
.include <bsd.port.options.mk>
MAKE_ARGS= TARGET=freebsd DEFINE=-DFREEBSD_PORTS
.if defined(WITH_PCRE)
LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre
MAKE_ARGS+= "USE_PCRE=1"
.endif
.if defined(WITH_STATIC_PCRE)
LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre
MAKE_ARGS+= "USE_STATIC_PCRE=1"
.endif
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/haproxy ${PREFIX}/sbin/
@${INSTALL_MAN} ${WRKSRC}/doc/haproxy.1 ${MAN1PREFIX}/man/man1
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${DOCSDIR})
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>