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.
28 lines
635 B
Makefile
28 lines
635 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libfs++
|
|
# Date created: Sep 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libfs++
|
|
PORTVERSION= 0.1.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://bluebat.dnsalias.org/software/libfs++/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= . archive
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ library which provides a file_iterator class
|
|
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL_VER= 13
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|-Wall -g -O2||g'
|
|
|
|
.include <bsd.port.mk>
|