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.
39 lines
939 B
Makefile
39 lines
939 B
Makefile
# New ports collection makefile for: vdkbuilder
|
|
# Date created: 29 January 2000
|
|
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vdkbuilder
|
|
PORTVERSION= 2.4.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}2-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A general ide tool for GTK+/VDK
|
|
|
|
LIB_DEPENDS= vdk.6:${PORTSDIR}/x11-toolkits/vdk
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnometarget gtk20
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --enable-opt=no
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= vdkb2.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|cflag="-s"|cflag="$$CXXFLAGS"|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e \
|
|
's|: install-IconsDATA|:|g' ${WRKSRC}/data/res/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|