1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/net/udpxy/Makefile
Alex Kozlov 3e06b9965f - Update to 1.0.23 [1]
- Convert to new options framework

PR:	ports/170917 [1]
Submitted by:	Denis Zaika <i@doct.org.ua> [1]
2012-09-15 09:38:26 +00:00

49 lines
1.1 KiB
Makefile

# New ports collection makefile for: net/udpxy
# Date created: 2 January 2009
# Whom: Alex Deiter <Alex.Deiter@Gmail.COM>
#
# $FreeBSD$
#
PORTNAME= udpxy
PORTVERSION= 1.0.23
CATEGORIES= net
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${RELEASE_MASCOT}-${PORTVERSION:R}
DISTNAME= ${PORTNAME}.${PORTVERSION}-0-prod
MAINTAINER= alex.deiter@gmail.com
COMMENT= UDP-to-HTTP multicast traffic relay daemon
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-0
USE_RC_SUBR= udpxy
USE_GMAKE= yes
MAKE_JOBS_SAFE= yes
RELEASE_MASCOT= Chipmunk
OPTIONS_SINGLE= CONF
OPTIONS_SINGLE_CONF= RELEASE LEAN DEBUG
RELEASE_DESC= No asserts, no debug symbols, verbose on
LEAN_DESC= No asserts, no debug symbols, verbose off
DEBUG_DESC= Asserts, debug symbols, verbose on
OPTIONS_DEFAULT= RELEASE
PLIST_FILES= sbin/udpxy \
sbin/udpxrec
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/udpxy ${PREFIX}/sbin/
@${LN} -s udpxy ${PREFIX}/sbin/udpxrec
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MRELEASE}
ALL_TARGET=release
.elif ${PORT_OPTIONS:MLEAN}
ALL_TARGET=lean
.elif ${PORT_OPTIONS:MDEBUG}
ALL_TARGET=debug
WITH_DEBUG=yes
.endif
.include <bsd.port.mk>