summaryrefslogtreecommitdiff
path: root/pcr/hexchat-libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-01-30 23:30:14 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-01-30 23:30:14 -0200
commit899e1e7bfc144334edc0d2ccd8de072e6910c23a (patch)
treecaec9cd18c6875cb3dc7dc99152a738d6c8d7135 /pcr/hexchat-libre
parentd4d7e9e2655909b816491fa56f4f3ae18fc155ca (diff)
hexchat-libre: adding new package for [pcr] repo
Diffstat (limited to 'pcr/hexchat-libre')
-rw-r--r--pcr/hexchat-libre/PKGBUILD46
-rw-r--r--pcr/hexchat-libre/hexchat.install8
-rw-r--r--pcr/hexchat-libre/no-firefox.patch16
-rw-r--r--pcr/hexchat-libre/remove-non-free-suggestion.patch12
4 files changed, 82 insertions, 0 deletions
diff --git a/pcr/hexchat-libre/PKGBUILD b/pcr/hexchat-libre/PKGBUILD
new file mode 100644
index 000000000..26c353fb9
--- /dev/null
+++ b/pcr/hexchat-libre/PKGBUILD
@@ -0,0 +1,46 @@
+#Maintainer: TingPing tingping@tingping.se
+#Maintainer (Parabola): André Silva <emulatorman@lavabit.com>
+
+_pkgname=hexchat
+pkgname=hexchat-libre
+pkgver=2.9.4
+pkgrel=2
+pkgdesc='A GTK+ based IRC client without non-free browser reference'
+arch=('i686' 'x86_64' 'mips64el')
+url='http://www.hexchat.org/'
+license=('GPL')
+options=('!libtool')
+replaces=('hexchat')
+conflicts=('hexchat')
+provides=("hexchat=$pkgver")
+depends=('gtk2' 'openssl' 'dbus-glib' 'hicolor-icon-theme' 'libnotify' 'libproxy')
+makedepends=('perl' 'python2' 'tcl')
+optdepends=('enchant: for spell check'
+ 'perl: for perl plugin'
+ 'tcl: for tcl plugin'
+ 'python2: for python plugin')
+install="$_pkgname.install"
+source=("https://github.com/downloads/hexchat/hexchat/hexchat-$pkgver.tar.xz"
+ 'remove-non-free-suggestion.patch'
+ 'no-firefox.patch')
+md5sums=('5609cac7200fc91be57196501aaf07fa'
+ '978da875b73d9570134a1e87af54f94b'
+ '8934416304ed77161da0883d5b06e7b8')
+
+build() {
+ cd "$srcdir/$_pkgname-$pkgver"
+ patch -p1 -i "${srcdir}/remove-non-free-suggestion.patch"
+ patch -p1 -i "${srcdir}/no-firefox.patch"
+ mkdir m4
+ chmod +x autogen.sh
+ ./autogen.sh
+ ./configure --prefix=/usr \
+ --enable-openssl --enable-dbus --enable-nls --enable-ipv6 --enable-shm --enable-spell=static
+ make
+}
+
+package() {
+ cd "$srcdir/$_pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -D -m644 "share/icons/hexchat.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/hexchat.svg"
+}
diff --git a/pcr/hexchat-libre/hexchat.install b/pcr/hexchat-libre/hexchat.install
new file mode 100644
index 000000000..4b3df7505
--- /dev/null
+++ b/pcr/hexchat-libre/hexchat.install
@@ -0,0 +1,8 @@
+post_install() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+ echo 'Read the FAQ if migrating from XChat - https://github.com/hexchat/hexchat/blob/master/share/doc/faq.md'
+}
+
+post_upgrade() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
diff --git a/pcr/hexchat-libre/no-firefox.patch b/pcr/hexchat-libre/no-firefox.patch
new file mode 100644
index 000000000..998ff4dca
--- /dev/null
+++ b/pcr/hexchat-libre/no-firefox.patch
@@ -0,0 +1,16 @@
+diff -Nur hexchat-2.9.4.orig/src/fe-gtk/fe-gtk.c hexchat-2.9.4/src/fe-gtk/fe-gtk.c
+--- hexchat-2.9.4.orig/src/fe-gtk/fe-gtk.c 2012-11-11 07:08:30.000000000 -0200
++++ hexchat-2.9.4/src/fe-gtk/fe-gtk.c 2013-01-30 23:06:38.670239405 -0200
+@@ -1039,8 +1039,10 @@
+ return;
+ }
+
+- /* everything failed, what now? just try firefox */
+- if (try_browser ("firefox", NULL, url))
++ /* everything failed, what now? just try iceweasel or icecat */
++ if (try_browser ("iceweasel", NULL, url))
++ return;
++ if (try_browser ("icecat", NULL, url))
+ return;
+
+ /* fresh out of ideas... */
diff --git a/pcr/hexchat-libre/remove-non-free-suggestion.patch b/pcr/hexchat-libre/remove-non-free-suggestion.patch
new file mode 100644
index 000000000..a83a71f17
--- /dev/null
+++ b/pcr/hexchat-libre/remove-non-free-suggestion.patch
@@ -0,0 +1,12 @@
+diff -Nur hexchat-2.9.4.orig/src/common/hexchat.c hexchat-2.9.4/src/common/hexchat.c
+--- hexchat-2.9.4.orig/src/common/hexchat.c 2012-11-11 07:08:30.000000000 -0200
++++ hexchat-2.9.4/src/common/hexchat.c 2013-01-30 23:02:12.884864062 -0200
+@@ -618,7 +618,7 @@
+ "NAME WII\n" "CMD quote WHOIS %2 %2\n\n";
+
+ static char defaultconf_urlhandlers[] =
+- "NAME Open Link in Opera\n" "CMD !opera -remote 'openURL(%s)'\n\n";
++ "" "";
+
+ #ifdef USE_SIGACTION
+ /* Close and open log files on SIGUSR1. Usefull for log rotating */