From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/gcolor2/PKGBUILD | 31 +++++++++++++++++++++ community/gcolor2/gcolor2-0.4-amd64.patch | 46 +++++++++++++++++++++++++++++++ community/gcolor2/gcolor2.desktop | 10 +++++++ 3 files changed, 87 insertions(+) create mode 100644 community/gcolor2/PKGBUILD create mode 100644 community/gcolor2/gcolor2-0.4-amd64.patch create mode 100644 community/gcolor2/gcolor2.desktop (limited to 'community/gcolor2') diff --git a/community/gcolor2/PKGBUILD b/community/gcolor2/PKGBUILD new file mode 100644 index 000000000..68f1304e1 --- /dev/null +++ b/community/gcolor2/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 9537 2010-01-27 00:58:00Z dgriffiths $ +# Maintainer: pressh +# Contributor: Eric Belanger +# Contributor: shaun lastra + +pkgname=gcolor2 +pkgver=0.4 +pkgrel=5 +pkgdesc="A simple GTK+2 color selector" +arch=('i686' 'x86_64') +url="http://gcolor2.sf.net/" +license=('GPL') +depends=('gtk2') +makedepends=('perlxml') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz \ + gcolor2-0.4-amd64.patch gcolor2.desktop) +md5sums=('02de9d925ad5921522685f402caec3ec' + '5791378f6f86dd25a302ad8586292dd6' + '9523da11b40dd167964d1b50b40250d5') + +build() { + cd $srcdir/$pkgname-$pkgver + [ "$CARCH" == "x86_64" ] && (patch -p1 < ../gcolor2-0.4-amd64.patch || return 1) + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install || return 1 + +# install desktop file +install -Dm644 $srcdir/gcolor2.desktop \ + $pkgdir/usr/share/applications/gcolor2.desktop +} diff --git a/community/gcolor2/gcolor2-0.4-amd64.patch b/community/gcolor2/gcolor2-0.4-amd64.patch new file mode 100644 index 000000000..cd06a8315 --- /dev/null +++ b/community/gcolor2/gcolor2-0.4-amd64.patch @@ -0,0 +1,46 @@ +diff --exclude-from=/home/dang/bin/scripts/diffrc -up -ruN gcolor2-0.4.orig/src/callbacks.c gcolor2-0.4/src/callbacks.c +--- gcolor2-0.4.orig/src/callbacks.c 2005-07-12 14:06:12.000000000 -0400 ++++ gcolor2-0.4/src/callbacks.c 2007-02-17 19:19:38.000000000 -0500 +@@ -4,6 +4,9 @@ + + #include + #include ++#include ++#include ++#include + + #include "callbacks.h" + #include "interface.h" +@@ -172,6 +175,9 @@ void on_copy_color_to_clipboard_activate + gtk_clipboard_set_text (cb, hex, strlen (hex)); + } + ++void add_rgb_file (gchar *filename, gchar *type); ++gchar* get_system_file (void); ++ + void on_show_system_colors_activate (GtkMenuItem *menuitem, gpointer user_data) + { + if (gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (menuitem))) +@@ -266,6 +272,8 @@ void on_save_button_clicked (GtkButton * + gtk_widget_destroy (savedialog); + } + ++void add_list_color (gchar *spec, gchar *name, gchar *type, gboolean is_new_color); ++ + void add_color_to_treeview () + { + GtkTreeView *treeview; +diff --exclude-from=/home/dang/bin/scripts/diffrc -up -ruN gcolor2-0.4.orig/src/main.c gcolor2-0.4/src/main.c +--- gcolor2-0.4.orig/src/main.c 2005-07-11 10:55:49.000000000 -0400 ++++ gcolor2-0.4/src/main.c 2007-02-17 19:18:23.000000000 -0500 +@@ -4,6 +4,10 @@ + + #include + #include ++#include ++#include ++#include ++#include + + #include "interface.h" + #include "support.h" diff --git a/community/gcolor2/gcolor2.desktop b/community/gcolor2/gcolor2.desktop new file mode 100644 index 000000000..754df94d3 --- /dev/null +++ b/community/gcolor2/gcolor2.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=Gcolor2 +GenericName=A simple GTK+2 color selector +Comment=Choose colours from palette or screen +Exec=gcolor2 +Icon=/usr/share/pixmaps/gcolor2/icon.png +Type=Application +Terminal=false +StartupNotify=true +Categories=Graphics; -- cgit v1.2.3-54-g00ecf