diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-03-17 10:18:59 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-03-17 10:18:59 +0800 |
commit | 551e35a8a58a121ef07cadc24f097e2abcad44bc (patch) | |
tree | 9e5679908b532b2b4d8c1f6dc7243ff7a06cceb4 /x11-toolkits/vte | |
parent | 2b07e5bacbfed846a612b7c1907eb65e11d1c0d9 (diff) | |
download | marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar.gz marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar.bz2 marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar.lz marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar.xz marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.tar.zst marcuscom-ports-551e35a8a58a121ef07cadc24f097e2abcad44bc.zip |
Sync w/ FreeBSD ports tree:
danfe 2006-03-16 20:26:20 UTC
FreeBSD ports repository
Modified files:
x11-toolkits/vte Makefile pkg-descr
Log:
- Convert to OPTIONS
- 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)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5969 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/vte')
-rw-r--r-- | x11-toolkits/vte/Makefile | 16 | ||||
-rw-r--r-- | x11-toolkits/vte/pkg-descr | 2 |
2 files changed, 8 insertions, 10 deletions
diff --git a/x11-toolkits/vte/Makefile b/x11-toolkits/vte/Makefile index 1134b84e2..44ad27d4c 100644 --- a/x11-toolkits/vte/Makefile +++ b/x11-toolkits/vte/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11-toolkits/vte/Makefile,v 1.44 2006/03/13 06:27:52 marcus Exp $ +# $MCom: ports/x11-toolkits/vte/Makefile,v 1.45 2006/03/13 19:31:50 mezz Exp $ # PORTNAME= vte @@ -28,15 +28,13 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" CONFIGURE_ARGS= --disable-python -.ifdef(WITH_GLX) +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 -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} "" - -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/x11-toolkits/vte/pkg-descr b/x11-toolkits/vte/pkg-descr index f6d86e5ca..9c325db4c 100644 --- a/x11-toolkits/vte/pkg-descr +++ b/x11-toolkits/vte/pkg-descr @@ -1,2 +1,2 @@ -Terminal widget with improved font, internationalisation and accessibility +Terminal widget with improved font, internationalisation and accessibility support for the GNOME 2 desktop. Designed to replace libzvt. |