1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

upgrade to 0.71

This commit is contained in:
Ying-Chieh Liao 2005-02-03 07:07:51 +00:00
parent f33f352831
commit 85ce80ceb3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=127958
4 changed files with 22 additions and 23 deletions

View File

@ -7,8 +7,8 @@
#
PORTNAME= matplotlib
PORTVERSION= 0.60.2
PORTREVISION= 1
PORTVERSION= 0.71
PORTREVISION= 0
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -27,8 +27,6 @@ RUN_DEPENDS= ${PYNUMERIC} \
BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT}
.endif
BROKEN= Missing dependency
USE_PYTHON= 2.2+
USE_PYDISTUTILS= yes
USE_GNOME= gtk20 pygtk2

View File

@ -1,2 +1,2 @@
MD5 (matplotlib-0.60.2.tar.gz) = e4d28311bd5457039a8ff7d26028c6d5
SIZE (matplotlib-0.60.2.tar.gz) = 1533161
MD5 (matplotlib-0.71.tar.gz) = 286bd4ad537fd9566214e39395a3cb50
SIZE (matplotlib-0.71.tar.gz) = 2089317

View File

@ -1,11 +1,11 @@
--- setup.py.orig Wed Aug 4 11:22:03 2004
+++ setup.py Wed Aug 4 11:22:48 2004
@@ -66,7 +66,7 @@
--- setup.py.orig Sat Jan 22 02:42:00 2005
+++ setup.py Thu Jan 27 17:49:21 2005
@@ -77,7 +77,7 @@
data.extend(glob.glob('images/*.ppm'))
data.append('.matplotlibrc')
-data_files=[('share/matplotlib', data),]
+data_files=[('share/py-matplotlib', data),]
cxx = glob.glob('CXX/*.cxx')
cxx.extend(glob.glob('CXX/*.c'))
# Figure out which array packages to provide binary support for
# and define the NUMERIX value: Numeric, numarray, or both.

View File

@ -1,19 +1,20 @@
--- setupext.py.orig Fri Jul 9 19:51:16 2004
+++ setupext.py Wed Aug 4 10:57:03 2004
@@ -37,6 +37,7 @@
--- setupext.py.orig Thu Jan 27 17:47:41 2005
+++ setupext.py Thu Jan 27 17:49:08 2005
@@ -37,6 +37,8 @@
'linux' : ['/usr/local', '/usr',],
'darwin' : [os.getenv('MPLIB_BASE') or '/usr/local', '/usr', '/sw'],
'freebsd4' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
+ 'freebsd5' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
'darwin' : ['/usr/local', '/usr', '/sw', '/usr/X11R6'],
'freebsd4' : ['/usr/local', '/usr'],
+ 'freebsd5' : ['/usr/local', '/usr'],
+ 'freebsd6' : ['/usr/local', '/usr'],
'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
}
@@ -220,7 +221,7 @@
else:
module.include_dirs.extend([o.tcl_inc, o.tk_inc])
module.library_dirs.extend([o.tcl_lib, o.tk_lib])
- module.libraries.extend(['tk'+o.tkv, 'tcl'+o.tkv])
+ module.libraries.extend(['tk84', 'tcl84'])
@@ -302,7 +304,7 @@
o = find_tcltk()
module.include_dirs.extend([o.tcl_inc, o.tk_inc])
module.library_dirs.extend([o.tcl_lib, o.tk_lib])
- module.libraries.extend(['tk'+o.tkv, 'tcl'+o.tkv])
+ module.libraries.extend(['tk84', 'tcl84'])
def add_windowing_flags(module):