freebsd-ports/net/socat/Makefile

51 lines
1 KiB
Makefile
Raw Normal View History

# Created by: ijliao
# $FreeBSD$
PORTNAME= socat
2014-03-10 08:09:34 +01:00
PORTVERSION= 1.7.2.4
CATEGORIES= net ipv6
MASTER_SITES= http://www.dest-unreach.org/socat/download/ \
CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Multipurpose relay and more
LICENSE= GPLv2
USES= compiler tar:bzip2
GNU_CONFIGURE= yes
USE_RC_SUBR= socat
USE_OPENSSL= yes
PORTSCOUT= skipv:2.0.0-b2
2013-10-23 15:50:35 +02:00
PLIST_FILES= bin/filan bin/procan bin/socat man/man1/socat.1.gz
PORTDOCS= EXAMPLES README SECURITY FAQ
OPTIONS_DEFINE= DOCS
.include <bsd.port.pre.mk>
.if defined(WITH_OPENSSL_PORT)
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.endif
.if ${COMPILER_TYPE} == "clang"
CFLAGS+= -Wno-unused-comparison
.endif
do-install:
.for f in filan procan socat
2013-10-23 15:50:35 +02:00
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
.endfor
2013-10-23 15:50:35 +02:00
${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
2014-03-18 15:26:57 +01:00
@${MKDIR} ${STAGEDIR}${DOCSDIR}
2013-10-23 15:50:35 +02:00
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.if ${ARCH} == "arm"
BROKEN= Does not configure on arm
.endif
.include <bsd.port.post.mk>