summaryrefslogtreecommitdiff
path: root/community-testing/gnubiff-gtk
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/gnubiff-gtk')
-rw-r--r--community-testing/gnubiff-gtk/PKGBUILD31
-rw-r--r--community-testing/gnubiff-gtk/build.patch23
2 files changed, 0 insertions, 54 deletions
diff --git a/community-testing/gnubiff-gtk/PKGBUILD b/community-testing/gnubiff-gtk/PKGBUILD
deleted file mode 100644
index 4ec2ed6c2..000000000
--- a/community-testing/gnubiff-gtk/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 63140 2012-01-30 18:58:46Z ibiru $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Tom K <tomk@runbox.com>
-# Contributor: Todd Musall <tmusall@gmail.com>
-
-pkgname=gnubiff-gtk
-pkgver=2.2.14
-pkgrel=1
-pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived. GTK version."
-arch=('i686' 'x86_64')
-url="http://gnubiff.sourceforge.net/"
-license=("GPL")
-depends=('libglade' 'gtk3' 'openssl' 'popt')
-makedepends=('intltool')
-conflicts=('gnubiff')
-source=(http://downloads.sourceforge.net/sourceforge/gnubiff/gnubiff-$pkgver.tar.gz
- build.patch)
-md5sums=('f2a2c3485d2f3f0adff1b7665c2f3b24'
- '96fde605eb69e300f6014546d4339beb')
-
-build() {
- cd $srcdir/gnubiff-$pkgver
-# patch -p1 <../build.patch
- export LDFLAGS=-lX11
- ./configure --prefix=/usr --disable-gnome --disable-fam --with-password --with-password-string="65423957eb027b94c9e661611c0e4271"
- make
- make DESTDIR=$pkgdir install
- rm -rf $pkgdir/usr/lib
- rm -rf $pkgdir/usr/share/gnome-2.0
- rm -rf ${pkgdir}/usr/share/info/dir
-}
diff --git a/community-testing/gnubiff-gtk/build.patch b/community-testing/gnubiff-gtk/build.patch
deleted file mode 100644
index 523b0557e..000000000
--- a/community-testing/gnubiff-gtk/build.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -wbBur gnubiff-2.2.10/src/support.h gnubiff-2.2.10.my/src/support.h
---- gnubiff-2.2.10/src/support.h 2008-03-22 05:08:51.000000000 +0300
-+++ gnubiff-2.2.10.my/src/support.h 2008-04-22 14:21:58.000000000 +0400
-@@ -35,6 +35,9 @@
- #endif
- #include "nls.h"
-
-+#include <stdlib.h>
-+#define EXIT_SUCCESS 0
-+#define EXIT_FAILURE 1
-
- #include <glib.h>
- #include <sstream>
-@@ -131,6 +134,9 @@
- if ((pos == end) && (last < num))
- result << sep << num;
-
-+ if ((pos == end) && (last != num))
-+ result << sep << num;
-+
- // Save new number
- inf_bound = last = num;
- }