aboutsummaryrefslogtreecommitdiff
path: root/net/datapipe/Makefile
blob: c97bcf92b519c006dbf4c1d8b865ad3500301e6c (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
# New ports collection makefile for:	datapipe
# Date created:		04 January 2000
# Whom:			Daniel Baker <dbaker@FreeBSD.org> <dbaker@cuckoo.com>
#
# $FreeBSD$
#

PORTNAME=	datapipe
PORTVERSION=	1.0
PORTREVISION=	1
CATEGORIES=	net
MASTER_SITES=	ftp://ftp.distributed.net/pub/dcti/unsupported/ \
		http://http.distributed.net/pub/dcti/unsupported/

MAINTAINER=	roam@FreeBSD.org
COMMENT=	Bind a local port and connect it to a remote socket

PLIST_FILES=	bin/datapipe

OPTIONS=	REUSEADDR    "Reuse the listening socket address"  on \
		NOFORK       "Do not fork and background" off

.include <bsd.port.pre.mk>

.if defined(WITH_REUSEADDR)
CFLAGS+=	-DDATAPIPE_REUSEADDR
.endif

.if defined(WITH_NOFORK)
CFLAGS+=	-DDATAPIPE_NOFORK
PKGNAMESUFFIX+=-nofork
.endif

do-build:
	${CC} ${CFLAGS} -o ${WRKDIR}/${DISTNAME}/datapipe ${WRKDIR}/${DISTNAME}/datapipe.c

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/datapipe ${PREFIX}/bin

.include <bsd.port.post.mk>