mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
32 lines
825 B
Makefile
32 lines
825 B
Makefile
# New ports collection makefile for: sdts++
|
|
# Date created: 08 Feb 2000
|
|
# Whom: erik@habatech.no
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sdts++
|
|
PORTVERSION= 1.5.1
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://thor-f5.er.usgs.gov/sdts/sdtsxx/ \
|
|
http://lychnobite.org/sdts/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ library for SDTS related development
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libboost_thread.so:${PORTSDIR}/devel/boost
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libboost_thread.so:${PORTSDIR}/devel/boost
|
|
|
|
USE_LIBTOOL_VER= 13
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500035
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|