1998-03-27 11:31:48 +01:00
|
|
|
# New ports collection makefile for: teapot
|
|
|
|
# Date created: 7 January 1998
|
|
|
|
# Whom: Andrey Zakhvatov
|
|
|
|
#
|
1999-08-25 07:28:01 +02:00
|
|
|
# $FreeBSD$
|
1998-03-27 11:31:48 +01:00
|
|
|
#
|
|
|
|
|
2000-04-09 00:04:57 +02:00
|
|
|
PORTNAME= teapot
|
2002-05-22 16:34:40 +02:00
|
|
|
PORTVERSION= 1.05
|
1998-08-08 00:17:55 +02:00
|
|
|
CATEGORIES= deskutils
|
2000-11-01 13:47:59 +01:00
|
|
|
MASTER_SITES= http://www.moria.de/~michael/teapot/
|
1998-03-27 11:31:48 +01:00
|
|
|
|
2000-03-29 09:16:59 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
1998-03-27 11:31:48 +01:00
|
|
|
|
2001-11-23 18:34:53 +01:00
|
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I./.curses.h -DNO_POSIX_SOURCE" \
|
|
|
|
LDFLAGS="" LIBS="-lcurses -mytinfo -lm" MAKEDEPEND=""
|
2000-11-01 13:47:59 +01:00
|
|
|
ALL_TARGET= teapot
|
1998-03-27 11:31:48 +01:00
|
|
|
MAN1= teapot.1
|
|
|
|
|
2000-11-01 13:47:59 +01:00
|
|
|
EXAMPLES= examples/asqrt examples/asqrt.README examples/blink \
|
|
|
|
examples/counter examples/counter.README examples/life \
|
|
|
|
examples/life.README examples/sqrt examples/sqrt.README
|
2001-03-17 07:08:49 +01:00
|
|
|
PORTDOCS= doc/teapot.doc doc/teapot.html doc/teapot.ps
|
2000-11-01 13:47:59 +01:00
|
|
|
|
2001-11-23 18:34:53 +01:00
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}
|
|
|
|
|
2000-11-01 13:47:59 +01:00
|
|
|
post-build:
|
2001-11-23 18:34:53 +01:00
|
|
|
@cd ${WRKSRC}/doc && ${MAKE} teapot.doc teapot.html teapot.ps
|
2000-11-01 13:47:59 +01:00
|
|
|
|
1998-03-27 11:31:48 +01:00
|
|
|
do-install:
|
2000-11-01 13:47:59 +01:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/teapot ${PREFIX}/bin
|
2001-03-17 07:08:49 +01:00
|
|
|
${INSTALL_MAN} ${WRKSRC}/teapot.1.en ${MANPREFIX}/man/man1/teapot.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
2001-11-23 18:34:53 +01:00
|
|
|
@${MKDIR} ${EXAMPLESDIR}
|
2000-11-01 13:47:59 +01:00
|
|
|
.for file in ${EXAMPLES}
|
2001-11-23 18:34:53 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
|
1998-03-27 11:31:48 +01:00
|
|
|
.endfor
|
2001-11-23 18:34:53 +01:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
2000-11-01 13:47:59 +01:00
|
|
|
.for file in ${PORTDOCS}
|
2001-11-23 18:34:53 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
1998-03-27 11:31:48 +01:00
|
|
|
.endfor
|
1999-05-03 04:11:19 +02:00
|
|
|
.endif
|
1998-03-27 11:31:48 +01:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|