aboutsummaryrefslogtreecommitdiff
path: root/math/calctool/Makefile
blob: 5a7d86d90516e6fbb695f1b205018d09e958b0a6 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# New ports collection makefile for:	calctool-2.4pl13
# Date created:				2 Dec 1996
# Whom:					nsayer@quack.kfu.com
#
# $FreeBSD$
#

PORTNAME=	calctool
PORTVERSION=	2.4.13
PORTREVISION=	3
CATEGORIES=	math
MASTER_SITES=	${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=	nsayer
DISTNAME=	calctool-2.4pl13

MAINTAINER=	stas@FreeBSD.org
COMMENT=	A multi-GUI (terminal, X, XView) calculator program

USE_LDCONFIG=	yes

OPTIONS=	X11	"Build X11 version of calctool" on \
		TTY	"Build tty version of calctool" on \
		XVIEW	"Build tty version of calctool" off

MAN1=		calctool.1

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_X11)
USE_XLIB=	yes
BINARIES+=	xcalctool
PLIST_SUB+=	X11=""
.else
PLIST_SUB+=	X11="@comment "
.endif

.if !defined(WITHOUT_TTY)
BINARIES+=	tty_calctool
PLIST_SUB+=	TTY=""
.else
PLIST_SUB+=	TTY="@comment "
.endif

.if defined(WITH_XVIEW)
BINARIES+=	xv_calctool
LIB_DEPENDS+=	xview.3:${PORTSDIR}/x11-toolkits/xview
PLIST_SUB+=	XVIEW=""
.else
PLIST_SUB+=	XVIEW="@comment "
.endif

.if ${ARCH} == "sparc64"
FPIC=	-fPIC
.else
FPIC=	-fpic
.endif

post-patch:
	@${REINPLACE_CMD}	-e "s#%%FPIC%%#${FPIC}#g" \
				-e "s#%%X11BASE%%#${X11BASE}#g" \
				-e "s#%%BINARIES%%#${BINARIES}#g" \
				-e "s#%%DATADIR%%#${DATADIR}#g" \
				${WRKSRC}/Makefile

do-install:
	${MKDIR} ${DATADIR}
	${INSTALL_PROGRAM} ${WRKSRC}/libcalctool.so.1 ${PREFIX}/lib
	@(cd ${PREFIX}/lib; ${LN} -sf libcalctool.so.1 libcalctool.so)
.for BIN in ${BINARIES}
	${INSTALL_PROGRAM} ${WRKSRC}/${BIN} ${PREFIX}/bin
.endfor
	${INSTALL_MAN} ${WRKSRC}/calctool.1 ${PREFIX}/man/man1
	${INSTALL_DATA} ${WRKSRC}/calctool.help ${DATADIR}

.include <bsd.port.post.mk>