summaryrefslogtreecommitdiff
path: root/community/bbpager
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/bbpager
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/bbpager')
-rw-r--r--community/bbpager/02_gcc43.dpatch40
-rw-r--r--community/bbpager/PKGBUILD36
-rw-r--r--community/bbpager/fix-linking-ugly.diff12
3 files changed, 0 insertions, 88 deletions
diff --git a/community/bbpager/02_gcc43.dpatch b/community/bbpager/02_gcc43.dpatch
deleted file mode 100644
index 18b8a8c3d..000000000
--- a/community/bbpager/02_gcc43.dpatch
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 02_gcc43.dpatch by Kevin Coyner <kcoyner@debian.org>
-##
-## DP: patch to fix missing #include statement for GCC 4.3
-## DP: see Debian bug #456071 and #474811
-
-@DPATCH@
-diff -urNad bbpager-0.4.7~/src/Baseresource.cxx bbpager-0.4.7/src/Baseresource.cxx
---- bbpager-0.4.7~/src/Baseresource.cxx 2008-03-28 06:55:16.000000000 -0400
-+++ bbpager-0.4.7/src/Baseresource.cxx 2008-04-09 21:58:03.000000000 -0400
-@@ -20,6 +20,7 @@
- //
-
- #include <string>
-+#include <cstring>
- #include "Baseresource.h"
- #include <stdio.h>
- #include "Menu.hh"
-diff -urNad bbpager-0.4.7~/src/main.cxx bbpager-0.4.7/src/main.cxx
---- bbpager-0.4.7~/src/main.cxx 2008-03-28 06:55:16.000000000 -0400
-+++ bbpager-0.4.7/src/main.cxx 2008-04-09 21:58:03.000000000 -0400
-@@ -25,6 +25,7 @@
-
- #include <stdio.h>
- #include <string>
-+#include <cstring>
- #include <iostream>
-
-
-diff -urNad bbpager-0.4.7~/src/resource.cxx bbpager-0.4.7/src/resource.cxx
---- bbpager-0.4.7~/src/resource.cxx 2007-03-11 17:47:07.000000000 -0400
-+++ bbpager-0.4.7/src/resource.cxx 2008-04-09 21:58:39.000000000 -0400
-@@ -19,6 +19,7 @@
- // (See the included file COPYING / GPL-2.0)
- //
-
-+#include <cstring>
- #include "resource.h"
- #include "blackboxstyle.h"
-
diff --git a/community/bbpager/PKGBUILD b/community/bbpager/PKGBUILD
deleted file mode 100644
index 43380e701..000000000
--- a/community/bbpager/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 67447 2012-03-11 20:35:17Z lcarlier $
-# Maintainer: Thayer Williams <jason@archlinux.org>
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-
-pkgname=bbpager
-pkgver=0.4.7
-pkgrel=4
-pkgdesc="A dockable pager for Blackbox and other window managers"
-arch=(i686 x86_64)
-url="http://bbtools.sourceforge.net/download.php?file=6"
-license=("GPL")
-depends=('gcc-libs' 'libxft' 'libxext')
-makedepends=('gcc' 'blackbox')
-source=(http://downloads.sourceforge.net/bbtools/$pkgname-$pkgver.tar.gz \
- 02_gcc43.dpatch \
- fix-linking-ugly.diff)
-md5sums=('4eaa91a4d66130af2f7a09c25f917386'
- 'e985ef893f2080b3b2d47f900f861352'
- 'd2258a0cfb580e20869574f373fe7ed4')
-
-build() {
- cd ${srcdir}/$pkgname-$pkgver
-
- patch -Np1 -i ../02_gcc43.dpatch
- patch -Np1 -i ../fix-linking-ugly.diff
- autoreconf
-
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd ${srcdir}/$pkgname-$pkgver
-
- make prefix="$pkgdir/usr" install
-}
diff --git a/community/bbpager/fix-linking-ugly.diff b/community/bbpager/fix-linking-ugly.diff
deleted file mode 100644
index ff0a5dcf7..000000000
--- a/community/bbpager/fix-linking-ugly.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -U 3 -d -r -N -- bbpager-0.4.7/configure.ac bbpager-0.4.7b/configure.ac
---- bbpager-0.4.7/configure.ac 2008-01-14 18:03:50.000000000 +0100
-+++ bbpager-0.4.7b/configure.ac 2010-07-17 10:36:04.042040059 +0200
-@@ -68,7 +68,7 @@
- dnl pkgconfig checks for blackbox library
- PKG_CHECK_MODULES(LIBBT, libbt)
- CXXFLAGS="$CXXFLAGS $LIBBT_CFLAGS"
--LIBS="$LIBS $LIBBT_LIBS"
-+LIBS="$LIBS $LIBBT_LIBS -lXext -lX11"
-
- dnl generate the config header
- AM_CONFIG_HEADER(config.h)