freebsd-ports/net/ccxstream/Makefile
Mario Sergio Fujikawa Ferreira 3093438e1d o Improve error handling when processing files
o Add OPTIONS SO_KEEPALIVE and TCP_NODELAY
o Uphold hier(7) and install ccxstream under sbin/ instead of bin/
o Bump PORTREVISION
2007-05-26 11:58:32 +00:00

59 lines
1.2 KiB
Makefile

# Ports collection makefile for: ccxstream
# Date created: 2004-08-14
# Whom: Michael Handler <handler@grendel.net>
#
# $FreeBSD$
#
PORTNAME= ccxstream
PORTVERSION= 1.0.15
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= xbplayer
MAINTAINER= ports@FreeBSD.org
COMMENT= Stream media files to XBox Media Center via XBMSP
OPTIONS= SO_KEEPALIVE "Build with SO_KEEPALIVE" ON \
TCP_NODELAY "Build with TCP_NODELAY" OFF
USE_GMAKE= yes
MAKE_ENV= CC="${CC}"
USE_RC_SUBR= ccxstream
PLIST_FILES= \
bin/ccxtest \
sbin/ccxstream
.if !defined(NOPORTDOCS)
PORTDOCS= README ChangeLog TODO xbmsp-xml.txt xbmsp.txt
.endif
do-install:
@${MKDIR} ${PREFIX}/sbin
@${INSTALL_PROGRAM} ${WRKSRC}/ccxstream ${PREFIX}/sbin
@${INSTALL_PROGRAM} ${WRKSRC}/ccxtest ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
.endfor
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.pre.mk>
# enable SO_KEEPALIVE
.if defined(WITH_SO_KEEPALIVE)
CFLAGS+= -DSO_KEEPALIVE
.endif
# enable TCP_NODELAY
.if defined(WITH_TCP_NODELAY)
CFLAGS+= -DTCP_NODELAY
.endif
.include <bsd.port.post.mk>