freebsd-ports/devel/libstocks/Makefile
Mikhail Teterin dd5a61a300 My first PERL -> REINPLACE_CMD conversion. Make sure not to leave anything
behind by explicitly giving "" to -i -- why is that not a default, I wonder.
2002-06-21 21:52:07 +00:00

38 lines
831 B
Makefile

# New ports collection makefile for: libstocks
# Date created: this 7th day of January, 2002
# Whom: Mikhail Teterin
#
# $FreeBSD$
#
PORTNAME= libstocks
PORTVERSION= 0.5.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= mi@aldan.algebra.com
USE_REINPLACE= yes
REINPLACE_ARGS= -i ""
post-patch:
${REINPLACE_CMD} -e 's/<malloc.h>/<stdlib.h>/' \
-e 's/__UNIX__/__unix__/' \
$$(${GREP} --mmap -El '<malloc.h>|__UNIX__' \
${WRKSRC}/lib/*.c); \
do-build do-install:
.for d in lib client
cd ${WRKSRC}/$d && ${ENV} ${MAKE_ENV} ${MAKE} ${MAKEFLAGS} -j2 \
-f ${FILESDIR}/Makefile.$d ${.TARGET:S/do-//}
.endfor
.ifndef NOPORTDOCS
post-install:
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>