Ticket #3583: Portfile

File Portfile, 1.1 KB (added by benwill@…, 19 years ago)

Portfile

Line 
1# $Id: $
2PortSystem       1.0
3name             py-biggles
4version          1.6.4
5categories       python
6maintainers      benwill@socrates.berkeley.edu
7description      Creates 2D scientific plots
8long_description Biggles is a Python module for the creation of \
9                 publication-quality 2D scientific plots.
10homepage         http://biggles.sourceforge.net/
11master_sites     sourceforge:biggles
12distname         python2-biggles-${version}
13checksums        md5 e07bc9e22d830ada274ea71bc6d12556
14
15depends_lib      lib:libplot.2.2:plotutils \
16                 port:py-numeric
17                 
18configure        {
19                 reinplace "s|/usr/local|${prefix}|g" \
20                        ${worksrcpath}/make.inc
21                 reinplace "s|#NUMERIC_CPPFLAGS|NUMERIC_CPPFLAGS|g" \
22                        ${worksrcpath}/make.inc
23                 reinplace "s|-I\$(PYINCLUDE)|-I\$(PYINCLUDE) \
24                        -I${prefix}/include/python\$(PYVERSION)/Numeric|g" \
25                        ${worksrcpath}/make.inc
26                 reinplace "s|\$(PYPREFIX)/lib|${prefix}/lib|g" \
27                        ${worksrcpath}/make.inc
28                 reinplace "s|\$(BIGGLESDIR)|\$(DESTDIR)\$(BIGGLESDIR)|g" \
29                        ${worksrcpath}/Makefile
30                 reinplace "s|mkdir |mkdir -p |g" \
31                        ${worksrcpath}/Makefile
32}