diff options
author | marcus <marcus@FreeBSD.org> | 2004-06-13 19:11:38 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-06-13 19:11:38 +0000 |
commit | 0223f169e078f806b889279c2a0e4d4b74bbbacb (patch) | |
tree | 9ddd7838b9a6a909d9751ed06b4cb1919b5f9fdd /x11 | |
parent | 13cd91bf3d22d04c51f4634f1d6bf80a7b462357 (diff) | |
download | FreeBSD-ports-0223f169e078f806b889279c2a0e4d4b74bbbacb.zip FreeBSD-ports-0223f169e078f806b889279c2a0e4d4b74bbbacb.tar.gz |
Add gtkterm2, a simple, tabbed, terminal built on gtk+ and the vte terminal
widget.
PR: 67863
Submitted by: michael johnson <ahze@ahze.net>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/gtkterm2/Makefile | 40 | ||||
-rw-r--r-- | x11/gtkterm2/distinfo | 2 | ||||
-rw-r--r-- | x11/gtkterm2/files/patch-intl::dcigettext.c | 13 | ||||
-rw-r--r-- | x11/gtkterm2/pkg-descr | 3 |
5 files changed, 59 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index d0f5738..bf7da7e 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -69,6 +69,7 @@ SUBDIR += gromit SUBDIR += gtk-theme-switch SUBDIR += gtk2-theme-switch + SUBDIR += gtkterm2 SUBDIR += gtstarter SUBDIR += gxset SUBDIR += gyroscope diff --git a/x11/gtkterm2/Makefile b/x11/gtkterm2/Makefile new file mode 100644 index 0000000..13365b6 --- /dev/null +++ b/x11/gtkterm2/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: gtkterm2 +# Date created: 2004-06-12 +# Whom: michael johnson <ahze@ahze.net> +# +# $FreeBSD$ +# + +PORTNAME= gtkterm2 +PORTVERSION= 0.2.1 +CATEGORIES= x11 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} +MASTER_SITE_SUBDIR= gtkterm + +MAINTAINER= ahze@ahze.net +COMMENT= A simple GTK-2 terminal with tabs + +USE_LIBTOOL_VER=13 +USE_GNOME= gnomeprefix vte lthack +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_GETOPT_LONG=yes + +DATADIR= ${PREFIX}/share/gnome +PORTDOCS= README +PLIST_FILES= bin/gtkterm2 \ + share/locale/de/LC_MESSAGES/gtkterm2.mo \ + %%DATADIR%%/pixmaps/gtkterm2.png +LCDIR= ${PREFIX}/share/locale/de/LC_MESSAGES + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/src/gtkterm2 ${PREFIX}/bin + @${INSTALL_DATA} ${WRKSRC}/pixmaps/gtkterm2.png ${DATADIR}/pixmaps + @${MKDIR} ${LCDIR} + @${INSTALL_DATA} ${WRKSRC}/po/de.gmo ${LCDIR}/gtkterm2.mo +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/x11/gtkterm2/distinfo b/x11/gtkterm2/distinfo new file mode 100644 index 0000000..4488e2d --- /dev/null +++ b/x11/gtkterm2/distinfo @@ -0,0 +1,2 @@ +MD5 (gtkterm2-0.2.1.tar.gz) = b969fed2d6d57b000ed1efb9a7d2b114 +SIZE (gtkterm2-0.2.1.tar.gz) = 294362 diff --git a/x11/gtkterm2/files/patch-intl::dcigettext.c b/x11/gtkterm2/files/patch-intl::dcigettext.c new file mode 100644 index 0000000..555dea0 --- /dev/null +++ b/x11/gtkterm2/files/patch-intl::dcigettext.c @@ -0,0 +1,13 @@ +--- intl/dcigettext.c.orig Sat Jun 12 01:13:19 2004 ++++ intl/dcigettext.c Sat Jun 12 01:14:54 2004 +@@ -987,11 +987,7 @@ + p = translation; + while (index-- > 0) + { +-#ifdef _LIBC + p = __rawmemchr (p, '\0'); +-#else +- p = strchr (p, '\0'); +-#endif + /* And skip over the NUL byte. */ + p++; diff --git a/x11/gtkterm2/pkg-descr b/x11/gtkterm2/pkg-descr new file mode 100644 index 0000000..90d97e9 --- /dev/null +++ b/x11/gtkterm2/pkg-descr @@ -0,0 +1,3 @@ +A simple GTK-2 Terminal with tabs. + +WWW: http://gtkterm.feige.net/ |