mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
35 lines
777 B
Makefile
35 lines
777 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: stlport
|
|
# Date Created: 2 December 1998
|
|
# Whom: Josh Gilliam <josh@quick.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= stlport
|
|
PORTVERSION= 3.01
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://corp.metabyte.com/~fbp/stl/ \
|
|
ftp://maroon.webmaster.com/pub/STLport/
|
|
DISTNAME= STLport-${PORTVERSION}
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
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>
|