1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/net/queso/Makefile
Martin Wilke 3a8822fad1 - Update MASTER_SITES
- Add LICENSE
- Support CFLAGS properly
- Support STRIP properly

PR:		177554
Submitted by:	ports fury
Approved by:	portmgr
2013-04-03 06:24:06 +00:00

38 lines
868 B
Makefile

# Created by: Wu Ching-hong <woju@freebsd.ee.ntu.edu.tw>
# and David O'Brien (obrien@NUXI.com)
# $FreeBSD$
PORTNAME= queso
PORTVERSION= 980922
PORTREVISION= 2
CATEGORIES= net security
MASTER_SITES= PACKETSTORM/UNIX/scanners
MAINTAINER= ports@FreeBSD.org
COMMENT= Determine the remote OS using simple TCP packets
LICENSE= GPLv2
OPTIONS_DEFINE= DOCS
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e \
's|-O2 -pipe|| ; \
s|^LDFLAGS|#LDFLAGS|' ${WRKSRC}/Makefile.in
@${LN} -sf queso.conf ${WRKSRC}/queso.conf.sample
do-install:
(cd ${WRKSRC} && ${INSTALL_PROGRAM} queso ${PREFIX}/sbin)
(cd ${WRKSRC} && ${INSTALL_DATA} queso.conf.sample ${PREFIX}/etc)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} Documentation.txt ${DOCSDIR})
.endif
.include <bsd.port.mk>