diff options
author | adamw <adamw@FreeBSD.org> | 2004-06-18 16:18:32 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2004-06-18 16:18:32 +0000 |
commit | 43547d8ec489b636925ccbb7a5e5d7bc62ea11b4 (patch) | |
tree | 38c4dd9476f8936c1a0fc12fefa6600d97d78c36 /x11 | |
parent | 4d7c76ddb3dda555c321de261de8d87038bd32aa (diff) | |
download | FreeBSD-ports-43547d8ec489b636925ccbb7a5e5d7bc62ea11b4.zip FreeBSD-ports-43547d8ec489b636925ccbb7a5e5d7bc62ea11b4.tar.gz |
Add gtkchtheme, yet another gtk2 theme switcher.
This little program lets you change your Gtk+ 2.0 theme. The aim is to
make theme preview and selection as slick as possible. Themes installed
on the system are presented for selection and previewed on the fly. For
a comprehensive demonstration there's a large variety of widgets.
It was originally derived from Gtk Theme Switch, but what started out as
a hack to remove various nuisances now shares no code whatsoever anymore
with the original.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/gtkchtheme/Makefile | 29 | ||||
-rw-r--r-- | x11/gtkchtheme/distinfo | 2 | ||||
-rw-r--r-- | x11/gtkchtheme/pkg-descr | 10 |
4 files changed, 42 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index bf7da7e..be2d6e9 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -69,6 +69,7 @@ SUBDIR += gromit SUBDIR += gtk-theme-switch SUBDIR += gtk2-theme-switch + SUBDIR += gtkchtheme SUBDIR += gtkterm2 SUBDIR += gtstarter SUBDIR += gxset diff --git a/x11/gtkchtheme/Makefile b/x11/gtkchtheme/Makefile new file mode 100644 index 0000000..8f732a8 --- /dev/null +++ b/x11/gtkchtheme/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: gtkchtheme +# Date created: 18 June 2004 +# Whom: Adam Weinberger <adamw@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gtkchtheme +PORTVERSION= 0.3.1 +CATEGORIES= x11 +MASTER_SITES= http://plasmasturm.org/programs/gtk-chtheme/ +DISTNAME= gtk-chtheme-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= GTK2 theme changer + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix gtk20 + +PLIST_FILES= bin/gtk-chtheme +MAN1= gtk-chtheme.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gtk-chtheme ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/gtk-chtheme.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/x11/gtkchtheme/distinfo b/x11/gtkchtheme/distinfo new file mode 100644 index 0000000..d669332 --- /dev/null +++ b/x11/gtkchtheme/distinfo @@ -0,0 +1,2 @@ +MD5 (gtk-chtheme-0.3.1.tar.bz2) = f688053bf26dd6c4f1cd0bf2ee33de2a +SIZE (gtk-chtheme-0.3.1.tar.bz2) = 18205 diff --git a/x11/gtkchtheme/pkg-descr b/x11/gtkchtheme/pkg-descr new file mode 100644 index 0000000..145ddc8 --- /dev/null +++ b/x11/gtkchtheme/pkg-descr @@ -0,0 +1,10 @@ +This little program lets you change your Gtk+ 2.0 theme. The aim is to +make theme preview and selection as slick as possible. Themes installed +on the system are presented for selection and previewed on the fly. For +a comprehensive demonstration there's a large variety of widgets. + +It was originally derived from Gtk Theme Switch, but what started out as +a hack to remove various nuisances now shares no code whatsoever anymore +with the original. + +WWW: http://plasmasturm.org/programs/gtk-chtheme/ |