freebsd-ports/games/biorythm/Makefile
Mathieu Arnold 4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00

38 lines
1014 B
Makefile

# Created by: Andrey Zakhvatov
# $FreeBSD$
PORTNAME= biorythm
PORTVERSION= 1.1.4
CATEGORIES= games
MASTER_SITES= http://shh.thathost.com/pub-unix/files/
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple biorhythm calculation program
LIB_DEPENDS= libshhmsg.so:devel/libshhmsg \
libshhopt.so:devel/libshhopt
PORTDOCS= ChangeLog README
PLIST_FILES= bin/${PORTNAME} man/man6/${PORTNAME}.6.gz
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e '/VERSION/s|[[:space:]]"$$|\\n"| ; \
/COMPILED_DATE/d' ${WRKSRC}/biorythm.c
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -I. -I${LOCALBASE}/include \
-DVERSION=\"${PORTVERSION}\" -D_ANSI_SOURCE *.c \
-o ${PORTNAME} -L${LOCALBASE}/lib -lshhmsg -lshhopt -lm
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.6 ${STAGEDIR}${MAN6PREFIX}/man/man6
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ChangeLog README
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>