Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Original contributor: Alexander Fehr <pizzapunk gmail com>
# ---
# Latest maintainer: Neil Santos <nsantos+aur@gmail.com>

pkgname=gtk-server
pkgver=2.3.1
pkgrel=4
pkgdesc='Stream-oriented interface to the GTK+ libraries'
arch=('i686' 'x86_64')
url="http://www.gtk-server.org/"
license=('GPL')
depends=('gtk2>=2.14' 'libffi')
makedepends=('pkgconfig' 'glade')
backup=('etc/gtk-server.cfg')
source=("http://downloads.sourceforge.net/gtk-server/gtk-server-$pkgver-sr.tar.gz"
        'http://www.gtk-server.org/gtk-server.cfg')
md5sums=('fd5cc04fb6cce5312b119f5b0c6b4ae6'
         '4a72419de37a1cd4ac42055cd2dce801')

build() {
  cd "$srcdir/gtk-server-$pkgver-sr"
  cp "$srcdir/gtk-server.cfg" "$srcdir/gtk-server-$pkgver-sr/"

  export CPPFLAGS=`pkg-config --cflags libffi`
  export LDFLAGS=`pkg-config --libs libglade-2.0`
  LDFLAGS="$LDFLAGS -ldl"

  ./configure --prefix=/usr --sysconfdir=/etc --with-gtk2 || return 1
  make || return 1
  make prefix=$startdir/pkg/usr SYSCONFIG=$startdir/pkg/etc install || return 1

  ./configure --prefix=/usr --sysconfdir=/etc --enable-library --with-gtk2 || return 1
  make || return 1
  install -D -m755 libgtk-server.so "$pkgdir/usr/lib/libgtk-server.so" || return 1
  install -m644 libgtk-server.a "$pkgdir/usr/lib" || return 1
}