aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/ruby-pgplot/Makefile
blob: adc09502b3fe88b83a7ccbfb2727ff25439d0251 (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
# New ports collection makefile for:    Ruby/PGPLOT
# Date created:     26 June 2001
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   pgplot
PORTVERSION=    0.1.3
PORTREVISION=   1
CATEGORIES= graphics ruby
MASTER_SITES=   ${MASTER_SITE_RUBYFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX=  ${RUBY_PKGNAMEPREFIX}
DISTNAME=   rb_${PORTNAME}-${PORTVERSION}
DIST_SUBDIR=    ruby

MAINTAINER= ports@FreeBSD.org
COMMENT=    A Ruby interface to PGPLOT graphics library

LIB_DEPENDS=    pgplot.5:${PORTSDIR}/graphics/pgplot
BUILD_DEPENDS=  ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray
RUN_DEPENDS=    ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray

USE_FORTRAN=    yes
USE_RUBY=   yes
USE_RUBY_EXTCONF=   yes

CONFIGURE_ARGS= --with-x11-dir="${X11BASE}" --with-gfortranlib="gfortran -L`${CAT} ${WRKSRC}/LIBDIR`/../../.."
INSTALL_TARGET= site-install

DOCS_EN=    FuncUsage   README.en
DOCS_JA=    README.ja
EXAMPLES_EN=    pgdemo*.rb  test/*.rb

pre-configure:
    ${DIRNAME} `${FC} -print-libgcc-file-name` > ${WRKSRC}/LIBDIR

post-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${RUBY_MODEXAMPLESDIR}
.for f in ${EXAMPLES_EN}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
.endfor
    ${MKDIR} ${RUBY_MODDOCDIR}/ja
.for f in ${DOCS_EN}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.for f in ${DOCS_JA}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
.endfor
.endif

.include <bsd.port.mk>