diff options
-rw-r--r-- | x11/rxvt-unicode/DESCR | 4 | ||||
-rw-r--r-- | x11/rxvt-unicode/Makefile | 52 | ||||
-rw-r--r-- | x11/rxvt-unicode/PLIST | 8 | ||||
-rw-r--r-- | x11/rxvt-unicode/distinfo | 6 | ||||
-rw-r--r-- | x11/rxvt-unicode/patches/patch-aa | 19 |
5 files changed, 89 insertions, 0 deletions
diff --git a/x11/rxvt-unicode/DESCR b/x11/rxvt-unicode/DESCR new file mode 100644 index 00000000000..4341d602431 --- /dev/null +++ b/x11/rxvt-unicode/DESCR @@ -0,0 +1,4 @@ +rxvt-unicode is a clone of the well known terminal emulator rxvt, +modified to store text in Unicode (either UCS-2 or UCS-4) and to use +locale-correct input and output. It also supports mixing multiple +fonts at the same time, including Xft fonts. diff --git a/x11/rxvt-unicode/Makefile b/x11/rxvt-unicode/Makefile new file mode 100644 index 00000000000..3ff1c71fee9 --- /dev/null +++ b/x11/rxvt-unicode/Makefile @@ -0,0 +1,52 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/10/14 00:32:53 minskim Exp $ +# + +DISTNAME= rxvt-unicode-5.7 +CATEGORIES= x11 +MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= lems@gmx.net +HOMEPAGE= http://software.schmorp.de/#rxvt-unicode +COMMENT= rxvt clone supporting Xft fonts and Unicode + +GNU_CONFIGURE= yes +USE_LANGUAGES= c++ +USE_TOOLS+= gmake pkg-config + +CONFIGURE_ARGS+= --enable-combining \ + --enable-xft \ + --enable-font-styles \ + --enable-utmp \ + --enable-wtmp \ + --enable-lastlog \ + --enable-xpm-background \ + --enable-transparency \ + --enable-tinting \ + --enable-fading \ + --enable-menubar \ + --enable-rxvt-scroll \ + --enable-next-scroll \ + --enable-xterm-scroll \ + --enable-plain-scroll \ + --enable-xim \ + --enable-ttygid \ + --enable-xgetdefault \ + --disable-strings \ + --enable-swapscreen \ + --enable-iso14755 \ + --enable-frills \ + --enable-24bit \ + --disable-keepscrolling \ + --enable-selectionscrolling \ + --enable-mouswheel \ + --enable-slipwheeling \ + --enable-text-blink \ + --enable-pointer-blank \ + --with-codesets=all \ + --with-term=rxvt + +.include "../../fonts/Xft2/buildlink3.mk" +.include "../../graphics/xpm/buildlink3.mk" +.include "../../mk/x11.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/x11/rxvt-unicode/PLIST b/x11/rxvt-unicode/PLIST new file mode 100644 index 00000000000..2742b3f04ea --- /dev/null +++ b/x11/rxvt-unicode/PLIST @@ -0,0 +1,8 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/14 00:32:53 minskim Exp $ +bin/urxvt +bin/urxvtc +bin/urxvtd +man/man1/urxvt.1 +man/man1/urxvtc.1 +man/man1/urxvtd.1 +man/man7/urxvt.7 diff --git a/x11/rxvt-unicode/distinfo b/x11/rxvt-unicode/distinfo new file mode 100644 index 00000000000..c8eb55ec067 --- /dev/null +++ b/x11/rxvt-unicode/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/10/14 00:32:53 minskim Exp $ + +SHA1 (rxvt-unicode-5.7.tar.bz2) = 56bc160ba579bfedaec864499b7773cf3a33862c +RMD160 (rxvt-unicode-5.7.tar.bz2) = 4b7348b430e2142581d80829798c8c1ff40d0b0a +Size (rxvt-unicode-5.7.tar.bz2) = 848618 bytes +SHA1 (patch-aa) = 8cd8bc0a7a00e0871bd98cdbee8672ea65448218 diff --git a/x11/rxvt-unicode/patches/patch-aa b/x11/rxvt-unicode/patches/patch-aa new file mode 100644 index 00000000000..d2286327453 --- /dev/null +++ b/x11/rxvt-unicode/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/10/14 00:32:53 minskim Exp $ + +--- configure.orig 2005-02-18 12:12:31.000000000 +0000 ++++ configure +@@ -3101,14 +3101,6 @@ ac_link='$CC -o conftest$ac_exeext $CFLA + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +-if test -z "$orig_CXXFLAGS"; then +- CXXFLAGS='-O' +- if test x$GCC = xyes && test "x$GXX" = xyes; then +- CXXFLAGS="-g -O3" +- fi +- CFLAGS="$CXXFLAGS" +-fi +- + LINKER="$CXX" + if test x$GCC = xyes && test x$GXX = xyes; then + |