diff options
author | marcus <marcus@FreeBSD.org> | 2003-09-18 14:49:37 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-09-18 14:49:37 +0800 |
commit | 5797d600f46f09de6f7e9f89bd9546544d3f93e6 (patch) | |
tree | f29aa772e064572f168522a552ce158c9147a8a2 /x11-toolkits/vte/Makefile | |
parent | f8ccc20f69f18bf5f775fc1a7f7a5098f7173ac1 (diff) | |
download | freebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.tar.gz freebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.tar.zst freebsd-ports-gnome-5797d600f46f09de6f7e9f89bd9546544d3f93e6.zip |
Update to GNOME 2.4.0. For all the goodies on what's changed, known issues,
future plans, etc., please see http://www.gnome.org/start/2.4/.
This commit represents work done by adamw, bland, and myself as well as
many other contributers:
Koop Mast <einekoai@chello.nl>
Akifyev Sergey <asa@gascom.ru>
Franz Klammer <klammer@webonaut.com>
Øyvind Kolbu <oyvind@kebab.gaffel.nu>
Thomas E. Zander <riggs@rrr.de>
Jeremy Messenger <mezz7@cox.net>
Without these contirbuters, and our faithful users, GNOME 2.4.0 would not
be possible.
Please check the FreeBSD GNOME site for any FreeBSD gotchas, as well as
general FAQs and documentation (GNOME 2.4 updates to be posted soon). The
best way to upgrade so that you get all shared library dependencies is:
portupgrade -rf -m BATCH=yes atk
portupgrade -R -m BATCH=yes gnome2
Approved by: portmgr (kris, will, myself implicitly)
Requested by: re as well as many other users
Diffstat (limited to 'x11-toolkits/vte/Makefile')
-rw-r--r-- | x11-toolkits/vte/Makefile | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/x11-toolkits/vte/Makefile b/x11-toolkits/vte/Makefile index e319fee4fa57..23290abd992d 100644 --- a/x11-toolkits/vte/Makefile +++ b/x11-toolkits/vte/Makefile @@ -6,10 +6,10 @@ # PORTNAME= vte -PORTVERSION= 0.10.29 +PORTVERSION= 0.11.10 CATEGORIES= x11-toolkits gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.10 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.11 DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org @@ -23,10 +23,21 @@ USE_BISON= yes INSTALLS_SHLIB= yes USE_LIBTOOL= yes USE_GNOME= gnomeprefix gnomehack gtk20 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +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 +.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 |