diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/gcolor2 | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/gcolor2')
-rw-r--r-- | community/gcolor2/PKGBUILD | 39 | ||||
-rw-r--r-- | community/gcolor2/gcolor2-0.4-amd64.patch | 46 | ||||
-rw-r--r-- | community/gcolor2/gcolor2.desktop | 10 |
3 files changed, 95 insertions, 0 deletions
diff --git a/community/gcolor2/PKGBUILD b/community/gcolor2/PKGBUILD new file mode 100644 index 000000000..b9b30a4df --- /dev/null +++ b/community/gcolor2/PKGBUILD @@ -0,0 +1,39 @@ +# Contributor: pressh <pressh funnysymbol gmail dot com> +# Contributor: Eric Belanger <belanger@astro.umontreal.ca> +# Contributor: shaun lastra <badicalia@gmail.com> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=gcolor2 +pkgver=0.4 +pkgrel=6 +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) + + # fix fs#25904 + sed -i 's/\[:space:\]/[&]/g' configure + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install + + # 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 <gtk/gtk.h> + #include <stdio.h> ++#include <string.h> ++#include <glib.h> ++#include <glib/gprintf.h> + + #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 <gtk/gtk.h> + #include <stdio.h> ++#include <stdlib.h> ++#include <string.h> ++#include <glib.h> ++#include <glib/gprintf.h> + + #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; |