From d304fad026899d2db5af26740eeb952698bd6fb2 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 3 Apr 2013 00:04:48 -0700 Subject: Wed Apr 3 00:04:48 PDT 2013 --- libre/hexchat-libre/PKGBUILD | 57 ++++++++++++++++++++++ libre/hexchat-libre/hexchat.install | 14 ++++++ libre/hexchat-libre/no-firefox.patch | 16 ++++++ .../hexchat-libre/remove-non-free-suggestion.patch | 12 +++++ libre/linux-libre-api-headers/PKGBUILD | 8 +-- 5 files changed, 103 insertions(+), 4 deletions(-) create mode 100644 libre/hexchat-libre/PKGBUILD create mode 100644 libre/hexchat-libre/hexchat.install create mode 100644 libre/hexchat-libre/no-firefox.patch create mode 100644 libre/hexchat-libre/remove-non-free-suggestion.patch (limited to 'libre') diff --git a/libre/hexchat-libre/PKGBUILD b/libre/hexchat-libre/PKGBUILD new file mode 100644 index 000000000..81a4e370b --- /dev/null +++ b/libre/hexchat-libre/PKGBUILD @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: TingPing +# Maintainer (Parabola): André Silva + +_pkgname=hexchat +pkgname=hexchat-libre +pkgver=2.9.5 +pkgrel=3 +pkgdesc="A popular and easy to use graphical IRC (chat) client, without non-free browser reference (Parabola rebranded)" +arch=('i686' 'x86_64' 'mips64el') +url="http://www.hexchat.org/" +license=('GPL') +options=('!libtool') +depends=('desktop-file-utils' 'gtkspell' 'hicolor-icon-theme' 'libnotify' 'libproxy' 'pciutils') +makedepends=('perl' 'python2') +optdepends=('enchant: Spell check' + 'perl: Perl plugin' + 'python2: Python plugin') +install=${_pkgname}.install +replaces=$_pkgname +conflicts=$_pkgname +provides=$_pkgname=$pkgver +source=("http://dl.hexchat.org/hexchat/hexchat-${pkgver}.tar.xz" + 'remove-non-free-suggestion.patch' + 'no-firefox.patch') +sha256sums=('11dfd0fbfb88d8dbb38f631fab8a7dffbb179f7f7dafe316953ed6f513ac623d' + '61040cb2a369b1b8801509c88019d68d1ab4c2505b1dfd859de1a4c22503f02d' + 'de338821e1a8790a6fbdba2ce41d323002f51e3ae3e99ee8d815fcf087197e45') + +build() { + cd "${srcdir}"/${_pkgname}-${pkgver} + +# Rebrand to Parabola + sed -i -e 's#ArchLinux#Parabola GNU/Linux-libre#' plugins/sysinfo/parse.c + +# Remove non-free browser references + patch -p1 -i "${srcdir}/remove-non-free-suggestion.patch" + patch -p1 -i "${srcdir}/no-firefox.patch" + +# Build + ./autogen.sh + ./configure --prefix=/usr --enable-{shm,spell=gtkspell,textfe} + make +} + +package() { + cd "${srcdir}"/${_pkgname}-${pkgver} + +# Install + make DESTDIR="$pkgdir" install + +# IRC Mime Types + desktop-file-edit --add-mime-type='x-scheme-handler/irc;x-scheme-handler/ircs' --set-key=Exec --set-value='sh -c "hexchat --existing --url %u || exec hexchat"' "$pkgdir/usr/share/applications/hexchat.desktop" +} + +# vim: ts=2 sw=2 et: diff --git a/libre/hexchat-libre/hexchat.install b/libre/hexchat-libre/hexchat.install new file mode 100644 index 000000000..214da2ef9 --- /dev/null +++ b/libre/hexchat-libre/hexchat.install @@ -0,0 +1,14 @@ +post_install() { + gtk-update-icon-cache -ftq usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim: ts=2 sw=2 et: diff --git a/libre/hexchat-libre/no-firefox.patch b/libre/hexchat-libre/no-firefox.patch new file mode 100644 index 000000000..998ff4dca --- /dev/null +++ b/libre/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/libre/hexchat-libre/remove-non-free-suggestion.patch b/libre/hexchat-libre/remove-non-free-suggestion.patch new file mode 100644 index 000000000..a83a71f17 --- /dev/null +++ b/libre/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 */ diff --git a/libre/linux-libre-api-headers/PKGBUILD b/libre/linux-libre-api-headers/PKGBUILD index b7f394162..266a52603 100644 --- a/libre/linux-libre-api-headers/PKGBUILD +++ b/libre/linux-libre-api-headers/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 175812 2013-01-22 00:01:30Z allan $ +# $Id: PKGBUILD 180857 2013-03-27 11:11:40Z allan $ # Maintainer: Allan McRae # Maintainer (Parabola): André Silva # toolchain build order: linux-libre-api-headers->glibc->binutils->gcc->binutils->glibc pkgname=linux-libre-api-headers -_basekernel=3.7 +_basekernel=3.8 _sublevel=4 pkgver=${_basekernel}.${_sublevel} pkgrel=1 @@ -18,8 +18,8 @@ conflicts=('linux-api-headers') replaces=('linux-api-headers') source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gnu/linux-libre-${_basekernel}-gnu.tar.xz" "http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-gnu/patch-${_basekernel}-gnu-${pkgver}-gnu.xz") -md5sums=('06bf9601d859531e7378eb43d4ca7dd3' - '0ce6896b7069cb5aaf444318d8db3885') +md5sums=('84c2a77910932ffc7d958744ac9cf2f5' + 'be610dd93dbe033cfe04018b27557c3e') build() { cd ${srcdir}/linux-${_basekernel} -- cgit v1.2.3-54-g00ecf