diff options
author | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-18 03:09:05 +0000 |
---|---|---|
committer | Justin M. Seger <jseger@FreeBSD.org> | 1998-12-18 03:09:05 +0000 |
commit | ee8e25af3e45dba924ed05c7b2f13c886f9c2d69 (patch) | |
tree | 11c40c9e80925ecd07595f3305c7bc898e7e4019 /devel/stlport/Makefile | |
parent | 986552f488852bca11b7faa5f707a20fe5c00ed0 (diff) | |
download | ports-ee8e25af3e45dba924ed05c7b2f13c886f9c2d69.tar.gz ports-ee8e25af3e45dba924ed05c7b2f13c886f9c2d69.zip |
Notes
Diffstat (limited to 'devel/stlport/Makefile')
-rw-r--r-- | devel/stlport/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile new file mode 100644 index 000000000000..14a468505a80 --- /dev/null +++ b/devel/stlport/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: stlport +# Version required: 3.01 +# Date Created: 2 December 1998 +# Whom: Josh Gilliam <josh@quick.net> +# +# $Id$ +# + +DISTNAME= STLport-3.01 +PKGNAME= stlport-3.01 +CATEGORIES= devel +MASTER_SITES= http://corp.metabyte.com/~fbp/stl/ \ + ftp://maroon.webmaster.com/pub/STLport/ + +MAINTAINER= josh@quick.net + +NO_WRKSUBDIR= yes +GNU_CONFIGURE= yes +NO_BUILD= yes + +pre-configure: + chmod +x ${WRKSRC}/configure + +do-install: + ${MKDIR} ${PREFIX}/include/stlport + +.for include in *.h algorith algorithm deque functional hash_map hash_set \ +iterator list map memory numeric queue rope set slist stack utility vector \ +xmemory xutility + ${INSTALL_DATA} ${WRKSRC}/${include} ${PREFIX}/include/stlport +.endfor + +.include <bsd.port.mk> |