aboutsummaryrefslogtreecommitdiff
path: root/math/xgobi/Makefile
blob: fdadb371d43f08d742d156391589a76d137b594b (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
# Created by: Tony Maher <tonym@biolateral.com.au>
# $FreeBSD$

PORTNAME=	xgobi
PORTVERSION=	2002.06.20
PORTREVISION=	3
CATEGORIES=	math graphics
MASTER_SITES=	http://public.research.att.com/~stat/xgobi/
DISTNAME=	xgobi
EXTRACT_SUFX=	.sh.gz

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Graphical data visualisation tool

NO_CDROM=	Restrictive copyright (do not sell for profit)

PATCH_WRKSRC=	${WRKDIR}/${PORTNAME}/src
CONFIGURE_WRKSRC=	${PATCH_WRKSRC}
BUILD_WRKSRC=	${PATCH_WRKSRC}
CFLAGS+=	-Wno-return-type

USES=		imake
USE_XORG=	xbitmaps xaw

XFREE86_HTML_MAN=	no
MANCOMPRESSED=	no
MAN1=		xgvis.1 xgobi.1

PROGRAMS=	xgvis xgobi
MANDIR=		${WRKSRC}/manpages

# The distfile is a shar file.  It also does not extract cleanly.
# 3 files extract to current directory so use post-extract to move
# them to proper locations.

do-extract:
	@${MKDIR} ${WRKDIR}
	@for file in ${EXTRACT_ONLY}; do \
	    cd ${WRKDIR} && \
	        ${GZCAT} ${DISTDIR}/$${file} | ${SH} > /dev/null 2>&1; \
	done
	@${MV} ${WRKDIR}/aclocal.m4 ${WRKSRC}
	@${MV} ${WRKDIR}/make.out ${WRKSRC}
	@${MV} ${WRKDIR}/xgobi.html ${MANDIR}

do-install:
.for file in ${PROGRAMS}
	${INSTALL_PROGRAM} ${WRKSRC}/src/${file} ${PREFIX}/bin
	${STRIP_CMD} ${PREFIX}/bin/${file}
	${INSTALL_MAN} ${MANDIR}/${file}.1 ${PREFIX}/man/man1
.endfor
	${INSTALL_DATA} ${WRKSRC}/XGobi.ex ${PREFIX}/lib/X11/app-defaults
.if !defined(NOPORTDOCS)
	 @${MKDIR} ${EXAMPLESDIR}
	 @ cd ${WRKSRC}; \
	   for dir in data_*; do \
		${MKDIR} ${EXAMPLESDIR}/$${dir}; \
		cd ${WRKSRC}/$${dir}; \
		for file in *; do \
			${INSTALL_DATA} $${file} ${EXAMPLESDIR}/$${dir}; \
		done \
	   done
.endif

.include <bsd.port.mk>