summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-03-21 02:27:08 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-03-21 02:27:08 +0000
commitf2866c9b08ba9afbea22a0f837debc6bd089a6bf (patch)
treedb23f6a92ef1e79ff0771cb3293a15ab84d5db66 /devel
parentfix WWW: formattin' (diff)
Upgrade to version 4.0.
Notes
Notes: svn path=/head/; revision=40135
Diffstat (limited to 'devel')
-rw-r--r--devel/stlport/Makefile15
-rw-r--r--devel/stlport/distinfo2
-rw-r--r--devel/stlport/files/patch-aa12
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;