54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
45 lines
909 B
Makefile
45 lines
909 B
Makefile
# New ports collection makefile for: CommonC++
|
|
# Date created: 25 July 2000
|
|
# Whom: David Sugar <dyfet@gnu.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= commoncpp2
|
|
PORTVERSION= 1.3.21
|
|
PORTEPOCH= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= gnutelephony
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNU project portable class framework for C++
|
|
|
|
USE_GNOME= gnomehack gnometarget
|
|
|
|
.if !defined(WITHOUT_LIBXML2)
|
|
USE_GNOME+= libxml2
|
|
.else
|
|
CONFIGURE_ARGS= --without-libxml2
|
|
.endif
|
|
|
|
USE_GETOPT_LONG= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:15:inc
|
|
USE_GCC= 3.4
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
ac_cv_path_DOXYGEN=no
|
|
INSTALLS_SHLIB= yes
|
|
|
|
INFO= commoncpp2
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-configure:
|
|
@${CP} ${LTMAIN} ${WRKSRC}/autoconf
|
|
|
|
.include <bsd.port.post.mk>
|