diff options
author | obrien <obrien@FreeBSD.org> | 2001-03-21 10:27:08 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-03-21 10:27:08 +0800 |
commit | 099ac4b12cfcaa69ed67ae0dbdfe458d40d46380 (patch) | |
tree | c31e3929b21d3612728754e626a2db4ca3a885ed /devel | |
parent | a6943182b4196417d8a1d54352e96e130a87bd12 (diff) | |
download | freebsd-ports-gnome-099ac4b12cfcaa69ed67ae0dbdfe458d40d46380.tar.gz freebsd-ports-gnome-099ac4b12cfcaa69ed67ae0dbdfe458d40d46380.tar.zst freebsd-ports-gnome-099ac4b12cfcaa69ed67ae0dbdfe458d40d46380.zip |
Upgrade to version 4.0.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/stlport/Makefile | 15 | ||||
-rw-r--r-- | devel/stlport/distinfo | 2 | ||||
-rw-r--r-- | devel/stlport/files/patch-aa | 12 |
3 files changed, 7 insertions, 22 deletions
diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile index 7127efdddbb9..b9dd24956595 100644 --- a/devel/stlport/Makefile +++ b/devel/stlport/Makefile @@ -7,20 +7,17 @@ # PORTNAME= stlport -PORTVERSION= 3.01 +PORTVERSION= 4.0 CATEGORIES= devel -MASTER_SITES= http://corp.metabyte.com/~fbp/stl/ \ - ftp://maroon.webmaster.com/pub/STLport/ +MASTER_SITES= http://www.stlport.com/archive/ DISTNAME= STLport-${PORTVERSION} MAINTAINER= obrien@FreeBSD.org -NO_WRKSUBDIR= yes -GNU_CONFIGURE= yes -NO_BUILD= yes - -pre-configure: - ${CHMOD} +x ${WRKSRC}/configure +WRKSRC= ${WRKDIR}/STLport-${PORTVERSION}/src +MAKEFILE= gcc.mak +ALL_TARGET= clean all +USE_GMAKE= yes do-install: ${MKDIR} ${PREFIX}/include/stlport diff --git a/devel/stlport/distinfo b/devel/stlport/distinfo index 1295429a01dd..9cb33eafc7d7 100644 --- a/devel/stlport/distinfo +++ b/devel/stlport/distinfo @@ -1 +1 @@ -MD5 (STLport-3.01.tar.gz) = be39eaad3e86d23a77f4d579f26b7320 +MD5 (STLport-4.0.tar.gz) = 9f46fa470328f55c550b829abbf8611b diff --git a/devel/stlport/files/patch-aa b/devel/stlport/files/patch-aa deleted file mode 100644 index fbe88d7bf6fa..000000000000 --- a/devel/stlport/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- stl_rope.h.orig Sun Feb 8 18:08:40 1998 -+++ stl_rope.h Thu Dec 17 19:37:18 1998 -@@ -776,7 +776,8 @@ - __rope_iterator_base<charT,Alloc>(r.tree_ptr, pos) {} - self& operator= (const self & x) { - if (0 != x.buf_ptr) { -- *this = x; -+ *(static_cast<__rope_iterator_base<charT,Alloc>*>(this)) = x; -+ // bugfix by Kevin Atkinosn (kevina@clark.net) was *this = x; - } else { - current_pos = x.current_pos; - root = x.root; |