1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/net/ncp/Makefile
Mathieu Arnold 00d52a3e4c Remove useless WRKSRC definitions.
While there, correct DEV_WARNINGS when they occur.

Sponsored by:	Absolight
2016-05-25 15:43:34 +00:00

37 lines
1004 B
Makefile

# Created by: Matthias Teege <matthias@mteege.de>
# $FreeBSD$
PORTNAME= ncp
PORTVERSION= 1.2.4
CATEGORIES= net
MASTER_SITES= http://dl.fefe.de/ http://dl.mteege.de/fefe/
MAINTAINER= matthias@mteege.de
COMMENT= Fast file copy tool for LANs
BUILD_DEPENDS= ${LOCALBASE}/lib/libowfat.a:devel/libowfat
USES= tar:bzip2
PLIST_FILES= bin/ncp bin/npush bin/npoll man/man1/ncp.1.gz man/man1/npush.1.gz
CFLAGS+= -I${LOCALBASE}/include/libowfat -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
post-patch:
@${REINPLACE_CMD} -e 's|^CC=gcc|CC=${CC}|' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's|^CFLAGS=.*|CFLAGS=${CFLAGS}|' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's|^LDFLAGS=.*|LDFLAGS=${LDFLAGS}|' \
${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ncp ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/ncp.1 ${WRKSRC}/npush.1 \
${STAGEDIR}${MANPREFIX}/man/man1
${LN} -s ncp ${STAGEDIR}${PREFIX}/bin/npush
${LN} -s ncp ${STAGEDIR}${PREFIX}/bin/npoll
.include <bsd.port.mk>