freebsd-ports/x11-toolkits/vte/Makefile
Jeremy Messenger 3e46e58f0b Fix the vte.pc, they have backed up the change of vte.pc that caused break the
apps' build such as gtksharp and etc. Bump the PORTREVISION.

Before:
	# pkg-config --cflags vte
	-I/usr/X11R6/include -I/usr/local/include/freetype2
	-I/usr/local/include

After:
	# pkg-config --cflags vte
	-DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/glib-2.0
	-I/usr/local/lib/glib-2.0/include -I/usr/local/include/atk-1.0
	-I/usr/local/include/cairo -I/usr/X11R6/include
	-I/usr/local/include/freetype2 -I/usr/local/include
	-I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/include/pango-1.0
	-I/usr/X11R6/lib/gtk-2.0/include

Reported by:	tmclaugh (for puzzled gtksharp broke w/out change)
GNOME Bugzilla:	http://bugzilla.gnome.org/show_bug.cgi?id=322240
Obtained from:	GNOME CVS (vte module)
2006-01-03 04:49:14 +00:00

47 lines
1.2 KiB
Makefile

# New ports collection makefile for: vte
# Date created: 05 October 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= vte
PORTVERSION= 0.11.16
PORTREVISION= 1
CATEGORIES= x11-toolkits gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= Terminal widget with improved accessibility and I18N support
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_REINPLACE= yes
USE_BISON= yes
INSTALLS_SHLIB= yes
USE_AUTOTOOLS= libtool:15
USE_GNOME= gnomeprefix gnomehack gtk20
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
BSD_PTHREAD_LIBS="${PTHREAD_LIBS}"
CONFIGURE_ARGS= --disable-python
.ifdef(WITH_GLX)
CONFIGURE_ARGS+= --with-glX
USE_GL= yes
.endif
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} "Vte supports the following configurable option(s):"
@${ECHO_MSG} " WITH_GLX=yes Enable support for DRI rendering (may improve performance)"
@${ECHO_MSG} ""
post-patch:
@${REINPLACE_CMD} -e 's|malloc\.h|stdlib.h|g' \
${WRKSRC}/gnome-pty-helper/gnome-pty-helper.c
.include <bsd.port.mk>