Date: Sunday, January 27, 2013 @ 11:16:43 Author: bpiotrowski Revision: 83070
archrelease: copy trunk to community-i686, community-x86_64 Added: lxpanel/repos/community-i686/PKGBUILD (from rev 83069, lxpanel/trunk/PKGBUILD) lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.13-support.patch (from rev 83069, lxpanel/trunk/lxpanel-0.5.12-automake-1.13-support.patch) lxpanel/repos/community-x86_64/PKGBUILD (from rev 83069, lxpanel/trunk/PKGBUILD) lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.13-support.patch (from rev 83069, lxpanel/trunk/lxpanel-0.5.12-automake-1.13-support.patch) Deleted: lxpanel/repos/community-i686/PKGBUILD lxpanel/repos/community-x86_64/PKGBUILD -------------------------------------------------------------+ community-i686/PKGBUILD | 68 +++++----- community-i686/lxpanel-0.5.12-automake-1.13-support.patch | 15 ++ community-x86_64/PKGBUILD | 68 +++++----- community-x86_64/lxpanel-0.5.12-automake-1.13-support.patch | 15 ++ 4 files changed, 106 insertions(+), 60 deletions(-) Deleted: community-i686/PKGBUILD =================================================================== --- community-i686/PKGBUILD 2013-01-27 10:16:24 UTC (rev 83069) +++ community-i686/PKGBUILD 2013-01-27 10:16:43 UTC (rev 83070) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski <nos...@bpiotrowski.pl> -# Contributor: Angel Velasquez <an...@archlinux.org> -# Contributor: Juergen Hoetzel <juer...@archlinux.org> - -pkgname=lxpanel -pkgver=0.5.10 -pkgrel=2 -pkgdesc='Lightweight X11 desktop panel for LXDE' -arch=('i686' 'x86_64') -license=('GPL2') -url='http://lxde.org/' -groups=('lxde') -depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') -makedepends=('wireless_tools') -optdepends=('wireless_tools: netstat plugin') -source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz) -md5sums=('1bf3cce2a2d01c211f6897c42e8dd0bc') - -build() { - cd $srcdir/$pkgname-$pkgver - - CFLAGS+=' -lgmodule-2.0' ./configure --sysconfdir=/etc --prefix=/usr - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} Copied: lxpanel/repos/community-i686/PKGBUILD (from rev 83069, lxpanel/trunk/PKGBUILD) =================================================================== --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-01-27 10:16:43 UTC (rev 83070) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski <nos...@bpiotrowski.pl> +# Contributor: Angel Velasquez <an...@archlinux.org> +# Contributor: Juergen Hoetzel <juer...@archlinux.org> + +pkgname=lxpanel +pkgver=0.5.12 +pkgrel=1 +pkgdesc='Lightweight X11 desktop panel for LXDE' +arch=('i686' 'x86_64') +license=('GPL2') +url='http://lxde.org/' +groups=('lxde') +depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') +makedepends=('docbook-xml' 'docbook-xsl' 'wireless_tools') +optdepends=('wireless_tools: netstat plugin') +source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz + lxpanel-0.5.12-automake-1.13-support.patch) +sha256sums=('c29997c522f138e4beb02fc549c84136fc840a836c1f69b400d90d2d4e91de1b' + 'a35c786e3cd2977c5cf018e126c7f309b7fc4c15f9b821895e1f6fe25125f68f') + +build() { + cd $srcdir/$pkgname-$pkgver + + patch -Np0 -i $srcdir/lxpanel-0.5.12-automake-1.13-support.patch + ./autogen.sh + + CFLAGS+=' -lgmodule-2.0' ./configure \ + --sysconfdir=/etc \ + --prefix=/usr \ + --enable-man + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} Copied: lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.13-support.patch (from rev 83069, lxpanel/trunk/lxpanel-0.5.12-automake-1.13-support.patch) =================================================================== --- community-i686/lxpanel-0.5.12-automake-1.13-support.patch (rev 0) +++ community-i686/lxpanel-0.5.12-automake-1.13-support.patch 2013-01-27 10:16:43 UTC (rev 83070) @@ -0,0 +1,15 @@ +--- autogen.sh.orig 2013-01-27 10:38:55.000000000 +0100 ++++ autogen.sh 2013-01-27 10:59:56.897030226 +0100 +@@ -6,9 +6,10 @@ + + if [ "$AM_INSTALLED_VERSION" != "1.10" \ + -a "$AM_INSTALLED_VERSION" != "1.11" \ +- -a "$AM_INSTALLED_VERSION" != "1.12" ];then ++ -a "$AM_INSTALLED_VERSION" != "1.12" \ ++ -a "$AM_INSTALLED_VERSION" != "1.13" ];then + echo +- echo "You must have automake 1.10, 1.11, or 1.12 installed to compile lxpanel." ++ echo "You must have automake >=1.10 installed to compile lxpanel." + echo "Install the appropriate package for your distribution," + echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/" + exit 1 Deleted: community-x86_64/PKGBUILD =================================================================== --- community-x86_64/PKGBUILD 2013-01-27 10:16:24 UTC (rev 83069) +++ community-x86_64/PKGBUILD 2013-01-27 10:16:43 UTC (rev 83070) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski <nos...@bpiotrowski.pl> -# Contributor: Angel Velasquez <an...@archlinux.org> -# Contributor: Juergen Hoetzel <juer...@archlinux.org> - -pkgname=lxpanel -pkgver=0.5.10 -pkgrel=2 -pkgdesc='Lightweight X11 desktop panel for LXDE' -arch=('i686' 'x86_64') -license=('GPL2') -url='http://lxde.org/' -groups=('lxde') -depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') -makedepends=('wireless_tools') -optdepends=('wireless_tools: netstat plugin') -source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz) -md5sums=('1bf3cce2a2d01c211f6897c42e8dd0bc') - -build() { - cd $srcdir/$pkgname-$pkgver - - CFLAGS+=' -lgmodule-2.0' ./configure --sysconfdir=/etc --prefix=/usr - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} Copied: lxpanel/repos/community-x86_64/PKGBUILD (from rev 83069, lxpanel/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2013-01-27 10:16:43 UTC (rev 83070) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski <nos...@bpiotrowski.pl> +# Contributor: Angel Velasquez <an...@archlinux.org> +# Contributor: Juergen Hoetzel <juer...@archlinux.org> + +pkgname=lxpanel +pkgver=0.5.12 +pkgrel=1 +pkgdesc='Lightweight X11 desktop panel for LXDE' +arch=('i686' 'x86_64') +license=('GPL2') +url='http://lxde.org/' +groups=('lxde') +depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') +makedepends=('docbook-xml' 'docbook-xsl' 'wireless_tools') +optdepends=('wireless_tools: netstat plugin') +source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz + lxpanel-0.5.12-automake-1.13-support.patch) +sha256sums=('c29997c522f138e4beb02fc549c84136fc840a836c1f69b400d90d2d4e91de1b' + 'a35c786e3cd2977c5cf018e126c7f309b7fc4c15f9b821895e1f6fe25125f68f') + +build() { + cd $srcdir/$pkgname-$pkgver + + patch -Np0 -i $srcdir/lxpanel-0.5.12-automake-1.13-support.patch + ./autogen.sh + + CFLAGS+=' -lgmodule-2.0' ./configure \ + --sysconfdir=/etc \ + --prefix=/usr \ + --enable-man + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} Copied: lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.13-support.patch (from rev 83069, lxpanel/trunk/lxpanel-0.5.12-automake-1.13-support.patch) =================================================================== --- community-x86_64/lxpanel-0.5.12-automake-1.13-support.patch (rev 0) +++ community-x86_64/lxpanel-0.5.12-automake-1.13-support.patch 2013-01-27 10:16:43 UTC (rev 83070) @@ -0,0 +1,15 @@ +--- autogen.sh.orig 2013-01-27 10:38:55.000000000 +0100 ++++ autogen.sh 2013-01-27 10:59:56.897030226 +0100 +@@ -6,9 +6,10 @@ + + if [ "$AM_INSTALLED_VERSION" != "1.10" \ + -a "$AM_INSTALLED_VERSION" != "1.11" \ +- -a "$AM_INSTALLED_VERSION" != "1.12" ];then ++ -a "$AM_INSTALLED_VERSION" != "1.12" \ ++ -a "$AM_INSTALLED_VERSION" != "1.13" ];then + echo +- echo "You must have automake 1.10, 1.11, or 1.12 installed to compile lxpanel." ++ echo "You must have automake >=1.10 installed to compile lxpanel." + echo "Install the appropriate package for your distribution," + echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/" + exit 1