1 | # $Id: $ |
---|
2 | PortSystem 1.0 |
---|
3 | name py-biggles |
---|
4 | version 1.6.4 |
---|
5 | categories python |
---|
6 | maintainers benwill@socrates.berkeley.edu |
---|
7 | description Creates 2D scientific plots |
---|
8 | long_description Biggles is a Python module for the creation of \ |
---|
9 | publication-quality 2D scientific plots. |
---|
10 | homepage http://biggles.sourceforge.net/ |
---|
11 | master_sites sourceforge:biggles |
---|
12 | distname python2-biggles-${version} |
---|
13 | checksums md5 e07bc9e22d830ada274ea71bc6d12556 |
---|
14 | |
---|
15 | depends_lib lib:libplot.2.2:plotutils \ |
---|
16 | port:py-numeric |
---|
17 | |
---|
18 | configure { |
---|
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 | } |
---|