mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
60b59b167c
-Using --disable-demos instead of patch to disable it. -NOPORTDOCS no longer need a hack, using --disable-docs instead.
64 lines
1.4 KiB
Makefile
64 lines
1.4 KiB
Makefile
# New ports collection makefile for: gtkmm2
|
|
# Date created: 30 September 2002
|
|
# Whom: Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-toolkits/gtkmm24/Makefile,v 1.8 2005/10/20 16:16:50 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= gtkmm
|
|
PORTVERSION= 2.8.2
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= C++ wrapper for Gtk+, Pango, Atk
|
|
|
|
LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm
|
|
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
|
|
|
|
LATEST_LINK= gtkmm24
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
USE_GCC= 3.4
|
|
USE_AUTOTOOLS= libtool:15:inc
|
|
INSTALLS_SHLIB= yes
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= gnomehack gtk20
|
|
CONFIGURE_ARGS= --disable-demos \
|
|
--enable-static=yes \
|
|
--with-sigc-prefix=${LOCALBASE}
|
|
|
|
PLIST_SUB= VERSION="2.4" API_VERSION="2.4"
|
|
|
|
.if defined(WITH_EXAMPLES)
|
|
CONFIGURE_ARGS+=--enable-examples
|
|
PLIST_SUB+= EXAMPLES=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-examples
|
|
PLIST_SUB+= EXAMPLES="@comment "
|
|
.endif
|
|
|
|
.if defined(NOPORTDOCS)
|
|
CONFIGURE_ARGS+=--disable-docs
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
patch-autotools::
|
|
@(cd ${PATCH_WRKSRC}; \
|
|
for file in ${LIBTOOLFILES}; do \
|
|
${CP} $$file $$file.tmp; \
|
|
${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \
|
|
$$file.tmp > $$file; \
|
|
${RM} $$file.tmp; \
|
|
done);
|
|
|
|
.include <bsd.port.mk>
|