- Adjust text slightly so it fits in dialog - DRI -> DRI/GLX since nVidia GLX does not use DRI - Style nit: s/ifdef/if defined/ in Makefile - Kill EOL space in pkg-descr, americanize Approved by: gnome (marcus)
39 lines
943 B
Makefile
39 lines
943 B
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.21
|
|
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_BISON= yes
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
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
|
|
|
|
OPTIONS= GLX "Enable support for DRI/GLX rendering" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_GLX)
|
|
CONFIGURE_ARGS+= --with-glX
|
|
USE_GL= yes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|