blob: e3a8955148b0d66d49b07e5437282dc91f5b6431 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# New ports collection makefile for: teapot
# Date created: 7 January 1998
# Whom: Andrey Zakhvatov
#
# $FreeBSD$
#
PORTNAME= teapot
PORTVERSION= 1.09
CATEGORIES= deskutils
MASTER_SITES= http://www.moria.de/~michael/teapot/ \
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
MAINTAINER= shaun@FreeBSD.org
COMMENT= Full-screen curses based spread sheet program
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="" LIBS="-lcurses -lm" \
MAKEDEPEND=""
ALL_TARGET= teapot
MAN1= teapot.1
EXAMPLES= examples/asqrt examples/asqrt.README examples/blink \
examples/counter examples/counter.README examples/life \
examples/life.README examples/graphtest.sh examples/sqrt \
examples/sqrt.README
MYPORTDOCS= doc/teapot.doc doc/teapot.html doc/teapot.ps
post-build:
@cd ${WRKSRC}/doc && ${MAKE} teapot.doc teapot.html teapot.ps
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/teapot ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/teapot.1.en ${MANPREFIX}/man/man1/teapot.1
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR}
.for file in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
.endfor
@${MKDIR} ${DOCSDIR}
.for file in ${MYPORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|