From vmiklos at frugalware.org Fri Apr 1 00:12:23 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 00:12:23 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: firefox-sztakidict-hu-0.8-1-i686 Message-ID: <20110331221223.617941358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f1ed1d420632417b8f8bec1d0593c7fa0858c378 commit f1ed1d420632417b8f8bec1d0593c7fa0858c378 Author: Miklos Vajna Date: Fri Apr 1 00:00:45 2011 +0200 firefox-sztakidict-hu-0.8-1-i686 - version bump diff --git a/source/locale-extra/firefox-sztakidict-hu/FrugalBuild b/source/locale-extra/firefox-sztakidict-hu/FrugalBuild index aa7e6b6..4fca0a3 100644 --- a/source/locale-extra/firefox-sztakidict-hu/FrugalBuild +++ b/source/locale-extra/firefox-sztakidict-hu/FrugalBuild @@ -3,9 +3,9 @@ _F_firefox_ext=sztakidict _F_firefox_id=8B74FF9F-0C24-4eed-AD27-96BEBB7A90E3 -pkgver=0.7 +pkgver=0.8 pkgrel=1 -pkgdesc="Online Hungarian<->English dictionary by SZTAKI based on Jaap A. Haitsma's Dictionary Search 0.4" +pkgdesc="Online Hungarian<->English dictionary by SZTAKI" url="http://szotar.sztaki.hu/docs/kozepsoujj.html" rodepends=('firefox>=2.0') archs=('i686' 'x86_64') @@ -14,7 +14,7 @@ source=(http://szotar.sztaki.hu/docs/kozepsoujj/mozilla/${_F_firefox_ext}_$pkgve Finclude firefox-extension pkgname=firefox-sztakidict-hu groups=('locale-extra' 'firefox-extensions') -sha1sums=('588bb6e4ea5f36f9d4362f8898af83434598cbfe' \ +sha1sums=('b012e65802a7307aca0a17b419d826910304f808' \ 'a78391d1c4d8947a63b6066da24bf36f161f7175') build() From vmiklos at frugalware.org Fri Apr 1 01:14:14 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:14:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: rpm-5.2.1-2-i686 Message-ID: <20110331231414.6E83A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ee55f31aef2e834a2f282bcf0d486d6f1ab02337 commit ee55f31aef2e834a2f282bcf0d486d6f1ab02337 Author: Miklos Vajna Date: Fri Apr 1 01:02:39 2011 +0200 rpm-5.2.1-2-i686 - added tmpfiles.d config diff --git a/source/apps-extra/rpm/FrugalBuild b/source/apps-extra/rpm/FrugalBuild index 4742d46..53c7b18 100644 --- a/source/apps-extra/rpm/FrugalBuild +++ b/source/apps-extra/rpm/FrugalBuild @@ -4,7 +4,7 @@ pkgname=rpm pkgver=5.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="Red Hat Package Manager" url="http://rpm5.org" depends=('pcre' 'sqlite3' 'popt' 'beecrypt>=4.2.1-1' 'openssl>=1.0.0' \ @@ -37,7 +37,11 @@ build(){ make || Fdie Fmakeinstall # fixes bug "can't create transaction lock" - Fmkdir /var/lock/rpm + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/rpm.conf << EOF +r $Flocalstatedir/lib/rpm/__db.* +d $Flocalstatedir/lock/rpm 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Fri Apr 1 01:33:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:33:52 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: repoman: handle different 'uname -m' results Message-ID: <20110331233352.34A431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=66aba788e6ec9209d63ade1125d3f2a770648605 commit 66aba788e6ec9209d63ade1125d3f2a770648605 Author: Elentir Date: Fri Apr 1 01:22:16 2011 +0200 repoman: handle different 'uname -m' results diff --git a/repoman b/repoman index 72b37e0..33f40ef 100755 --- a/repoman +++ b/repoman @@ -936,7 +936,13 @@ fi # Initializing variables. version='0.3.1' -[ -z "$arch" ] && arch=`uname -m` +if [ -z "$arch" ]; then + if [[ "`uname -m`" == arm* ]]; then + arch="arm" + else + arch="`uname -m`" + fi +fi mktemp_local="mktemp -p $HOME" sudo_env="sudo -E" unset LANG LC_ALL From vmiklos at frugalware.org Fri Apr 1 01:41:03 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:41:03 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: syncpkgd: lockfiles go under /var/run, no lock Message-ID: <20110331234103.8B9471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=9e3f1616368740fc964d70f5d0fee84f1ac31c80 commit 9e3f1616368740fc964d70f5d0fee84f1ac31c80 Author: Miklos Vajna Date: Fri Apr 1 01:26:06 2011 +0200 syncpkgd: lockfiles go under /var/run, no lock diff --git a/syncpkgd/Makefile b/syncpkgd/Makefile index 18cf836..8e2f0a4 100644 --- a/syncpkgd/Makefile +++ b/syncpkgd/Makefile @@ -17,7 +17,6 @@ install: mkdir -p $(DESTDIR)/var/log/syncpkgd touch $(DESTDIR)/var/log/syncpkgd/daemon.log chown 12:2 $(DESTDIR)/var/log/syncpkgd/daemon.log - mkdir -p $(DESTDIR)/var/lock mkdir -p $(DESTDIR)/var/run touch $(DESTDIR)/var/run/syncpkgd.status chown 12:2 $(DESTDIR)/var/run/syncpkgd.status diff --git a/syncpkgd/rc.syncpkgcd b/syncpkgd/rc.syncpkgcd index c101e83..de3bed1 100755 --- a/syncpkgd/rc.syncpkgcd +++ b/syncpkgd/rc.syncpkgcd @@ -14,13 +14,13 @@ TEXTDOMAINDIR=/lib/initscripts/messages actions=(restart start status stop) daemon=$"package builder client daemon" -pid="cat /var/lock/syncpkgcd.pid 2> /dev/null" +pid="cat /var/run/syncpkgcd.pid 2> /dev/null" rc_start() { start_msg if [[ "$(eval $pid)" == "" ]] ; then - syncpkgcd -d -l /var/log/syncpkgcd.log -p /var/lock/syncpkgcd.pid -u syncpkgd + syncpkgcd -d -l /var/log/syncpkgcd.log -p /var/run/syncpkgcd.pid -u syncpkgd ok $? else ok 999 @@ -32,7 +32,7 @@ rc_stop() stop_msg if [[ "$(eval $pid)" != "" ]] ; then kill $(eval $pid) - rm /var/lock/syncpkgcd.pid + rm /var/run/syncpkgcd.pid ok $? else ok 999 diff --git a/syncpkgd/rc.syncpkgd b/syncpkgd/rc.syncpkgd index 6f632ab..04bfff8 100755 --- a/syncpkgd/rc.syncpkgd +++ b/syncpkgd/rc.syncpkgd @@ -14,13 +14,13 @@ TEXTDOMAINDIR=/lib/initscripts/messages actions=(restart start status stop) daemon=$"package builder daemon" -pid="cat /var/lock/syncpkgd.pid 2> /dev/null" +pid="cat /var/run/syncpkgd.pid 2> /dev/null" rc_start() { start_msg if [[ "$(eval $pid)" == "" ]] ; then - syncpkgd -c /var/log/syncpkgd/clientlogs -d -l /var/log/syncpkgd/daemon.log -p /var/lock/syncpkgd.pid -s /var/run/syncpkgd.status -u syncpkgd + syncpkgd -c /var/log/syncpkgd/clientlogs -d -l /var/log/syncpkgd/daemon.log -p /var/run/syncpkgd.pid -s /var/run/syncpkgd.status -u syncpkgd ok $? else ok 999 @@ -32,7 +32,7 @@ rc_stop() stop_msg if [[ "$(eval $pid)" != "" ]] ; then kill $(eval $pid) - rm /var/lock/syncpkgd.pid + rm /var/run/syncpkgd.pid ok $? else ok 999 From vmiklos at frugalware.org Fri Apr 1 01:41:03 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:41:03 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: syncpkgd: don't write persistent data to /var/run Message-ID: <20110331234103.A893F1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=e486b45489c8fe8b53af43f622b0dbeaf4032177 commit e486b45489c8fe8b53af43f622b0dbeaf4032177 Author: Miklos Vajna Date: Fri Apr 1 01:26:58 2011 +0200 syncpkgd: don't write persistent data to /var/run diff --git a/syncpkgd/Makefile b/syncpkgd/Makefile index 8e2f0a4..1a80531 100644 --- a/syncpkgd/Makefile +++ b/syncpkgd/Makefile @@ -17,8 +17,8 @@ install: mkdir -p $(DESTDIR)/var/log/syncpkgd touch $(DESTDIR)/var/log/syncpkgd/daemon.log chown 12:2 $(DESTDIR)/var/log/syncpkgd/daemon.log - mkdir -p $(DESTDIR)/var/run - touch $(DESTDIR)/var/run/syncpkgd.status - chown 12:2 $(DESTDIR)/var/run/syncpkgd.status + mkdir -p $(DESTDIR)/var/lib + touch $(DESTDIR)/var/lib/syncpkgd.status + chown 12:2 $(DESTDIR)/var/lib/syncpkgd.status touch $(DESTDIR)/var/log/syncpkgcd.log chown 12:2 $(DESTDIR)/var/log/syncpkgcd.log diff --git a/syncpkgd/rc.syncpkgd b/syncpkgd/rc.syncpkgd index 04bfff8..69f5a12 100755 --- a/syncpkgd/rc.syncpkgd +++ b/syncpkgd/rc.syncpkgd @@ -20,7 +20,7 @@ rc_start() { start_msg if [[ "$(eval $pid)" == "" ]] ; then - syncpkgd -c /var/log/syncpkgd/clientlogs -d -l /var/log/syncpkgd/daemon.log -p /var/run/syncpkgd.pid -s /var/run/syncpkgd.status -u syncpkgd + syncpkgd -c /var/log/syncpkgd/clientlogs -d -l /var/log/syncpkgd/daemon.log -p /var/lib/syncpkgd.pid -s /var/lib/syncpkgd.status -u syncpkgd ok $? else ok 999 From vmiklos at frugalware.org Fri Apr 1 01:41:03 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:41:03 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: updates for 1.2.7 Message-ID: <20110331234103.DB5D8135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=b99c0c07a2cbf47226382d4c28a773559d51ddba commit b99c0c07a2cbf47226382d4c28a773559d51ddba Author: Miklos Vajna Date: Fri Apr 1 01:29:29 2011 +0200 updates for 1.2.7 diff --git a/Makefile b/Makefile index 0594328..52b61d5 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -VERSION = 1.2.6 +VERSION = 1.2.7 DATE := $(shell date +%Y-%m-%d) CFLAGS ?= -Wall -Werror -g -O2 -pipe diff --git a/NEWS b/NEWS index 595d3c8..840af44 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +1.2.7 - mkisorelease learned how to produce a base-only cd + - repoman now supports arm + - syncpkgd writes pidfiles under /var/run now + - syncpkgd writes persistent data under /var/lib now 1.2.6 - new mkiso -g option, fwife is now part of the grub menu - fblint does not try to run git ls-files outside a git repo From vmiklos at frugalware.org Fri Apr 1 01:45:21 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 01:45:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pacman-tools-1.2.7-1-i686 Message-ID: <20110331234521.AD1C41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=37100ef1b70c11cee3d644a83549c568dfd29304 commit 37100ef1b70c11cee3d644a83549c568dfd29304 Author: Miklos Vajna Date: Fri Apr 1 01:33:29 2011 +0200 pacman-tools-1.2.7-1-i686 - version bump diff --git a/source/devel/pacman-tools/FrugalBuild b/source/devel/pacman-tools/FrugalBuild index acde7f9..c7cf2b1 100644 --- a/source/devel/pacman-tools/FrugalBuild +++ b/source/devel/pacman-tools/FrugalBuild @@ -4,9 +4,9 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=pacman-tools -pkgver=1.2.6 +pkgver=1.2.7 Fuse $USE_DEVEL && pkgver=1.1.7.13.g544f9ab -pkgrel=3 +pkgrel=1 pkgdesc="Tools for developers for managing packages" url="http://ftp.frugalware.org/pub/other/pacman-tools" depends=('bash' 'perl>=5.10.0-8' 'pacman-g2>=3.7.0-4' 'wget>=1.11.4-2' @@ -17,9 +17,8 @@ archs=('i686' 'x86_64' 'ppc' 'arm') backup=(etc/repoman.conf etc/syncpkg{cd/c,d/d,d/ctl}config.py) up2date="Flasttar $url" if ! Fuse $USE_DEVEL; then - source=($url/$pkgname-$pkgver.tar.gz \ - pacman-tools-arm-arch.patch) - signatures=(${source[0]}.asc "") + source=($url/$pkgname-$pkgver.tar.gz) + signatures=(${source[0]}.asc) else _F_scm_type="git" _F_scm_url="git://git.frugalware.org/pub/other/pacman-tools/pacman-tools" diff --git a/source/devel/pacman-tools/pacman-tools-arm-arch.patch b/source/devel/pacman-tools/pacman-tools-arm-arch.patch deleted file mode 100644 index af66992..0000000 --- a/source/devel/pacman-tools/pacman-tools-arm-arch.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -Naur pacman-tools-1.2.6/repoman pacman-tools-1.2.6/repoman ---- pacman-tools-1.2.6/repoman 2011-02-27 10:28:26.000000000 +0100 -+++ pacman-tools-1.2.6/repoman 2011-03-07 23:09:03.065152768 +0100 -@@ -936,7 +936,13 @@ - - # Initializing variables. - version='0.3.1' --[ -z "$arch" ] && arch=`uname -m` -+if [ -z "$arch" ]; then -+ if [[ "`uname -m`" == arm* ]]; then -+ arch="arm" -+ else -+ arch="`uname -m`" -+ fi -+fi - mktemp_local="mktemp -p $HOME" - sudo_env="sudo -E" - unset LANG LC_ALL From devil505linux at gmail.com Fri Apr 1 07:27:23 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 07:27:23 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: xcfa-4.0.6-1-i686 * version bump Message-ID: <20110401052723.A90A81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f4ad7ce955f42c2114295c3e575ec0a5cc22c207 commit f4ad7ce955f42c2114295c3e575ec0a5cc22c207 Author: Devil505 Date: Fri Apr 1 06:25:25 2011 +0200 xcfa-4.0.6-1-i686 * version bump diff --git a/source/xapps-extra/xcfa/FrugalBuild b/source/xapps-extra/xcfa/FrugalBuild index 64662ad..9be5483 100644 --- a/source/xapps-extra/xcfa/FrugalBuild +++ b/source/xapps-extra/xcfa/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Gholafox pkgname=xcfa -pkgver=4.0.5 +pkgver=4.0.6 pkgrel=1 pkgdesc="Frontend which use miscellaneous external programs to extract and convert music files" url="http://www.xcfa.tuxfamily.org/" @@ -17,4 +17,4 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://download.tuxfamily.org/xcfaudio/xcfa_download/src/ | Flasttar" source=(http://download.tuxfamily.org/xcfaudio/xcfa_download/src/$pkgname-$pkgver.tar.gz) -sha1sums=('180e0beda25e34cc7344108b6c7c74df41ea2b64') +sha1sums=('e051bd672c739d41b34bd43870fbb9f20bac313a') From bouleetbil at frogdev.info Fri Apr 1 11:52:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 11:52:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: librest-0.7.9-1-x86_64 Message-ID: <20110401095259.86B761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a60c3c4a9f23792872cf77af8aedba20d9b85a5c commit a60c3c4a9f23792872cf77af8aedba20d9b85a5c Author: bouleetbil Date: Fri Apr 1 11:53:04 2011 +0200 librest-0.7.9-1-x86_64 *Version bump diff --git a/source/gnome/librest/FrugalBuild b/source/gnome/librest/FrugalBuild index 97ca912..26cb05a 100644 --- a/source/gnome/librest/FrugalBuild +++ b/source/gnome/librest/FrugalBuild @@ -3,7 +3,7 @@ pkgname=librest _F_gnome_name=rest -pkgver=0.7.8 +pkgver=0.7.9 pkgrel=1 pkgdesc="This library was designed to make it easier to access web services" depends=('libsoup-gnome>=2.32.0' 'libxml2') @@ -11,6 +11,6 @@ makedepends=('gtk-doc' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('e0440da29d604bceafc4d18b99ef5b2b20e1f501') +sha1sums=('1628c0a1733e0e6ebc4cb8b027f30a4e5f0f25d2') # optimization OK From bouleetbil at frogdev.info Fri Apr 1 12:10:40 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 12:10:40 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libsocialweb-0.25.14-1-x86_64 Message-ID: <20110401101040.6A04E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8909b42bd47a87fd5611d2ab84e24d54e37433db commit 8909b42bd47a87fd5611d2ab84e24d54e37433db Author: bouleetbil Date: Fri Apr 1 12:10:48 2011 +0200 libsocialweb-0.25.14-1-x86_64 *Version bump diff --git a/source/gnome/libsocialweb/FrugalBuild b/source/gnome/libsocialweb/FrugalBuild index 552ef82..9a732af 100644 --- a/source/gnome/libsocialweb/FrugalBuild +++ b/source/gnome/libsocialweb/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=libsocialweb -pkgver=0.25.13 -pkgrel=2 +pkgver=0.25.14 +pkgrel=1 pkgdesc="socialweb library to fetch data from social service" depends=('libxml2>=2.7.8' 'librest' 'json-glib' 'networkmanager>=0.8.995') makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'vala') @@ -26,7 +26,7 @@ Fconfopts="$Fconfopts--with-gnome --with-online=networkmanager --disable-static --enable-vala-bindings" #librest youtube is broken don't enable for now -sha1sums=('76e37e01e157b5a99084f176d4425160f3e4675f' \ +sha1sums=('518499c6fa4f9a605e6521b916f8716bc07da9c6' \ 'eb0b070c2409722c6b6a4388ecb638e878a45d0d' \ '9e5f4863ce6d3e6a5eb3f0cb6370d596d3889942' \ 'd6b374906cd754a0150983c384506f7e8c82d152' \ From bouleetbil at frogdev.info Fri Apr 1 12:26:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 12:26:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libdmapsharing-2.9.7-1-x86_64 Message-ID: <20110401102622.CC4581358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d1b8f0ae3d2ec2785e80fa95039b81eb8b8f28c8 commit d1b8f0ae3d2ec2785e80fa95039b81eb8b8f28c8 Author: bouleetbil Date: Fri Apr 1 12:26:30 2011 +0200 libdmapsharing-2.9.7-1-x86_64 *Version bump diff --git a/source/xlib/libdmapsharing/FrugalBuild b/source/xlib/libdmapsharing/FrugalBuild index 3ea08d5..bc7674a 100644 --- a/source/xlib/libdmapsharing/FrugalBuild +++ b/source/xlib/libdmapsharing/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libdmapsharing -pkgver=2.9.6 +pkgver=2.9.7 pkgrel=1 pkgdesc="A library that implements the DMAP family of protocols" url="http://www.flyn.org/projects/libdmapsharing" @@ -14,6 +14,6 @@ makedepends=('vala') groups=('xlib') options=('scriptlet') archs=('i686' 'x86_64' 'ppc') -sha1sums=('64386c181e543aceffcb76c1b454990bcb05c4f5') +sha1sums=('eed5524e4974781036c5901735d598f17f0bc84e') # optimization OK From vmiklos at frugalware.org Fri Apr 1 12:40:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 12:40:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: easystroke-0.5.4-1-i686 Message-ID: <20110401104052.D450D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9febdb02466f1beffd3d919285daddd5480d7af7 commit 9febdb02466f1beffd3d919285daddd5480d7af7 Author: Miklos Vajna Date: Fri Apr 1 12:29:03 2011 +0200 easystroke-0.5.4-1-i686 - fix perms diff --git a/source/xapps-extra/easystroke/FrugalBuild b/source/xapps-extra/easystroke/FrugalBuild old mode 100755 new mode 100644 From vmiklos at frugalware.org Fri Apr 1 13:08:38 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 13:08:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fakeroot-1.15.1-1-i686 Message-ID: <20110401110838.7C11B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c6e2949b963503622d1b622d330e83460b6792a2 commit c6e2949b963503622d1b622d330e83460b6792a2 Author: Miklos Vajna Date: Fri Apr 1 12:46:33 2011 +0200 fakeroot-1.15.1-1-i686 - version bump diff --git a/source/devel/fakeroot/FrugalBuild b/source/devel/fakeroot/FrugalBuild index 8a0eb82..ab783d2 100644 --- a/source/devel/fakeroot/FrugalBuild +++ b/source/devel/fakeroot/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: Miklos Vajna pkgname=fakeroot -pkgver=1.14.5 +pkgver=1.15.1 pkgrel=1 pkgdesc="Gives a fake root environment" url="http://packages.debian.org/unstable/utils/fakeroot" @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc' 'arm') Fpkgversep="_" up2date="Flastarchive http://ftp.debian.org/debian/pool/main/f/fakeroot/ .orig.tar.bz2" source=(http://ftp.debian.org/debian/pool/main/f/fakeroot/${pkgname}_$pkgver.orig.tar.bz2) -sha1sums=('d7610cb71044aa49e6a3e55fdc1af468f7e0858d') +sha1sums=('5d24ba7f6c56df81f8e116f9712495594a9ddbce') _F_cd_path="$pkgname-$pkgver" # optimization OK From vmiklos at frugalware.org Fri Apr 1 13:08:38 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 13:08:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libvirt-0.8.8-4-i686 Message-ID: <20110401110838.8C0C51358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0283438b97c033ca20c01a902353c5ae218d7d52 commit 0283438b97c033ca20c01a902353c5ae218d7d52 Author: Miklos Vajna Date: Fri Apr 1 12:56:44 2011 +0200 libvirt-0.8.8-4-i686 - added tmpfiles.d config diff --git a/source/xlib-extra/libvirt/FrugalBuild b/source/xlib-extra/libvirt/FrugalBuild index 02e7ce6..7ed0cd3 100644 --- a/source/xlib-extra/libvirt/FrugalBuild +++ b/source/xlib-extra/libvirt/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libvirt pkgver=0.8.8 -pkgrel=3 +pkgrel=4 pkgdesc="libvirt is a library providing access to information from various virtualization tools" url="http://libvirt.org" -depends=('libxml2' 'gnutls' 'cyrus-sasl' 'parted>=2.3' 'lvm2' 'libnl') +depends=('libxml2' 'gnutls' 'cyrus-sasl' 'parted>=2.3' 'lvm2' 'libnl' 'systemd') rodepends=('dnsmasq') makedepends=('python' 'gtk-doc') groups=('xlib-extra') @@ -37,6 +37,14 @@ build() { Fsplit libvirt-python usr/share/doc/libvirt-python-$pkgver Frcd2 libvirtd Frcd2 libvirt-guests + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/libvirt.conf << EOF +d $Flocalstatedir/run/libvirt/lxc 0755 root root - +d $Flocalstatedir/run/libvirt/network 0755 root root - +d $Flocalstatedir/run/libvirt/qemu 0755 root root - +d $Flocalstatedir/run/libvirt/uml 0755 root root - +EOF } # optimization OK From iron at frugalware.org Fri Apr 1 13:21:29 2011 From: iron at frugalware.org (Krisztian VASAS) Date: Fri, 1 Apr 2011 13:21:29 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: squid-3.1.11-1-x86_64 - version bump - fixed up2date - added tmpfiles.d config Message-ID: <20110401112129.D28B71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1c041632c8613f32f20e7ed08f0bff8e1cde7d03 commit 1c041632c8613f32f20e7ed08f0bff8e1cde7d03 Author: Krisztian VASAS Date: Fri Apr 1 12:07:56 2011 +0200 squid-3.1.11-1-x86_64 - version bump - fixed up2date - added tmpfiles.d config diff --git a/source/network-extra/squid/FrugalBuild b/source/network-extra/squid/FrugalBuild index 10d8a8a..e5c663e 100644 --- a/source/network-extra/squid/FrugalBuild +++ b/source/network-extra/squid/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=squid -pkgver=3.1.9 +pkgver=3.1.11 pkgrel=1 pkgdesc="Squid Web Proxy Cache" url="http://www.squid-cache.org/" @@ -11,12 +11,10 @@ rodepends=('dcron') groups=('network-extra') archs=('i686' 'x86_64') backup=(etc/squid/{mime,msntauth,squid}.conf) -up2date="lynx -dump $url/Versions/|grep -2 'Production'|sed -n 's/.* \([0-9]\.[0-9]\.[0-9]\) .*/\1/;$ p'" +up2date="lynx -source -dump $url/Versions/ | grep -8 'Production' | sed -n 's/.*>\(.*\)<.*/\1/;$ p'" source=(http://www.squid-cache.org/Versions/v3/3.1/$pkgname-$pkgver.tar.bz2 \ rc.squid squid) -sha1sums=('d80045c7ab0cadbaeafdcae42d9dd7d1861fc4c1' \ - 'f732ab92b6c301ac12cbb295e5c4b2e3bed36fb2' \ - '53042dd86e482d4a6eff9e34ecb01352439c5026') +signatures=("${source[0]}.asc" '' '') build() { @@ -45,6 +43,11 @@ build() Fexe /etc/cron.weekly/squid Fsed 'allow manager localhost' 'allow localhost' $Fdestdir/etc/squid/squid.conf + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/squid.conf << EOF +d $Flocalstatedir/run 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Fri Apr 1 13:40:53 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 1 Apr 2011 13:40:53 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: k3b-2.0.2-2-i686 Message-ID: <20110401114053.DD6CC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4983271e3d403e5da945349fd2ceb7cd26c46e2d commit 4983271e3d403e5da945349fd2ceb7cd26c46e2d Author: Miklos Vajna Date: Fri Apr 1 13:27:54 2011 +0200 k3b-2.0.2-2-i686 - fix build by adding docbook-xsl to makedepends - no longer depend on deprecated hal diff --git a/source/kde/k3b/FrugalBuild b/source/kde/k3b/FrugalBuild index 097e2f3..86d28ca 100644 --- a/source/kde/k3b/FrugalBuild +++ b/source/kde/k3b/FrugalBuild @@ -3,7 +3,7 @@ pkgname=k3b pkgver=2.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="The CD Kreator" groups=('kde') archs=('i686' 'x86_64' 'ppc') @@ -11,10 +11,10 @@ _F_sourceforge_pkgver=$pkgver$pkgextraver _F_sourceforge_ext=".tar.bz2" _F_cmakekde_final=OFF Finclude kde sourceforge -depends=('flac>=1.1.4' 'libsamplerate' 'hal>=0.5.14-7' 'libmusicbrainz' 'taglib' 'ffmpeg>=0.6-2' 'cdrdao' \ +depends=('flac>=1.1.4' 'libsamplerate' 'libmusicbrainz' 'taglib' 'ffmpeg>=0.6-2' 'cdrdao' \ "kdelibs>=${_F_kde_ver}" 'cdrtools' 'cdparanoia' 'normalize' 'sox>=14.2.0' 'dvd+rw-tools' 'libmad' \ 'libvorbis' 'vcdimager' 'libsndfile' 'libdvdread' 'libmpcdec' "libkcddb>=${_F_kde_ver}" "libqt3support>=$_F_kde_qtver") -makedepends=("${makedepends[@]}" "kdelibs-compiletime>=${_F_kde_ver}" 'docbook-xml') +makedepends=("${makedepends[@]}" "kdelibs-compiletime>=${_F_kde_ver}" 'docbook-xml' 'docbook-xsl') replaces=('k3bmonkeyaudioplugin' 'kavi2svcd' 'konqkonv' 'konqburn' 'kvideoencoder') url="http://www.k3b.org/" source=($source README.Frugalware k3bsetup-X-KDE-RootOnly.patch) From iron at frugalware.org Fri Apr 1 13:44:01 2011 From: iron at frugalware.org (Krisztian VASAS) Date: Fri, 1 Apr 2011 13:44:01 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mysql-5.5.10-2-x86_64 - added tmpfiles.d config Message-ID: <20110401114401.9FBCC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=88097fb7f2b3c8821c75b967d37cb700489e0434 commit 88097fb7f2b3c8821c75b967d37cb700489e0434 Author: Krisztian VASAS Date: Fri Apr 1 12:33:38 2011 +0200 mysql-5.5.10-2-x86_64 - added tmpfiles.d config diff --git a/source/apps-extra/mysql/FrugalBuild b/source/apps-extra/mysql/FrugalBuild index 021ea4f..42c501d 100644 --- a/source/apps-extra/mysql/FrugalBuild +++ b/source/apps-extra/mysql/FrugalBuild @@ -3,7 +3,7 @@ pkgname=mysql pkgver=5.5.10 -pkgrel=1 +pkgrel=2 extrapkgver= pkgdesc="A fast SQL database server" url="http://www.mysql.com/" @@ -54,12 +54,15 @@ build() Ffile my.cnf /etc/my.cnf Frcd2 mysqld Ffile /etc/sysconfig/mysqld - Fmkdir /var/run/mysql - chown 27.27 $Fdestdir/var/run/mysql || Fdie Fmv usr/mysql-test usr/share/mysql Fmv usr/sql-bench usr/share/mysql Fmv usr/docs/ChangeLog /usr/share/doc/mysql-$pkgver Frm usr/docs usr/data + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/mysql.conf << EOF +d $Flocalstatedir/run/mysql 0755 mysql mysql - +EOF Fsplit libmysqlclient usr/lib/libmysqlclient* usr/include/mysql From bouleetbil at frogdev.info Fri Apr 1 14:42:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 14:42:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: telepathy-glib-0.14.3-1-x86_64 Message-ID: <20110401124212.710371358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c3013fe3785af613dafbab18eec242c3f9bbae03 commit c3013fe3785af613dafbab18eec242c3f9bbae03 Author: bouleetbil Date: Fri Apr 1 14:42:18 2011 +0200 telepathy-glib-0.14.3-1-x86_64 *Version bump diff --git a/source/lib/telepathy-glib/FrugalBuild b/source/lib/telepathy-glib/FrugalBuild index beadce4..238bc97 100644 --- a/source/lib/telepathy-glib/FrugalBuild +++ b/source/lib/telepathy-glib/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=telepathy-glib -pkgver=0.14.1 +pkgver=0.14.3 pkgrel=1 pkgdesc="A glib library to ease writing telepathy clients in glib." url="http://telepathy.freedesktop.org/wiki/" @@ -13,7 +13,7 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/telepathy-glib/ | Flasttar" source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('459a52c9045e252ffc1af6b9696ecba5685e09f7') +sha1sums=('e4ee2ae55cc3be91fb8772725c364e9fb54dba30') Fconfopts="${Fconfopts[@]} --enable-vala-bindings" # optimization OK From bouleetbil at frogdev.info Fri Apr 1 14:48:24 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 14:48:24 +0200 (CEST) Subject: [Frugalware-git] gnometesting: telepathy-gabble-0.11.10-1-x86_64 Message-ID: <20110401124824.C5BD71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2e253764a78184f359db8ed58d8b042442d8a286 commit 2e253764a78184f359db8ed58d8b042442d8a286 Author: bouleetbil Date: Fri Apr 1 14:48:33 2011 +0200 telepathy-gabble-0.11.10-1-x86_64 *Version bump diff --git a/source/lib/telepathy-gabble/FrugalBuild b/source/lib/telepathy-gabble/FrugalBuild index b3cb8df..076969a 100644 --- a/source/lib/telepathy-gabble/FrugalBuild +++ b/source/lib/telepathy-gabble/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=telepathy-gabble -pkgver=0.11.8 +pkgver=0.11.10 pkgrel=1 pkgdesc="Telepathy is a D-Bus framework for unifying real time communication." url="http://telepathy.freedesktop.org/" @@ -14,7 +14,7 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/telepathy-gabble | Flasttar" source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/$pkgname-$pkgver.tar.gz) -sha1sums=('fe6cccf47901e6ce99d94e551fa782b86275e2fe') +sha1sums=('26ca4e8a98b01b78007f88caea56b08ae5070fdd') unset MAKEFLAGS # optimization OK From devil505linux at gmail.com Fri Apr 1 16:57:58 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 16:57:58 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libzeitgeist-0.3.10-1-i686 * version bump Message-ID: <20110401145758.59F5D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=63208c8b6332592a7eda3316c179192427a01f31 commit 63208c8b6332592a7eda3316c179192427a01f31 Author: Devil505 Date: Fri Apr 1 15:55:44 2011 +0200 libzeitgeist-0.3.10-1-i686 * version bump diff --git a/source/lib-extra/libzeitgeist/FrugalBuild b/source/lib-extra/libzeitgeist/FrugalBuild index 47ef3c6..31d875c 100644 --- a/source/lib-extra/libzeitgeist/FrugalBuild +++ b/source/lib-extra/libzeitgeist/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=libzeitgeist -pkgver=0.3.8 +pkgver=0.3.10 _pkgmainver=0.3 pkgrel=1 pkgdesc="Zeitgeist client library" @@ -13,6 +13,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/${_pkgmainver}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz) -sha1sums=('7d7ad6baee92ac2f6d728258a01b76d1dc4602bf') +sha1sums=('3d6719c7f30ac7d66e4da267f23692d39fd99840') # optimization OK From devil505linux at gmail.com Fri Apr 1 16:59:24 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 16:59:24 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libdbusmenu-0.4.1-1-i686 * version bump Message-ID: <20110401145924.96B901358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bbf15b76e8efde2ba4787b0d9d3ca23a75514991 commit bbf15b76e8efde2ba4787b0d9d3ca23a75514991 Author: Devil505 Date: Fri Apr 1 15:57:58 2011 +0200 libdbusmenu-0.4.1-1-i686 * version bump diff --git a/source/xlib-extra/libdbusmenu/FrugalBuild b/source/xlib-extra/libdbusmenu/FrugalBuild index 62aef79..9c8b440 100644 --- a/source/xlib-extra/libdbusmenu/FrugalBuild +++ b/source/xlib-extra/libdbusmenu/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=libdbusmenu -pkgver=0.4.0 +pkgver=0.4.1 pkgrel=1 pkgdesc="A small little library that was created by pulling out some common code out of indicator-applet." url="https://launchpad.net/dbusmenu" @@ -13,7 +13,7 @@ groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url" source=(http://launchpad.net/dbusmenu/0.4/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('01e5639b6526c1c4ef126757a1feb04e4f25b376') +sha1sums=('973ddfe2d4463944062510ec30f0647ca078c2aa') subpkgs=("$pkgname-gtk") subdescs=("${subdescs[@]}" "GTK bindings for libdbusmenu") From devil505linux at gmail.com Fri Apr 1 17:00:38 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 17:00:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libindicate-0.5.0-1-i686 * version bump Message-ID: <20110401150038.3EADE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2d11e51f5b44b9f9b416e5fd4397e0a027e356de commit 2d11e51f5b44b9f9b416e5fd4397e0a027e356de Author: Devil505 Date: Fri Apr 1 15:59:07 2011 +0200 libindicate-0.5.0-1-i686 * version bump diff --git a/source/xlib-extra/libindicate/FrugalBuild b/source/xlib-extra/libindicate/FrugalBuild index fd6cb30..11b18ce 100644 --- a/source/xlib-extra/libindicate/FrugalBuild +++ b/source/xlib-extra/libindicate/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=libindicate -pkgver=0.4.93 -pkgrel=2 +pkgver=0.5.0 +pkgrel=1 pkgdesc="A small library for applications to raise 'flags' on DBus for other components of the desktop to pick up and visualize." url="https://launchpad.net/libindicate" depends=('libdbusmenu>=0.3.98-3') @@ -14,7 +14,7 @@ groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url" source=($url/0.5/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz) -sha1sums=('642aa0ebdeab085c22293cd9d59eec30b7218f19') +sha1sums=('a421b03720486fd090f608326d3272acf751eaa2') subpkgs=("${subpkgs[@]}" "$pkgname-gtk") subdescs=("${subdescs[@]}" "GTK bindings for libindicate") From devil505linux at gmail.com Fri Apr 1 17:01:26 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 17:01:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-datetime-0.2.1-1-i686 * version bump Message-ID: <20110401150126.C3C031358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=920a0792f41cb5567e8ea9aedd39b1143bfc1c4e commit 920a0792f41cb5567e8ea9aedd39b1143bfc1c4e Author: Devil505 Date: Fri Apr 1 16:00:00 2011 +0200 indicator-datetime-0.2.1-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-datetime/FrugalBuild b/source/ayatana-extra/indicator-datetime/FrugalBuild index 32c856d..317bada 100644 --- a/source/ayatana-extra/indicator-datetime/FrugalBuild +++ b/source/ayatana-extra/indicator-datetime/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-datetime -pkgver=0.2.0 +pkgver=0.2.1 pkgrel=1 pkgdesc="The Date and Time Indicator" url="https://launchpad.net/indicator-datetime" @@ -15,7 +15,7 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('fddf5245b6c4ae44ca66c0677dd0e56abbcc6e60') +sha1sums=('ff461a819dc4d5ce30f9028e804707ed78154bb3') build() { Fcd From devil505linux at gmail.com Fri Apr 1 17:01:37 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 17:01:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-me-0.2.17-1-i686 * version bump Message-ID: <20110401150137.EC7081358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=252b834e8f5aed2d24641182be7d18a62f2c70fd commit 252b834e8f5aed2d24641182be7d18a62f2c70fd Author: Devil505 Date: Fri Apr 1 16:00:11 2011 +0200 indicator-me-0.2.17-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-me/FrugalBuild b/source/ayatana-extra/indicator-me/FrugalBuild index 8d658d0..2c13f89 100644 --- a/source/ayatana-extra/indicator-me/FrugalBuild +++ b/source/ayatana-extra/indicator-me/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-me -pkgver=0.2.16 +pkgver=0.2.17 pkgrel=1 pkgdesc="A menu in the menu bar that represents you, the user, and the things that represent you in the computer." url="https://launchpad.net/indicator-me" @@ -12,5 +12,5 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=(http://launchpad.net/${pkgname}/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('60217f9f479650b4169fb044a1bb9ebec7ba0c72') +sha1sums=('74b752ef6d102c7c6216aad7fb4cfc7bf7369934') From devil505linux at gmail.com Fri Apr 1 17:02:35 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 17:02:35 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nux-0.9.38-1-i686 * version bump Message-ID: <20110401150235.1203B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bc4963a473c8b3971510d450d1565dfa5c65c70b commit bc4963a473c8b3971510d450d1565dfa5c65c70b Author: Devil505 Date: Fri Apr 1 16:01:08 2011 +0200 nux-0.9.38-1-i686 * version bump diff --git a/source/ayatana-extra/nux/FrugalBuild b/source/ayatana-extra/nux/FrugalBuild index fc4464e..0d25723 100644 --- a/source/ayatana-extra/nux/FrugalBuild +++ b/source/ayatana-extra/nux/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=nux -pkgver=0.9.36 +pkgver=0.9.38 pkgrel=1 pkgdesc="An OpenGL toolkit (for Unity)" url="https://launchpad.net/nux" @@ -14,6 +14,6 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.9/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('a1c72aa5ef861216921c1ef9a7fdf24e3b910f69') +sha1sums=('6a447fe93205a2a4c10492957013fdd58ab48204') # optimization OK From devil505linux at gmail.com Fri Apr 1 17:42:51 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 17:42:51 +0200 (CEST) Subject: [Frugalware-git] gnometesting: unity-3.8.2-1-i686 * version bump Message-ID: <20110401154251.8EFAB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a798d5a54bb46da8da3711b62231658c2dfe7af5 commit a798d5a54bb46da8da3711b62231658c2dfe7af5 Author: Devil505 Date: Fri Apr 1 16:32:31 2011 +0200 unity-3.8.2-1-i686 * version bump diff --git a/source/ayatana-extra/unity/FrugalBuild b/source/ayatana-extra/unity/FrugalBuild index 7c403ae..6e8cb66 100644 --- a/source/ayatana-extra/unity/FrugalBuild +++ b/source/ayatana-extra/unity/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Devil505 pkgname=unity -pkgver=3.6.8 +pkgver=3.8.2 branch=3.0 pkgrel=1 pkgdesc="A desktop experience designed for efficiency of space and interaction" url="https://launchpad.net/unity/" -depends=('compiz-core>=0.9.4-2' 'nux>=0.9.36' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') +depends=('compiz-core>=0.9.4-2' 'nux>=0.9.38' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') makedepends=('vala' 'intltool' 'gobject-introspection' 'boost') groups=('ayatana-extra') _F_cmake_confopts="-DCMAKE_BUILD_TYPE=Release -DCOMPIZ_PLUGIN_INSTALL_TYPE=package" @@ -17,7 +17,7 @@ Finclude cmake gnome-scriptlet archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/$branch/$pkgver/+download/$pkgname-$pkgver.tar.bz2 frugalware-icon.png unity-3.2.14-disable_tests.patch) -sha1sums=('a2736c1ecba9cd7e844cbbe0665ad01dd40a10e3' \ +sha1sums=('fbe9f4207d8f7f3b848a0019f6cd0bbd46741c2f' \ '74be0bbad4cda0b411fb4f8e62c5fa401535aa8b' \ '14b8f00bc15e7789fc81a87a0b7f4505baf43957') From hermier at frugalware.org Fri Apr 1 17:45:45 2011 From: hermier at frugalware.org (Michel Hermier) Date: Fri, 1 Apr 2011 17:45:45 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: virtuoso-6.1.0-2-i686 Message-ID: <20110401154545.CBDB91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=877627f309ee74ba4e8ea39966978fdc0457a82a commit 877627f309ee74ba4e8ea39966978fdc0457a82a Author: Michel Hermier Date: Fri Apr 1 17:43:23 2011 +0200 virtuoso-6.1.0-2-i686 diff --git a/source/apps-extra/virtuoso/FrugalBuild b/source/apps/virtuoso/FrugalBuild similarity index 97% rename from source/apps-extra/virtuoso/FrugalBuild rename to source/apps/virtuoso/FrugalBuild index 710f993..fac6bf2 100644 --- a/source/apps-extra/virtuoso/FrugalBuild +++ b/source/apps/virtuoso/FrugalBuild @@ -9,7 +9,7 @@ _F_sourceforge_name="$pkgname-opensource" Finclude sourceforge url="http://www.openlinksw.com/dataspace/dav/wiki/Main/" depends=('glibc' 'libldap' 'openssl>=1.0.0') -groups=('apps-extra') +groups=('apps') archs=('i686' 'x86_64' 'ppc') source=($source build-only-what-kde-need.patch openssl.diff) Fconfopts="$Fconfopts --disable-static" diff --git a/source/apps-extra/virtuoso/build-only-what-kde-need.patch b/source/apps/virtuoso/build-only-what-kde-need.patch similarity index 100% rename from source/apps-extra/virtuoso/build-only-what-kde-need.patch rename to source/apps/virtuoso/build-only-what-kde-need.patch diff --git a/source/apps-extra/virtuoso/openssl.diff b/source/apps/virtuoso/openssl.diff similarity index 100% rename from source/apps-extra/virtuoso/openssl.diff rename to source/apps/virtuoso/openssl.diff From bouleetbil at frogdev.info Fri Apr 1 17:48:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 17:48:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: telepathy-logger-0.2.8-1-x86_64 Message-ID: <20110401154804.9FEF01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c7e896aa1eddc56172a26ed4b6a48ba82bc28168 commit c7e896aa1eddc56172a26ed4b6a48ba82bc28168 Author: bouleetbil Date: Fri Apr 1 17:48:05 2011 +0200 telepathy-logger-0.2.8-1-x86_64 *Version bump diff --git a/source/lib/telepathy-logger/FrugalBuild b/source/lib/telepathy-logger/FrugalBuild index 7ce689e..2583f2c 100644 --- a/source/lib/telepathy-logger/FrugalBuild +++ b/source/lib/telepathy-logger/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-logger -pkgver=0.2.7 +pkgver=0.2.8 pkgrel=1 pkgdesc="telepathy logger service" url="http://telepathy.freedesktop.org/releases/$pkgname" @@ -12,6 +12,6 @@ depends=('libxml2>=2.7.8' 'dbus-glib' 'telepathy-glib' 'libxslt') makedepends=('intltool' 'gnome-doc-utils' 'gobject-introspection') groups=('lib') archs=('i686' 'x86_64' 'ppc') -sha1sums=('8addf9a26b120ce756f2e71543ea8dfc03068716') +sha1sums=('4837a2fdab69fac1376247823b197aaeec63999b') # optimization OK From hermier at frugalware.org Fri Apr 1 18:01:42 2011 From: hermier at frugalware.org (Michel Hermier) Date: Fri, 1 Apr 2011 18:01:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libssh-0.4.8-1-i686 Message-ID: <20110401160142.1501A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1928b59102250fdd4103cc70c1572900690fa4b9 commit 1928b59102250fdd4103cc70c1572900690fa4b9 Author: Michel Hermier Date: Fri Apr 1 18:00:56 2011 +0200 libssh-0.4.8-1-i686 * Move to lib for kde. diff --git a/source/lib-extra/libssh/FrugalBuild b/source/lib/libssh/FrugalBuild similarity index 95% rename from source/lib-extra/libssh/FrugalBuild rename to source/lib/libssh/FrugalBuild index ea2055e..b45e53c 100644 --- a/source/lib-extra/libssh/FrugalBuild +++ b/source/lib/libssh/FrugalBuild @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="The SSH library" url="http://www.libssh.org/" depends=('openssl>=1.0.0' 'zlib') -groups=('lib-extra') +groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url/files/${pkgver%%.?}" source=($url/files/${pkgver%%.?}/libssh-$pkgver.tar.gz) From bouleetbil at frogdev.info Fri Apr 1 18:09:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:09:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-2.91.93-2-x86_64 *rebuild with latest telepathy-logger Message-ID: <20110401160934.37A111358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=aadf4d1d9836fea4ad18a3c5ffe85aa4096f491b commit aadf4d1d9836fea4ad18a3c5ffe85aa4096f491b Author: bouleetbil Date: Fri Apr 1 18:09:21 2011 +0200 gnome-shell-2.91.93-2-x86_64 *rebuild with latest telepathy-logger diff --git a/source/gnome/gnome-shell/FrugalBuild b/source/gnome/gnome-shell/FrugalBuild index de7f022..ce0624b 100644 --- a/source/gnome/gnome-shell/FrugalBuild +++ b/source/gnome/gnome-shell/FrugalBuild @@ -3,14 +3,14 @@ pkgname=gnome-shell pkgver=2.91.93 -pkgrel=1 +pkgrel=2 pkgdesc="Window management and application launching for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'mutter>=2.91.93' 'gnome-desktop' 'gjs>=0.7' \ 'gnome-menus' 'librsvg' 'evolution-data-server' 'gconf' \ 'xulrunner' 'gst-plugins-base' 'pulseaudio' 'gnome-themes-standard' \ 'gnome-bluetooth' 'gtk+3>=3.0.2' 'telepathy-glib' 'nm-applet' \ - 'telepathy-logger>=0.2.7') + 'telepathy-logger>=0.2.8') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ 'gobject-introspection' 'krb5') groups=('gnome') From bouleetbil at frogdev.info Fri Apr 1 18:14:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:14:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: empathy-2.91.93-2-x86_64 Message-ID: <20110401161454.78A531358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5342c6b4a5fdd50a9d1c4b75db0bd09cb23dbeb8 commit 5342c6b4a5fdd50a9d1c4b75db0bd09cb23dbeb8 Author: bouleetbil Date: Fri Apr 1 18:14:51 2011 +0200 empathy-2.91.93-2-x86_64 *rebuild with latest telepathy-logger diff --git a/source/gnome/empathy/FrugalBuild b/source/gnome/empathy/FrugalBuild index ed9516a..6b96a74 100644 --- a/source/gnome/empathy/FrugalBuild +++ b/source/gnome/empathy/FrugalBuild @@ -8,7 +8,7 @@ USE_SENDTO=${USE_SENDTO:-"n"} pkgname=empathy pkgver=2.91.93 -pkgrel=1 +pkgrel=2 pkgdesc="Empathy consists of a rich set of reusable instant messaging widgets" depends=('telepathy-glib' 'libxml2' 'enchant' 'ca-certificates' \ 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'e2fsprogs' \ @@ -19,7 +19,7 @@ depends=('telepathy-glib' 'libxml2' 'enchant' 'ca-certificates' \ 'evolution-data-server>=2.90.0' 'libcanberra-gtk' 'telepathy-farsight' \ 'webkit-gtk3' 'unique' 'libkrb5' 'folks>=0.4.0' 'telepathy-logger' \ 'ca-certificates' 'gsettings-desktop-schemas' 'libnotify>=0.7' 'telepathy-butterfly' \ - 'telepathy-logger>=0.2.7' 'networkmanager' 'glib-networking') + 'telepathy-logger>=0.2.8' 'networkmanager' 'glib-networking') makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gnome-doc-utils' 'krb5') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From hermier at frugalware.org Fri Apr 1 18:20:44 2011 From: hermier at frugalware.org (Michel Hermier) Date: Fri, 1 Apr 2011 18:20:44 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libssh-0.4.8-2-i686 Message-ID: <20110401162044.E5A7F1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7ebc531600d70114c62015a42b057da1a99f6ee3 commit 7ebc531600d70114c62015a42b057da1a99f6ee3 Author: Michel Hermier Date: Fri Apr 1 18:20:01 2011 +0200 libssh-0.4.8-2-i686 * Rebuild after moving. diff --git a/source/lib/libssh/FrugalBuild b/source/lib/libssh/FrugalBuild index b45e53c..ce445d5 100644 --- a/source/lib/libssh/FrugalBuild +++ b/source/lib/libssh/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libssh pkgver=0.4.8 -pkgrel=1 +pkgrel=2 pkgdesc="The SSH library" url="http://www.libssh.org/" depends=('openssl>=1.0.0' 'zlib') From hermier at frugalware.org Fri Apr 1 18:20:44 2011 From: hermier at frugalware.org (Michel Hermier) Date: Fri, 1 Apr 2011 18:20:44 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: virtuoso-6.1.0-3-i686 Message-ID: <20110401162044.B4CC21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e1829e874f6f427c7e6f30f80791fa8bf523f6cb commit e1829e874f6f427c7e6f30f80791fa8bf523f6cb Author: Michel Hermier Date: Fri Apr 1 18:19:05 2011 +0200 virtuoso-6.1.0-3-i686 * Rebuild after moving. diff --git a/source/apps/virtuoso/FrugalBuild b/source/apps/virtuoso/FrugalBuild index fac6bf2..0169458 100644 --- a/source/apps/virtuoso/FrugalBuild +++ b/source/apps/virtuoso/FrugalBuild @@ -3,7 +3,7 @@ pkgname=virtuoso pkgver=6.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="Virtuoso is an innovative Universal Server platform for SQL, RDF, XML, and Web Services" _F_sourceforge_name="$pkgname-opensource" Finclude sourceforge From bouleetbil at frogdev.info Fri Apr 1 18:31:18 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:31:18 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtksourceviewmm-2.91.9-1-x86_64 Message-ID: <20110401163119.142FE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2900ecb7795094ff98e2349e2ffc3df7934cfb87 commit 2900ecb7795094ff98e2349e2ffc3df7934cfb87 Author: bouleetbil Date: Fri Apr 1 18:31:20 2011 +0200 gtksourceviewmm-2.91.9-1-x86_64 *Version bump diff --git a/source/gnome-extra/gtksourceviewmm/FrugalBuild b/source/gnome-extra/gtksourceviewmm/FrugalBuild index 95d9280..43e8bb6 100644 --- a/source/gnome-extra/gtksourceviewmm/FrugalBuild +++ b/source/gnome-extra/gtksourceviewmm/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=gtksourceviewmm -pkgver=2.91.5 -pkgrel=2 +pkgver=2.91.9 +pkgrel=1 pkgdesc="gtksourceviewmm is C++ API for gtksourceview" depends=('gtksourceview3' 'gtkmm') groups=('gnome-extra') options=('scriptlet') Finclude gnome archs=('i686' 'x86_64') -sha1sums=('54a83ddd5cd946f73180d51138f7a1781c655bb1') +sha1sums=('c952840ac05e5fb5ba2b7ae6c9ffc32c72b88505') replaces=('libgtksourceviewmm') conflicts=('libgtksourceviewmm') provides=('libgtksourceviewmm') From bouleetbil at frogdev.info Fri Apr 1 18:38:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:38:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: connman-0.72-1-x86_64 Message-ID: <20110401163802.5D6A11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a73d03c4b334502a9874fd41b5d48d6b4a3d1273 commit a73d03c4b334502a9874fd41b5d48d6b4a3d1273 Author: bouleetbil Date: Fri Apr 1 18:38:11 2011 +0200 connman-0.72-1-x86_64 *Version bump diff --git a/source/network-extra/connman/FrugalBuild b/source/network-extra/connman/FrugalBuild index 9f0f6bc..679062c 100644 --- a/source/network-extra/connman/FrugalBuild +++ b/source/network-extra/connman/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=connman -pkgver=0.71 +pkgver=0.72 pkgrel=1 url="http://connman.net/" pkgdesc="open source connection manager" @@ -13,7 +13,7 @@ makedepends=('systemd') groups=('network-extra') archs=('i686' 'x86_64') replaces=("connman-gnome") -sha1sums=('2a382d5a31d2edc9af088d4f6d3c7da3ee125c7f' \ +sha1sums=('ed619490538ce16a2289b266eadba4a41d12fff3' \ 'c9dd34f11a2d9313152171e60f2775c95b47e323') Fconfopts="$Fconfopts \ From bouleetbil at frogdev.info Fri Apr 1 18:45:58 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:45:58 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-panel-2.91.94-1-x86_64 Message-ID: <20110401164558.AA9921358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ef1e4168f9b44303a397d00a4f95773b0f502553 commit ef1e4168f9b44303a397d00a4f95773b0f502553 Author: bouleetbil Date: Fri Apr 1 18:46:03 2011 +0200 gnome-panel-2.91.94-1-x86_64 *Version bump diff --git a/source/gnome/gnome-panel/FrugalBuild b/source/gnome/gnome-panel/FrugalBuild index c9d4ab5..b6e658f 100644 --- a/source/gnome/gnome-panel/FrugalBuild +++ b/source/gnome/gnome-panel/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-panel -pkgver=2.91.93 +pkgver=2.91.94 pkgrel=1 pkgdesc="GNOME panel and core applets" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.91' 'gnome-menus>=2.30.4' \ @@ -17,7 +17,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('b8226a3ce4f8e336c0a7938e4f17d3eadff4476c') +sha1sums=('131ddd8823a6d5feb880c6a044b4e637a39f7bcd') replaces=('avant-window-navigator' 'awn-extras-applets') build() { From bouleetbil at frogdev.info Fri Apr 1 18:49:31 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 18:49:31 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-tweak-tool-3.0.0-1-x86_64 Message-ID: <20110401164931.613931358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=af496801fb382374035e8ac44dce738e6353785a commit af496801fb382374035e8ac44dce738e6353785a Author: bouleetbil Date: Fri Apr 1 18:49:38 2011 +0200 gnome-tweak-tool-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-tweak-tool/FrugalBuild b/source/gnome/gnome-tweak-tool/FrugalBuild index 32fe101..bd06a5d 100644 --- a/source/gnome/gnome-tweak-tool/FrugalBuild +++ b/source/gnome/gnome-tweak-tool/FrugalBuild @@ -2,13 +2,14 @@ # Maintainer: bouleetbil pkgname=gnome-tweak-tool -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="A tool to customize advanced GNOME 3 options." depends=('gnome-shell' 'pygobject') +makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('00659cf579dc98afe49c6859bace8c2943d2e36e') +sha1sums=('280f03d70262c0e008b17c6b9b6f4d7dded8f609') From devil505linux at gmail.com Fri Apr 1 18:58:36 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 18:58:36 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libindicate-qt-0.2.5-2-i686 * rebuilt with libindicate 0.5 Message-ID: <20110401165836.705771358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f61e82b9490dc8ca3d78ca89271e89cff5091440 commit f61e82b9490dc8ca3d78ca89271e89cff5091440 Author: Devil505 Date: Fri Apr 1 17:56:24 2011 +0200 libindicate-qt-0.2.5-2-i686 * rebuilt with libindicate 0.5 diff --git a/source/xlib-extra/libindicate-qt/FrugalBuild b/source/xlib-extra/libindicate-qt/FrugalBuild index 076d573..6546aca 100644 --- a/source/xlib-extra/libindicate-qt/FrugalBuild +++ b/source/xlib-extra/libindicate-qt/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libindicate-qt pkgver=0.2.5 -pkgrel=1 +pkgrel=2 pkgdesc="This project provides a set of Qt bindings for libindicate, the indicator system." url="https://launchpad.net/libindicate-qt" -depends=('libqtgui' 'libindicate' 'libuuid') +depends=('libqtgui' 'libindicate>=0.5.0' 'libuuid') makedepends=('libqttest') Finclude cmake groups=('xlib-extra') From bouleetbil at frogdev.info Fri Apr 1 19:09:23 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 19:09:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pygtk-2.24.0-1-x86_64 Message-ID: <20110401170923.66AD71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a38bbb764070633e4ebc0b4e212bc23268e98591 commit a38bbb764070633e4ebc0b4e212bc23268e98591 Author: bouleetbil Date: Fri Apr 1 19:09:19 2011 +0200 pygtk-2.24.0-1-x86_64 *Version bump diff --git a/source/xlib/pygtk/FrugalBuild b/source/xlib/pygtk/FrugalBuild index 1ac6599..a53cced 100644 --- a/source/xlib/pygtk/FrugalBuild +++ b/source/xlib/pygtk/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=pygtk -pkgver=2.23.2 +pkgver=2.24.0 pkgrel=1 pkgdesc="Python bindings for GTK+2" depends=('libxml2>=2.7.8' 'libglade>=2.6.3-1' 'pycairo>=1.8.4' 'pygobject-cairo>=2.26.0-6' 'numpy' 'gtk+2>=2.22.0') @@ -10,7 +10,7 @@ groups=('xlib') archs=('i686' 'x86_64' 'ppc') Finclude gnome url="http://www.daa.com.au/~james/pygtk/" -sha1sums=('20ad7d0906b1502235e0beff108102d521c18721') +sha1sums=('344e6a32a5e8c7e0aaeb807e0636a163095231c2') export CFLAGS="$CFLAGS -fno-strict-aliasing -fgnu89-inline" subpkgs=("$pkgname-docs") From bouleetbil at frogdev.info Fri Apr 1 19:10:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 19:10:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gdk-pixbuf2-2.23.3-1-x86_64 Message-ID: <20110401171021.ED0AA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0ba1dd8eab436803282d07c25a0e1c82861cbb54 commit 0ba1dd8eab436803282d07c25a0e1c82861cbb54 Author: bouleetbil Date: Fri Apr 1 19:10:30 2011 +0200 gdk-pixbuf2-2.23.3-1-x86_64 *Version bump diff --git a/source/xlib/gdk-pixbuf2/FrugalBuild b/source/xlib/gdk-pixbuf2/FrugalBuild index 7c3730a..fb06ffe 100644 --- a/source/xlib/gdk-pixbuf2/FrugalBuild +++ b/source/xlib/gdk-pixbuf2/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gdk-pixbuf2 _F_gnome_name=gdk-pixbuf -pkgver=2.23.1 +pkgver=2.23.3 pkgrel=1 pkgdesc="An image loading library" depends=('jasper' 'libjpeg' 'libpng' 'libtiff' 'libxcomposite' 'glib2>=2.28.1-2') @@ -13,7 +13,7 @@ archs=('i686' 'x86_64' 'ppc') Finclude gnome source=($source 065_gir_set_packages.patch) _F_cd_path="$_F_gnome_name-$pkgver" -sha1sums=('afb86e3997946e17ec3915cce470af039057afe7' \ +sha1sums=('b141f7afde11a7b8e31535f1c8195a951e1fe1aa' \ 'aa7d2889a8279d60c468078787aff8e734c07bb9') build() { From devil505linux at gmail.com Fri Apr 1 19:11:17 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 19:11:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fet-5.14.4-1-i686 * version bump Message-ID: <20110401171117.0E5EF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9fcd99efed7f5953a7c5eb6431c151fab6c170b8 commit 9fcd99efed7f5953a7c5eb6431c151fab6c170b8 Author: Devil505 Date: Fri Apr 1 19:10:36 2011 +0200 fet-5.14.4-1-i686 * version bump diff --git a/source/xapps-extra/fet/FrugalBuild b/source/xapps-extra/fet/FrugalBuild index 1e6b147..ee4bcad 100644 --- a/source/xapps-extra/fet/FrugalBuild +++ b/source/xapps-extra/fet/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: uzsolt pkgname=fet -pkgver=5.14.3 +pkgver=5.14.4 pkgrel=1 pkgdesc="FET is a free timetabling program for schools, high-schools and some universities." url="http://www.lalescu.ro/liviu/$pkgname" @@ -13,7 +13,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download | Flasttar" source=(http://www.lalescu.ro/liviu/fet/download/$pkgname-$pkgver.tar.bz2) -sha1sums=('098ec83c78306e36779578d4248247125f634989') +sha1sums=('c33c0e8642375beb8c2845dea341642dbd713621') build () { Fcd From devil505linux at gmail.com Fri Apr 1 19:29:18 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 19:29:18 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libindicate-qt-0.2.5.91-1-i686 * version bump * version ported for libindicate 0.5 Message-ID: <20110401172918.CF4A91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ae0cbec2763f6ff1527282d56a8bc9359824ef6e commit ae0cbec2763f6ff1527282d56a8bc9359824ef6e Author: Devil505 Date: Fri Apr 1 19:28:32 2011 +0200 libindicate-qt-0.2.5.91-1-i686 * version bump * version ported for libindicate 0.5 diff --git a/source/xlib-extra/libindicate-qt/FrugalBuild b/source/xlib-extra/libindicate-qt/FrugalBuild index 6546aca..62cfb07 100644 --- a/source/xlib-extra/libindicate-qt/FrugalBuild +++ b/source/xlib-extra/libindicate-qt/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=libindicate-qt -pkgver=0.2.5 -pkgrel=2 +pkgver=0.2.5.91 +pkgrel=1 pkgdesc="This project provides a set of Qt bindings for libindicate, the indicator system." url="https://launchpad.net/libindicate-qt" depends=('libqtgui' 'libindicate>=0.5.0' 'libuuid') @@ -11,8 +11,8 @@ makedepends=('libqttest') Finclude cmake groups=('xlib-extra') archs=('i686' 'x86_64') -up2date="Flasttar $url" -source=($url/trunk/$pkgver/+download//$pkgname-$pkgver.tar.bz2) -sha1sums=('22aa4e27d42c02c58ebebffb9244a04cfc1959dd') +up2date="Flasttar $url/libindicate-0.5" +source=($url/libindicate-0.5/$pkgver/+download/$pkgname-$pkgver.tar.bz2) +sha1sums=('835fecef2d95eb54bd086c3ad3e5ea35602f54a7') # optimization OK From devil505linux at gmail.com Fri Apr 1 19:34:49 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 19:34:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: clementine-0.7-3-i686 * rebuilt with libindicate-qt 0.2.5.91 Message-ID: <20110401173449.758141358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4389c63c6bd85e4c4a4b66f6a87511952f84fc14 commit 4389c63c6bd85e4c4a4b66f6a87511952f84fc14 Author: Devil505 Date: Fri Apr 1 19:30:26 2011 +0200 clementine-0.7-3-i686 * rebuilt with libindicate-qt 0.2.5.91 diff --git a/source/xapps-extra/clementine/FrugalBuild b/source/xapps-extra/clementine/FrugalBuild index da36f56..4aaa3a8 100644 --- a/source/xapps-extra/clementine/FrugalBuild +++ b/source/xapps-extra/clementine/FrugalBuild @@ -4,10 +4,10 @@ pkgname=clementine pkgver=0.7 -pkgrel=2 +pkgrel=3 pkgdesc="Clementine is a modern music player and library organiser. Port of Amarok 1.4" makedepends=('qt4-linguist' 'boost') -depends=('libqtopengl' 'libqtdbus' 'glew' 'liblastfm' 'taglib' 'gstreamer' 'libindicate-qt') +depends=('libqtopengl' 'libqtdbus' 'glew' 'liblastfm' 'taglib' 'gstreamer' 'libindicate-qt>=0.2.5.91') _F_googlecode_dirname="$pkgname-player" _F_cd_path="$pkgname-$pkgver" Finclude googlecode cmake From elentir at frugalware.org Fri Apr 1 19:41:22 2011 From: elentir at frugalware.org (Elentir) Date: Fri, 1 Apr 2011 19:41:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: talloc-2.0.1-3-arm Message-ID: <20110401174122.69CE51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9af45fa43b852a0663b908815df4179e4f4797b8 commit 9af45fa43b852a0663b908815df4179e4f4797b8 Author: Elentir Date: Fri Apr 1 19:14:33 2011 +0200 talloc-2.0.1-3-arm * add arm to archs diff --git a/source/lib/talloc/FrugalBuild b/source/lib/talloc/FrugalBuild index 5a465f0..35efe6b 100644 --- a/source/lib/talloc/FrugalBuild +++ b/source/lib/talloc/FrugalBuild @@ -11,7 +11,7 @@ source=($urldl/$pkgname-$pkgver.tar.gz) up2date="Flasttar $urldl" depends=('glibc') groups=('lib') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') signatures=(${source[0]}.asc) removes=("${removes[@]}" "/usr/lib/lib$pkgname.so.2") From devil505linux at gmail.com Fri Apr 1 20:10:00 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 20:10:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: hamlib-1.2.13-1-i686 * version bump Message-ID: <20110401181000.2B0D31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=268c577254fd854ebdca1e68568169788db72e8f commit 268c577254fd854ebdca1e68568169788db72e8f Author: Devil505 Date: Fri Apr 1 20:09:12 2011 +0200 hamlib-1.2.13-1-i686 * version bump diff --git a/source/lib-extra/hamlib/FrugalBuild b/source/lib-extra/hamlib/FrugalBuild index 8f2a8a8..52cc638 100644 --- a/source/lib-extra/hamlib/FrugalBuild +++ b/source/lib-extra/hamlib/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=hamlib -pkgver=1.2.12 +pkgver=1.2.13 pkgrel=1 pkgdesc="HAM radio equipment control libraries" makedepends=('automake' 'autoconf' 'doxygen' 'libtool' 'swig') @@ -11,6 +11,6 @@ Finclude sourceforge groups=('lib-extra') archs=('i686' 'x86_64') Fconfopts="${Fconfopts[@]} --with-perl-binding --with-python-binding" -sha1sums=('94115df13eae3e1046911cce585503ff49a8dcbd') +sha1sums=('33c44d0c371e0ad0c9cb3852e383adbf986de6e7') # optimization OK From devil505linux at gmail.com Fri Apr 1 20:31:33 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 20:31:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kupfer-205-1-i686 * version bump Message-ID: <20110401183133.9561A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=96200d093d7e662f958dd76801fcd8110a2453b5 commit 96200d093d7e662f958dd76801fcd8110a2453b5 Author: Devil505 Date: Fri Apr 1 20:31:12 2011 +0200 kupfer-205-1-i686 * version bump diff --git a/source/xapps-extra/kupfer/FrugalBuild b/source/xapps-extra/kupfer/FrugalBuild index 2f070fd..0c2ec64 100644 --- a/source/xapps-extra/kupfer/FrugalBuild +++ b/source/xapps-extra/kupfer/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=kupfer -pkgver=204 +pkgver=205 pkgrel=1 pkgdesc="Launcher application written in python. Similar to Gnome-Do / Launchy" url="http://kaizer.se/wiki/kupfer/" @@ -15,7 +15,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | Flasttar | sed 's/v//g'" source=(http://kaizer.se/publicfiles/kupfer/$pkgname-v$pkgver.tar.gz) -sha1sums=('553889727ea012ef51b9b06126450ca876b33404') +sha1sums=('761db547a60e5984419f0421a6cc72ce7f65e85c') build() { Fcd $pkgname-v$pkgver From devil505linux at gmail.com Fri Apr 1 20:50:05 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 20:50:05 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-messages-0.3.92-4-i686 * rebuilt with new libs Message-ID: <20110401185005.32CB51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5c2c93798a6272853dc1643c42c95c70574c26ac commit 5c2c93798a6272853dc1643c42c95c70574c26ac Author: Devil505 Date: Fri Apr 1 20:48:33 2011 +0200 indicator-messages-0.3.92-4-i686 * rebuilt with new libs diff --git a/source/ayatana-extra/indicator-messages/FrugalBuild b/source/ayatana-extra/indicator-messages/FrugalBuild index 8c9d51d..a583482 100644 --- a/source/ayatana-extra/indicator-messages/FrugalBuild +++ b/source/ayatana-extra/indicator-messages/FrugalBuild @@ -3,10 +3,10 @@ pkgname=indicator-messages pkgver=0.3.92 -pkgrel=3 +pkgrel=4 pkgdesc="A place on the user's desktop that collects messages that need a response." url="https://launchpad.net/indicator-messages" -depends=('libindicator>=0.3.19-3' 'libindicate>=0.4.93' 'libdbusmenu-gtk>=0.3.98-3') +depends=('libindicator>=0.3.22' 'libindicate>=0.5.0' 'libdbusmenu-gtk>=0.4.0') makedepends=('intltool') groups=('ayatana-extra') archs=('i686' 'x86_64') From bouleetbil at frogdev.info Fri Apr 1 20:53:47 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 20:53:47 +0200 (CEST) Subject: [Frugalware-git] gnometesting: rhythmbox-0.13.3-6-x86_64 Message-ID: <20110401185347.DEAFB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=15a594154c22452b4ffe5617f28d420d8593762a commit 15a594154c22452b4ffe5617f28d420d8593762a Author: bouleetbil Date: Fri Apr 1 20:53:48 2011 +0200 rhythmbox-0.13.3-6-x86_64 *Version bump diff --git a/source/gnome/rhythmbox/FrugalBuild b/source/gnome/rhythmbox/FrugalBuild index debea35..2c957e5 100644 --- a/source/gnome/rhythmbox/FrugalBuild +++ b/source/gnome/rhythmbox/FrugalBuild @@ -4,7 +4,7 @@ pkgname=rhythmbox pkgver=0.13.3 -pkgrel=5 +pkgrel=6 pkgdesc="A music management application for GNOME" url="http://www.rhythmbox.org/" depends=('nautilus-brasero' 'rarian' 'desktop-file-utils' \ From hermier at frugalware.org Fri Apr 1 20:59:21 2011 From: hermier at frugalware.org (Michel Hermier) Date: Fri, 1 Apr 2011 20:59:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: sourceforge.sh Message-ID: <20110401185921.CB8FC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=93a8d8b3e9eee39bd8a21b7be0cde574a56a3b40 commit 93a8d8b3e9eee39bd8a21b7be0cde574a56a3b40 Author: Michel Hermier Date: Fri Apr 1 20:56:42 2011 +0200 sourceforge.sh * Some small fixes. Set _F_archive_name with _F_sourceforge_name, and _F_sourceforge_sep with Fpkgversep. diff --git a/source/include/sourceforge.sh b/source/include/sourceforge.sh index c0ef938..b99b76e 100644 --- a/source/include/sourceforge.sh +++ b/source/include/sourceforge.sh @@ -72,7 +72,7 @@ if [ -z "$_F_sourceforge_ext" ]; then fi if [ -z "$_F_sourceforge_sep" ]; then - _F_sourceforge_sep="-" + _F_sourceforge_sep="$Fpkgversep" fi if [ -n "$_F_sourceforge_sep" ] && [ "$_F_sourceforge_sep" = "None" ]; then @@ -91,6 +91,9 @@ _F_sourceforge_rss_url="http://sourceforge.net/api/file/index/project-id/$_F_sou if [ -z "$url" ]; then url="$_F_sourceforge_url" fi +if [ -z "$_F_archive_name" ]; then + _F_archive_name="$_F_sourceforge_name" +fi if [ -z "$_F_archive_grepv" ]; then _F_archive_grepv="^$" fi From bouleetbil at frogdev.info Fri Apr 1 21:17:30 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 1 Apr 2011 21:17:30 +0200 (CEST) Subject: [Frugalware-git] gnometesting: rhythmbox-0.13.3-7-x86_64 *enable mtp support Message-ID: <20110401191730.577761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=57854375be8d0f2890ed9335795cfe1097e60886 commit 57854375be8d0f2890ed9335795cfe1097e60886 Author: bouleetbil Date: Fri Apr 1 21:17:17 2011 +0200 rhythmbox-0.13.3-7-x86_64 *enable mtp support diff --git a/source/gnome/rhythmbox/FrugalBuild b/source/gnome/rhythmbox/FrugalBuild index 2c957e5..b3b33af 100644 --- a/source/gnome/rhythmbox/FrugalBuild +++ b/source/gnome/rhythmbox/FrugalBuild @@ -4,7 +4,7 @@ pkgname=rhythmbox pkgver=0.13.3 -pkgrel=6 +pkgrel=7 pkgdesc="A music management application for GNOME" url="http://www.rhythmbox.org/" depends=('nautilus-brasero' 'rarian' 'desktop-file-utils' \ @@ -24,14 +24,16 @@ _F_gnome_git="y" Finclude gnome-scriptlet gnome unset MAKEFLAGS -Fconfopts="$Fconfopts --enable-mdns=avahi --with-playback=gstreamer-0-10 --enable-daap --enable-audioscrobbler --enable-python --without-hal" +Fconfopts="$Fconfopts --enable-mdns=avahi --with-playback=gstreamer-0-10 --enable-daap --enable-audioscrobbler --enable-python --without-hal \ + --disable-vala" +#vala support is broken sha1sums=('1c6e83972dcd7de8fc1a71586843e29092a0c706') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi subpkgs=("rhythmbox-plugins") subdescs=('Plugins for rhythmbox') -subdepends=("gst-python libgpod>=0.6.0 gvfs-apple") +subdepends=("gst-python libgpod>=0.6.0 gvfs-apple libmtp") subrodepends=('rhythmbox') subgroups=('gnome-extra') subarchs=('i686 x86_64 ppc') From devil505linux at gmail.com Fri Apr 1 21:58:09 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 21:58:09 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: dmedia-0.5.0-1-i686 * version bump Message-ID: <20110401195809.A89081358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ef3a663cffbacdc75e3e21f15682f3c13829f4e8 commit ef3a663cffbacdc75e3e21f15682f3c13829f4e8 Author: Devil505 Date: Fri Apr 1 21:57:38 2011 +0200 dmedia-0.5.0-1-i686 * version bump diff --git a/source/gnome-extra/dmedia/FrugalBuild b/source/gnome-extra/dmedia/FrugalBuild index 09120bb..b29a8ea 100644 --- a/source/gnome-extra/dmedia/FrugalBuild +++ b/source/gnome-extra/dmedia/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=dmedia -pkgver=0.4.0 +pkgver=0.5.0 pkgrel=1 pkgdesc="A simple distributed media library. Media files are given a globally unique ID based on their content-hash." url="https://launchpad.net/dmedia" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome-scriptlet up2date="Flasttar $url" -source=($url/trunk/0.4/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('9809e1ede9ac739833c9a736233fdf97e6f2f3f4') +source=($url/trunk/0.5/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('d593116bd78d46b74f2f2d24d05ccb1d891dbe26') From devil505linux at gmail.com Fri Apr 1 22:36:40 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 1 Apr 2011 22:36:40 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgwibber-0.1.0-4-i686 * added symlinks for pkgconfig files * mono bindings splitted Message-ID: <20110401203640.82B0A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=df7c935988a05bd41c5fa79c43cfb8cb8079c26f commit df7c935988a05bd41c5fa79c43cfb8cb8079c26f Author: Devil505 Date: Fri Apr 1 22:35:45 2011 +0200 libgwibber-0.1.0-4-i686 * added symlinks for pkgconfig files * mono bindings splitted diff --git a/source/ayatana-extra/libgwibber/FrugalBuild b/source/ayatana-extra/libgwibber/FrugalBuild index da1e7e9..f73e85e 100644 --- a/source/ayatana-extra/libgwibber/FrugalBuild +++ b/source/ayatana-extra/libgwibber/FrugalBuild @@ -3,11 +3,11 @@ pkgname=libgwibber pkgver=0.1.0 -pkgrel=3 +pkgrel=4 pkgdesc="libgwibber provides a library for accessing social networks via gwibber." url="https://launchpad.net/gwibber" -depends=('gtk+2' 'libgee' 'json-glib' 'dbus-glib' 'gtk2-sharp' 'libdee>=0.5.8-2') -makedepends=('intltool' 'vala' 'gnome-doc-utils' 'gobject-introspection') +depends=('gtk+2' 'libgee' 'json-glib' 'dbus-glib' 'libdee>=0.5.8-2') +makedepends=('intltool' 'vala' 'gnome-doc-utils' 'gobject-introspection' 'gtk2-sharp') groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/libgwibber" @@ -16,4 +16,20 @@ Finclude mono Fconfopts="${Fconfopts[@]} --disable-static --disable-maintainer-flags" sha1sums=('ee267bc1b1327703c73e83a05b4ff957651fdc6a') +subpkgs=("$pkgname-mono") +subdescs=("${subdescs[@]}" "Mono bindings for libgwibber") +subdepends=("${subdepends[@]}" "gtk2-sharp") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'devel-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +build() { + Fbuild_mono + Fln /usr/lib/pkgconfig/gwibber.pc /usr/lib/pkgconfig/gwibber-0.1.pc + Fln /usr/lib/pkgconfig/gwibber-gtk.pc /usr/lib/pkgconfig/gwibber-gtk-0.1.pc + Fsplit $pkgname-mono usr/lib/gwibber-gtk-sharp-0.1/ + Fsplit $pkgname-mono usr/lib/mono/ + Fsplit $pkgname-mono usr/lib/pkgconfig/gwibber-gtk-sharp-0.1.pc +} + # optimization OK From bouleetbil at frogdev.info Sat Apr 2 11:51:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 11:51:20 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glib2-2.28.5-1-x86_64 Message-ID: <20110402095120.686EE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2218fdaf91a8c8b8d82cd51a778f7457cb91efe4 commit 2218fdaf91a8c8b8d82cd51a778f7457cb91efe4 Author: bouleetbil Date: Sat Apr 2 11:51:03 2011 +0200 glib2-2.28.5-1-x86_64 *Version bump diff --git a/source/base/glib2/FrugalBuild b/source/base/glib2/FrugalBuild index 1e238b3..377d66d 100644 --- a/source/base/glib2/FrugalBuild +++ b/source/base/glib2/FrugalBuild @@ -4,7 +4,7 @@ USE_DOC=${USE_DOC:-"y"} pkgname=glib2 -pkgver=2.28.4 +pkgver=2.28.5 pkgrel=1 pkgdesc="Common C routines used by GTK+2 and other libraries" url="http://www.gtk.org/" @@ -21,7 +21,7 @@ source=($source \ glib2.sh \ glib2.csh \ 71_gio_launch_handler.patch) -sha1sums=('46b4e9eca27a936c686c32a768d5e352d1275673' \ +sha1sums=('6cfc1a4e5ed069f0282b90de7635a5704cf7c04c' \ 'bfe05590a6498259f1045a591fd886a8572f271a' \ '6db09da816d69aab7a5cbf3460ee082bef200891' \ '794b92b0088043adcf67e8bf3c34b0bddc59eb13') From bouleetbil at frogdev.info Sat Apr 2 12:01:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:01:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-control-center-2.91.93-2-x86_64 *typo fix Message-ID: <20110402100109.91DB21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=62dd091f0c0818cb47a2e4272cf267c0b42df273 commit 62dd091f0c0818cb47a2e4272cf267c0b42df273 Author: bouleetbil Date: Sat Apr 2 12:00:59 2011 +0200 gnome-control-center-2.91.93-2-x86_64 *typo fix diff --git a/source/gnome/gnome-control-center/FrugalBuild b/source/gnome/gnome-control-center/FrugalBuild index 9bb965b..51c9b71 100644 --- a/source/gnome/gnome-control-center/FrugalBuild +++ b/source/gnome/gnome-control-center/FrugalBuild @@ -6,7 +6,7 @@ USE_CHEESE=${USE_CHEESE:-"y"} pkgname=gnome-control-center pkgver=2.91.93 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME Control Center" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.90' 'mutter' 'libgnomekbd>=2.91.90' 'gnome-menus' \ 'nautilus>=2.91.90' 'gst-plugins-base>=0.10.19-2' 'desktop-file-utils' \ @@ -28,7 +28,7 @@ Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-aboutme --disable-doc --with-libsocialweb=yes \ --disable-update-mimedb --disable-static" if Fuse $USE_CHEESE; then - depend=("${depends[@]}" "cheese") + depends=("${depends[@]}" "cheese") fi sha1sums=('fc7411e5b0f8eb93b09a9c8f13e603e375ae04d3') replaces=('accountsdialog') From bouleetbil at frogdev.info Sat Apr 2 12:05:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:05:20 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+2-2.24.4-1-x86_64 Message-ID: <20110402100520.D7F151358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f4e836617b25aa55c147360e05b447de9f73beea commit f4e836617b25aa55c147360e05b447de9f73beea Author: bouleetbil Date: Sat Apr 2 12:05:13 2011 +0200 gtk+2-2.24.4-1-x86_64 *Version bump diff --git a/source/xlib/gtk+2/FrugalBuild b/source/xlib/gtk+2/FrugalBuild index 831d2d3..2a01ca5 100644 --- a/source/xlib/gtk+2/FrugalBuild +++ b/source/xlib/gtk+2/FrugalBuild @@ -3,8 +3,8 @@ pkgname=gtk+2 _F_gnome_name=gtk+ -pkgver=2.24.3 -pkgrel=2 +pkgver=2.24.4 +pkgrel=1 pkgdesc="The GTK+ Toolkit (2.x series)" depends=('libxext' 'libxfixes' 'cairo>=1.8.10-2' 'libgcc' 'libjpeg>=8a' 'libtiff' 'libcups>=1.3.11-4' 'gdk-pixbuf2>=2.23.0-5') rodepends=('gnome-icon-theme' 'shared-mime-info') @@ -18,16 +18,15 @@ up2date=$pkgver url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" source=($source \ - xid-collision-debug.patch old-icon-symlinks.patch + xid-collision-debug.patch \ 012_ubuntu-set-grab-add.patch \ 043_ubuntu_menu_proxy.patch \ 044_grips.patch \ 065_gir_set_packages.patch \ 072_indicator_menu_update.patch \ 091_bugzilla_tooltip_refresh.patch) -sha1sums=('a139460a34bfb5a2095645ebc634a5754bdb2920' \ +sha1sums=('c15a25ba49eb459b2c4cdc46baedf6cecf08cbcf' \ '75c461740e18696a792739cd1f9a20327dbb23bb' \ - 'a320f04468900b94d7f336368228dfdefc240c6e' \ 'b4a6b53cd07a63f0df59fe80be597910e8db90c5' \ '907f88cf3ec8c102699f58d714c10fe14f63b3b1' \ '32750305c024b8690820f7260a8622c76aa06854' \ From bouleetbil at frogdev.info Sat Apr 2 12:15:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:15:42 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+3-3.0.7-1-x86_64 Message-ID: <20110402101542.9B3041358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=76d7db5f0aa85f1d9323cb7ab11a089dab4fbaa9 commit 76d7db5f0aa85f1d9323cb7ab11a089dab4fbaa9 Author: bouleetbil Date: Sat Apr 2 12:15:02 2011 +0200 gtk+3-3.0.7-1-x86_64 *Version bump diff --git a/source/xlib/gtk+3/FrugalBuild b/source/xlib/gtk+3/FrugalBuild index e967087..1d92cf7 100644 --- a/source/xlib/gtk+3/FrugalBuild +++ b/source/xlib/gtk+3/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gtk+3 _F_gnome_name=gtk+ -pkgver=3.0.6 +pkgver=3.0.7 pkgrel=1 pkgdesc="The GTK+ Toolkit (3.x series)" depends=('libxext' 'libxfixes' 'cairo' 'libgcc' 'libjpeg' 'libtiff' 'libcups' \ @@ -18,7 +18,7 @@ Finclude gnome url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" source=($source im-cedilla.conf) -sha1sums=('2359b34056687d7b73087bbf785cd7a17c592e9f' \ +sha1sums=('65dd28675a9cf5cbd869755e39975c06df7c370f' \ 'f8a64241bcc873c1f1110e16306e48577a41852b') if [ "$_F_gnome_git" != "n" ]; then From bouleetbil at frogdev.info Sat Apr 2 12:17:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:17:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: usermode-1.107-1-x86_64 Message-ID: <20110402101737.AAAE21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=10622f44f0c5fad5a9eb738407dabdec0ec1bfd6 commit 10622f44f0c5fad5a9eb738407dabdec0ec1bfd6 Author: bouleetbil Date: Sat Apr 2 12:17:44 2011 +0200 usermode-1.107-1-x86_64 *Version bump diff --git a/source/apps/usermode/FrugalBuild b/source/apps/usermode/FrugalBuild index 7e00fad..74ef242 100644 --- a/source/apps/usermode/FrugalBuild +++ b/source/apps/usermode/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=usermode -pkgver=1.106.1 +pkgver=1.107 pkgrel=1 pkgdesc="Tools for certain user account management tasks" url="http://www.gnome.org/" @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') urldl=https://fedorahosted.org/releases/u/s/usermode/ source=($urldl/$pkgname-$pkgver.tar.xz) up2date="elinks --dump $urldl | Flasttar" -sha1sums=('7dcc63cf55a956431ef4e72e30786f2516bbfb5d') +sha1sums=('72b6b8bfa40c0b453db9e5d0d196ba878bac90a1') options=('scriptlet') subpkgs=("gtk-usermode") From bouleetbil at frogdev.info Sat Apr 2 12:26:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:26:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnash-0.8.9-1-x86_64 Message-ID: <20110402102634.519A81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=98c04ba54fe8f85dc540a53626781170188ea46f commit 98c04ba54fe8f85dc540a53626781170188ea46f Author: bouleetbil Date: Sat Apr 2 12:26:40 2011 +0200 gnash-0.8.9-1-x86_64 *Version bump diff --git a/source/xlib-extra/gnash/FrugalBuild b/source/xlib-extra/gnash/FrugalBuild index 540887e..53dad50 100644 --- a/source/xlib-extra/gnash/FrugalBuild +++ b/source/xlib-extra/gnash/FrugalBuild @@ -4,13 +4,13 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=gnash -pkgver=0.8.8 +pkgver=0.8.9 Fuse $USE_DEVEL && pkgver=bzr9976 -pkgrel=2 +pkgrel=1 pkgdesc="A GNU Flash movie player." url="http://www.gnu.org/software/gnash/" depends=('sdl_mixer' 'cairo>=1.8.6-3' 'libjpeg>=8a' 'libxml2>=2.7.8' 'libmad' 'boost' 'agg' 'curl' \ - 'gtkglext>=1.2.0-5' 'libboost-mt>=1.37.0' 'gstreamer' 'libungif' 'gst-plugins-base' 'openssl>=1.0.0-2') + 'gtkglext>=1.2.0-5' 'libboost-mt>=1.37.0' 'gstreamer' 'libungif' 'gst-plugins-base' 'openssl>=1.0.0-2' 'xulrunner') makedepends=('boost') groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') @@ -18,7 +18,7 @@ up2date="lynx -dump http://ftp.gnu.org/pub/gnu/gnash/|grep [0-9]/$|sed -n 's|.*/ if ! Fuse $USE_DEVEL; then source=(http://ftp.gnu.org/pub/gnu/gnash/$pkgver/gnash-$pkgver.tar.bz2) - sha1sums=('d349e0321e7fe9abcd265d63ce282cd2a7ce59d3') + sha1sums=('585c320c98b3304fcbba230f2c4b1fdf2a52aee0') else _F_scm_type="bzr" _F_scm_url="http://bzr.savannah.gnu.org/r/gnash/trunk" From bouleetbil at frogdev.info Sat Apr 2 12:48:50 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 12:48:50 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-disk-utility-2.91.7-3-x86_64 *fix directory nautilus plugin Message-ID: <20110402104850.B5FE01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0b33a7a6c6927430ae531b7568b404e512a97266 commit 0b33a7a6c6927430ae531b7568b404e512a97266 Author: bouleetbil Date: Sat Apr 2 12:48:38 2011 +0200 gnome-disk-utility-2.91.7-3-x86_64 *fix directory nautilus plugin diff --git a/source/gnome/gnome-disk-utility/FrugalBuild b/source/gnome/gnome-disk-utility/FrugalBuild index a4d1601..859c4c8 100644 --- a/source/gnome/gnome-disk-utility/FrugalBuild +++ b/source/gnome/gnome-disk-utility/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-disk-utility pkgver=2.91.7 -pkgrel=2 +pkgrel=3 pkgdesc="Disk Utility for GNOME using devicekit-disks" depends=('gtk+3' 'unique' 'gnome-keyring>=2.90.0' 'libsexy' 'polkit-gnome' 'libavahi-ui' 'avahi-gtk3' \ 'udisks' 'openssh-askpass' 'libnotify>=0.7') @@ -33,6 +33,7 @@ subarchs=('i686 ppc x86_64') build() { Fbuild --disable-gtk-doc Fbuild_gnome_scriptlet + Fmv usr/lib/nautilus/extensions-2.0 usr/lib/nautilus/extensions-3.0 Fsplit nautilus-disk-utility usr/lib/nautilus } From hermier at frugalware.org Sat Apr 2 13:14:12 2011 From: hermier at frugalware.org (Michel Hermier) Date: Sat, 2 Apr 2011 13:14:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libtirpc-0.2.1-2-i686 Message-ID: <20110402111412.8B2571358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9bd62408c5297b2902d930b8f7b3f2994eb3d477 commit 9bd62408c5297b2902d930b8f7b3f2994eb3d477 Author: Michel Hermier Date: Sat Apr 2 13:11:37 2011 +0200 libtirpc-0.2.1-2-i686 * Forgotten heimdal to krb5 change (In fact this lib don't require it, it only require a working gssapi library). diff --git a/source/lib/libtirpc/FrugalBuild b/source/lib/libtirpc/FrugalBuild index e462614..564aa14 100644 --- a/source/lib/libtirpc/FrugalBuild +++ b/source/lib/libtirpc/FrugalBuild @@ -3,11 +3,12 @@ pkgname=libtirpc pkgver=0.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="A port of Suns Transport-Independent RPC library to Linux." _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -depends=('libgssglue' 'heimdal') +depends=('libgssglue') +rodepends=('libkrb5') backup=('etc/netconfig') groups=('lib') archs=('i686' 'x86_64' 'ppc' 'arm') From bouleetbil at frogdev.info Sat Apr 2 14:17:25 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 14:17:25 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+3-3.0.6-2-x86_64 *reverse bump something is broken with new gtk3 Message-ID: <20110402121725.8882B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bd963ad2d8ad8e3a7b1774f0389238f5fdbd8834 commit bd963ad2d8ad8e3a7b1774f0389238f5fdbd8834 Author: bouleetbil Date: Sat Apr 2 14:17:18 2011 +0200 gtk+3-3.0.6-2-x86_64 *reverse bump something is broken with new gtk3 diff --git a/source/xlib/gtk+3/FrugalBuild b/source/xlib/gtk+3/FrugalBuild index 1d92cf7..8674270 100644 --- a/source/xlib/gtk+3/FrugalBuild +++ b/source/xlib/gtk+3/FrugalBuild @@ -3,8 +3,8 @@ pkgname=gtk+3 _F_gnome_name=gtk+ -pkgver=3.0.7 -pkgrel=1 +pkgver=3.0.6 +pkgrel=2 pkgdesc="The GTK+ Toolkit (3.x series)" depends=('libxext' 'libxfixes' 'cairo' 'libgcc' 'libjpeg' 'libtiff' 'libcups' \ 'atk' 'pango' 'libxinerama' 'libxcomposite' 'libxcursor' \ @@ -18,7 +18,7 @@ Finclude gnome url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" source=($source im-cedilla.conf) -sha1sums=('65dd28675a9cf5cbd869755e39975c06df7c370f' \ +sha1sums=('2359b34056687d7b73087bbf785cd7a17c592e9f' \ 'f8a64241bcc873c1f1110e16306e48577a41852b') if [ "$_F_gnome_git" != "n" ]; then From bouleetbil at frogdev.info Sat Apr 2 16:22:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 16:22:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: liboobs-3.0.0-1-x86_64 Message-ID: <20110402142254.D57BA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5fd471aaa1e47deb3724788c37466ef6a184c6da commit 5fd471aaa1e47deb3724788c37466ef6a184c6da Author: bouleetbil Date: Sat Apr 2 16:23:01 2011 +0200 liboobs-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/liboobs/FrugalBuild b/source/gnome-extra/liboobs/FrugalBuild index 49d0aa0..ec9c99c 100644 --- a/source/gnome-extra/liboobs/FrugalBuild +++ b/source/gnome-extra/liboobs/FrugalBuild @@ -3,16 +3,16 @@ # Contributor: AlexExtreme pkgname=liboobs -pkgver=2.91.1 +pkgver=3.0.0 pkgrel=1 pkgdesc="Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends" url="http://www.gnome.org/projects/gst/" -depends=('system-tools-backends>=2.10.0' 'glib2>=2.24.0' 'dbus-glib>=0.80' 'hal') +depends=('system-tools-backends>=2.10.0' 'glib2>=2.28.5' 'dbus-glib>=0.80') makedepends=('gtk-doc') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('2228784cdadcebdf49e500a2df0a0d608cfe9e7e') +sha1sums=('d7c6360c3b05876fe6967c068ee26e1b4b54ba0e') # optimization OK From bouleetbil at frogdev.info Sat Apr 2 16:27:05 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 16:27:05 +0200 (CEST) Subject: [Frugalware-git] gnometesting: seed-3.0.0-1-x86_64 Message-ID: <20110402142705.75C421358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=74e594589b484f593a63142c9d7dd8d93cf85754 commit 74e594589b484f593a63142c9d7dd8d93cf85754 Author: bouleetbil Date: Sat Apr 2 16:27:11 2011 +0200 seed-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/seed/FrugalBuild b/source/gnome/seed/FrugalBuild index da599d5..6c44094 100644 --- a/source/gnome/seed/FrugalBuild +++ b/source/gnome/seed/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=seed -pkgver=2.91.90 +pkgver=3.0.0 pkgrel=1 pkgdesc="Seed is a library and interpreter, dynamically bridging the WebKit JavaScriptCore engine." depends=('libxml2>=2.7.8' 'webkit-gtk3>=1.3.4' 'libffi>=3.0.9' 'libsoup-gnome>=2.32.0' 'sqlite3' \ @@ -13,7 +13,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude gnome -sha1sums=('92e31e5684d06330d9fe62ddd5d00d7154e1760e') +sha1sums=('03e77d8f816aafa1aca7c507ec6bea3b89653c08') Fconfopts="$Fconfopts --with-webkit=3.0" build() { From bouleetbil at frogdev.info Sat Apr 2 16:58:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 16:58:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-actions-3.1.2-1-x86_64 Message-ID: <20110402145804.69C181358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4eba114c7476b101e639d5379cf0fc3b17f8bf9f commit 4eba114c7476b101e639d5379cf0fc3b17f8bf9f Author: bouleetbil Date: Sat Apr 2 16:58:06 2011 +0200 nautilus-actions-3.1.2-1-x86_64 *Version bump diff --git a/source/gnome-extra/nautilus-actions/FrugalBuild b/source/gnome-extra/nautilus-actions/FrugalBuild index e692321..9549422 100644 --- a/source/gnome-extra/nautilus-actions/FrugalBuild +++ b/source/gnome-extra/nautilus-actions/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Priyank Gosalia pkgname=nautilus-actions -pkgver=3.0.7 +pkgver=3.1.2 pkgrel=1 pkgdesc="configures programs to be launched for files selected in Nautilus" -depends=('libglade' 'nautilus>=2.30.1' 'dbus-glib>=0.71-2' 'libgtop') +depends=('libglade' 'nautilus>=2.90.0' 'dbus-glib>=0.71-2' 'libgtop') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet gnome -sha1sums=('b129feb3c25346e56df92edbc6ea80b12bc82ce5') +sha1sums=('37a05f45c88dd0b49bc9a7c420fe8529dd315775') # optimization OK From bouleetbil at frogdev.info Sat Apr 2 17:14:46 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 17:14:46 +0200 (CEST) Subject: [Frugalware-git] gnometesting: deja-dup-17.5-2-x86_64 *fix dir extension Message-ID: <20110402151446.1384C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a6bc628294c2285ca605abb8f459e0978d074794 commit a6bc628294c2285ca605abb8f459e0978d074794 Author: bouleetbil Date: Sat Apr 2 17:14:33 2011 +0200 deja-dup-17.5-2-x86_64 *fix dir extension diff --git a/source/gnome-extra/deja-dup/FrugalBuild b/source/gnome-extra/deja-dup/FrugalBuild index 16de737..34a789b 100644 --- a/source/gnome-extra/deja-dup/FrugalBuild +++ b/source/gnome-extra/deja-dup/FrugalBuild @@ -3,10 +3,10 @@ pkgname=deja-dup pkgver=17.5 -pkgrel=1 +pkgrel=2 pkgdesc="D??j?? Dup is a simple backup program and uses duplicity as the backend." url="http://mterry.name/deja-dup/" -depends=('unique' 'duplicity>=0.6.09-3' 'nautilus>=2.30.1-1' 'atk' 'pango' 'libxau' 'libxdmcp' \ +depends=('unique1' 'duplicity>=0.6.09-3' 'nautilus>=2.90.0-1' 'atk' 'pango' 'libxau' 'libxdmcp' \ 'zlib' 'libxinerama' 'libxi' 'libxcursor' 'libxdamage' 'libgnomeui' 'libsm' 'popt' \ 'gnome-vfs' 'openssl>=1.0.0' 'esd' 'gail' 'libart_lgpl' 'libnotify>=0.7') makedepends=('gnome-doc-utils' 'intltool' 'vala' 'elinks') @@ -18,4 +18,10 @@ Finclude launchpad source=(http://launchpad.net/deja-dup/18/$pkgver/+download/$pkgname-$pkgver.tar.bz2) sha1sums=('ae2f64f46ba97adc276391ecce96f26a379d2644') +build() { + Fbuild + Fbuild_gnome_scriptlet + Fmv usr/lib/nautilus/extensions-2.0 usr/lib/nautilus/extensions-3.0 +} + # optimization OK From bouleetbil at frogdev.info Sat Apr 2 19:54:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 19:54:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-image-converter *dead pkg Message-ID: <20110402175421.366491358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9ab77743b0afec1c433dbda178309f21898ec49b commit 9ab77743b0afec1c433dbda178309f21898ec49b Author: bouleetbil Date: Sat Apr 2 19:53:14 2011 +0200 nautilus-image-converter *dead pkg diff --git a/source/gnome-extra/nautilus-image-converter/FrugalBuild b/source/gnome-extra/nautilus-image-converter/FrugalBuild deleted file mode 100644 index 0af5226..0000000 --- a/source/gnome-extra/nautilus-image-converter/FrugalBuild +++ /dev/null @@ -1,18 +0,0 @@ -# Compiling Time: 0.09 SBU -# Maintainer: bouleetbil - -pkgname=nautilus-image-converter -pkgver=0.3.0 -pkgrel=5 -pkgdesc="nautilus extension to mass resize images" -options=('scriptlet') -depends=('imagemagick>=6.4.8_9' 'nautilus>=2.30.0-2' 'libglade>=2.6.4-2' 'freetype2' \ - 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' 'libxext>=1.0.5-3') -makedepends=('perl-xml-parser') -_F_gnome_devel="y" -Finclude gnome -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -sha1sums=('fb202b0dfb367470ea756ecb521daf23d2ccd6b4') - -# optimization OK From bouleetbil at frogdev.info Sat Apr 2 19:54:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 19:54:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-2.91.94-2-x86_64 *replaces nautilus-image-converter Message-ID: <20110402175421.7BA801358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b6c95a8e6c937f9e031827dbd05638c044e36fc0 commit b6c95a8e6c937f9e031827dbd05638c044e36fc0 Author: bouleetbil Date: Sat Apr 2 19:54:09 2011 +0200 nautilus-2.91.94-2-x86_64 *replaces nautilus-image-converter diff --git a/source/gnome/nautilus/FrugalBuild b/source/gnome/nautilus/FrugalBuild index 638c687..f9d237c 100644 --- a/source/gnome/nautilus/FrugalBuild +++ b/source/gnome/nautilus/FrugalBuild @@ -3,7 +3,7 @@ pkgname=nautilus pkgver=2.91.94 -pkgrel=1 +pkgrel=2 pkgdesc="A file manager for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'librsvg>=2.26.2-2' 'libexif' 'eject' 'desktop-file-utils' 'libgnome>=2.32.0' 'gsettings-desktop-schemas' \ @@ -21,7 +21,7 @@ Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --disable-packagekit" sha1sums=('ce8195d84e0020c87c11ad8b6e7613eec3efe7c5') provides=('eel' 'nautilus-sendto') -replaces=('eel' 'nautilus-wallpaper' 'nautilus-sendto' 'file-browser-applet') +replaces=('eel' 'nautilus-wallpaper' 'nautilus-sendto' 'file-browser-applet' 'nautilus-image-converter') conflicts=('nautilus-sendto') # optimization OK From lorddarthfener at gmail.com Sat Apr 2 20:26:40 2011 From: lorddarthfener at gmail.com (Melko) Date: Sat, 2 Apr 2011 20:26:40 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: rtorrent-0.8.7-3-i686 Message-ID: <20110402182640.6DBDF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e46c65579e6ee42a2e18683d4641bcfbaabfc08e commit e46c65579e6ee42a2e18683d4641bcfbaabfc08e Author: Melko Date: Sat Apr 2 20:27:09 2011 +0200 rtorrent-0.8.7-3-i686 * add patch (solve #4446) diff --git a/source/network-extra/rtorrent/FrugalBuild b/source/network-extra/rtorrent/FrugalBuild index a183604..05fb757 100644 --- a/source/network-extra/rtorrent/FrugalBuild +++ b/source/network-extra/rtorrent/FrugalBuild @@ -3,7 +3,7 @@ pkgname=rtorrent pkgver=0.8.7 -pkgrel=2 +pkgrel=3 pkgdesc="The ncurses client for libtorrent." url="http://libtorrent.rakshasa.no/" depends=('ncurses' 'libtorrent>=0.12.6' 'xmlrpc-c>=1.11.00' 'c-ares>=1.6' 'openssl>=1.0.0') @@ -11,9 +11,10 @@ groups=('network-extra') archs=('i686' 'x86_64') Fconfopts="$Fconfopts --with-xmlrpc-c" up2date="Flasttar $url" -source=(http://libtorrent.rakshasa.no/downloads/rtorrent-$pkgver.tar.gz curl_segfault_dirty_hack.diff) +source=(http://libtorrent.rakshasa.no/downloads/rtorrent-$pkgver.tar.gz curl_segfault_dirty_hack.diff $pkgname-segfault.patch) sha1sums=('691c95e948d02927edc05321e52cd1c63513fabc' \ - '583dadf10d30956ec796ec9f3c2c4d5dfff64c79') + '583dadf10d30956ec796ec9f3c2c4d5dfff64c79' \ + '435f5a73ffac3115fc9f815451a0366f19ed5f7a') build() { diff --git a/source/network-extra/rtorrent/rtorrent-segfault.patch b/source/network-extra/rtorrent/rtorrent-segfault.patch new file mode 100644 index 0000000..e5e5734 --- /dev/null +++ b/source/network-extra/rtorrent/rtorrent-segfault.patch @@ -0,0 +1,11 @@ +--- rtorrent-0.8.7/src/display/canvas.h.old 2011-04-02 20:05:46.171644978 +0200 ++++ rtorrent-0.8.7/src/display/canvas.h 2011-04-02 20:06:28.596645186 +0200 +@@ -48,7 +48,7 @@ + public: + typedef std::vector attributes_list; + +- Canvas(int x = 0, int y = 0, int width = 0, int height = 0) : ++ Canvas(int x = 0, int y = 0, int width = 1, int height = 1) : + m_window(newwin(height, width, y, x)) {} + ~Canvas() { delwin(m_window); } + From bouleetbil at frogdev.info Sat Apr 2 21:37:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:37:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: seahorse-2.91.93-1-x86_64 Message-ID: <20110402193749.ADB2E1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4c3f6fbbc30452d828259b01c4d5e6edb385ea4c commit 4c3f6fbbc30452d828259b01c4d5e6edb385ea4c Author: bouleetbil Date: Sat Apr 2 21:37:52 2011 +0200 seahorse-2.91.93-1-x86_64 *Version bump diff --git a/source/gnome-extra/seahorse/FrugalBuild b/source/gnome-extra/seahorse/FrugalBuild index 0478a6e..13563eb 100644 --- a/source/gnome-extra/seahorse/FrugalBuild +++ b/source/gnome-extra/seahorse/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: Priyank Gosalia pkgname=seahorse -pkgver=2.91.92 +pkgver=2.91.93 pkgrel=1 pkgdesc="A GNOME application for managing PGP keys." url="http://www.seahorse.sourceforge.net/" depends=('gnutls>=2.8.6-1' 'gtksourceview>=2.10.0-4' 'gnupg>=1.4.9-2' 'libldap>=2.4.16' \ 'gpgme' 'libsoup>=2.30.0' 'dbus' 'dbus-glib' 'libxml2' \ - 'libnotify>=0.7' 'libgnomeui>=2.24.3' 'openssh' 'gconf>=2.28.1' 'avahi>=0.6.24-5') + 'libnotify>=0.7' 'openssh' 'gconf>=2.28.1' 'avahi>=0.6.24-5') makedepends=('gettext' 'openldap' 'intltool' 'pkgconfig' 'gnome-doc-utils') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') @@ -18,12 +18,12 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_mime="y" Finclude gnome gnome-scriptlet -sha1sums=('4e02aa1ddb9b128dc8726682c07a717c79c23ea0') +sha1sums=('efb96ac42cde93dc65315a1d4d12f091774c3cc6') unset MAKEFLAGS Fconfopts="${Fconfopts[@]} -enable-ldap --enable-hkp --enable-libnotify \ --with-keyserver --enable-ssh --enable-dbus --enable-avahi \ --enable-sharing --enable-gnome-keyring --disable-scrollkeeper \ --disable-schemas-install" -replaces=('gnome-keyring-manager') +replaces=('gnome-keyring-manager' 'seahorse-applet') # optimization OK From bouleetbil at frogdev.info Sat Apr 2 21:37:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:37:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: seahorse-applet *dead pkg Message-ID: <20110402193749.9B6421358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4f90c3abfa49fea247f0d7f479897ca6d1b042dd commit 4f90c3abfa49fea247f0d7f479897ca6d1b042dd Author: bouleetbil Date: Sat Apr 2 21:32:04 2011 +0200 seahorse-applet *dead pkg diff --git a/source/gnome-extra/seahorse-applet/FrugalBuild b/source/gnome-extra/seahorse-applet/FrugalBuild deleted file mode 100644 index 85c52af..0000000 --- a/source/gnome-extra/seahorse-applet/FrugalBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Compiling Time: 0.36 SBU -# Maintainer: Priyank Gosalia -# Contributor: bouleetbil - -pkgname=seahorse-applet -_F_gnome_name=seahorse-plugins -pkgver=2.30.1 -pkgrel=1 -pkgdesc="seahorse panel applet for GNOME" -url="http://www.seahorse.sourceforge.net/" -depends=('seahorse>=2.30.0-2' 'gnome-applets>=2.30.0-2') -makedepends=('gnome-doc-utils' 'nautilus>=2.30.0' 'gedit>=2.30.0' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -_F_gnome_iconcache="y" -_F_gnome_desktop="y" -_F_gnome_mime="y" -_F_gnome_schemas=('/etc/gconf/schemas/seahorse-gedit.schemas' \ - '/etc/gconf/schemas/seahorse-plugins.schemas') -Finclude gnome gnome-scriptlet -sha1sums=('d06c638e839024ab623dc001b3c4e43be293ede8') -subpkgs=("$pkgname-gedit" "$pkgname-nautilus") -subdescs=('seahorse encryption plugin for gedit' \ - 'seahorse encryption extension for nautilus') -subdepends=("gedit>=2.30.0 gedit-python>=2.30.0" "nautilus>=2.30.0") -subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver") -subgroups=('gnome-extra' 'gnome-extra') -subarchs=('i686 x86_64 ppc' 'i686 x86_64 ppc') -Fconfopts="${Fconfopts[@]} --disable-update-mime-database" -_F_cd_path=$_F_gnome_name-$pkgver - -build() { - unset MAKEFLAGS - Fbuild - Fbuild_gnome_scriptlet - - Fsplit $pkgname-gedit usr/lib/gedit-2/ - Fsplit $pkgname-nautilus usr/lib/nautilus/ -} - -# optimization OK From bouleetbil at frogdev.info Sat Apr 2 21:46:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:46:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-sound-converter *dead pkg Message-ID: <20110402194612.6FAFD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=cc2d81b826712210fd78490672a16f50763db694 commit cc2d81b826712210fd78490672a16f50763db694 Author: bouleetbil Date: Sat Apr 2 21:44:43 2011 +0200 nautilus-sound-converter *dead pkg diff --git a/source/gnome-extra/nautilus-sound-converter/FrugalBuild b/source/gnome-extra/nautilus-sound-converter/FrugalBuild deleted file mode 100644 index 047dc7b..0000000 --- a/source/gnome-extra/nautilus-sound-converter/FrugalBuild +++ /dev/null @@ -1,16 +0,0 @@ -# Compiling Time: 0.09 SBU -# Maintainer: bouleetbil - -pkgname=nautilus-sound-converter -pkgver=1.0.5 -pkgrel=1 -pkgdesc="Nautilus extension to convert audio files to a different format" -options=('scriptlet') -depends=('nautilus>=2.30.0-2' 'gnome-media>=2.30.0-2' 'gst-plugins-base>=0.10.22-2') -makedepends=('intltool') -Finclude googlecode -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -sha1sums=('6a3addf58baa2d31dee35bfae81fb21d1474888b') - -# optimization OK From bouleetbil at frogdev.info Sat Apr 2 21:46:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:46:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: soundconverter-1.5.4-2-x86_64 *replaces nautilus-sound-converter Message-ID: <20110402194612.819291358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3dc9c9817f787b9a2ceaf1ea47e296cec8ddf856 commit 3dc9c9817f787b9a2ceaf1ea47e296cec8ddf856 Author: bouleetbil Date: Sat Apr 2 21:46:10 2011 +0200 soundconverter-1.5.4-2-x86_64 *replaces nautilus-sound-converter diff --git a/source/gnome-extra/soundconverter/FrugalBuild b/source/gnome-extra/soundconverter/FrugalBuild index 9de414c..7d5d03a 100644 --- a/source/gnome-extra/soundconverter/FrugalBuild +++ b/source/gnome-extra/soundconverter/FrugalBuild @@ -3,7 +3,7 @@ pkgname=soundconverter pkgver=1.5.4 -pkgrel=1 +pkgrel=2 pkgdesc="A simple sound converter application for the GNOME environment." groups=('gnome-extra') archs=('i686' 'x86_64') @@ -19,3 +19,4 @@ _F_gnome_desktop="y" options=('scriptlet') Finclude berlios gnome-scriptlet sha1sums=('8dac0ca32a2c1274f6cc9b465f1debfead473898') +replaces=('nautilus-sound-converter') From bouleetbil at frogdev.info Sat Apr 2 21:56:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:56:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libisofs *moved to lib (brasero) Message-ID: <20110402195659.642BE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=97d763de744e024fb7c71da9b772aea8a4495ffb commit 97d763de744e024fb7c71da9b772aea8a4495ffb Author: bouleetbil Date: Sat Apr 2 21:56:48 2011 +0200 libisofs *moved to lib (brasero) diff --git a/source/lib-extra/libisofs/FrugalBuild b/source/lib/libisofs/FrugalBuild similarity index 95% rename from source/lib-extra/libisofs/FrugalBuild rename to source/lib/libisofs/FrugalBuild index d5a9c23..22fcea8 100644 --- a/source/lib-extra/libisofs/FrugalBuild +++ b/source/lib/libisofs/FrugalBuild @@ -4,11 +4,11 @@ pkgname=libisofs pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="A library for creating ISO filesystem, among other things." url="http://libburnia-project.org" depends=('glibc' 'libburn>=1.0.0.pl00') -groups=('lib-extra') +groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url/wiki/Releases" source=(http://files.libburnia-project.org/releases/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sat Apr 2 21:59:40 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 21:59:40 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libburn-1.0.4.pl00-1-x86_64 Message-ID: <20110402195940.9316C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=63869799be36be5328110d73195199d25776f332 commit 63869799be36be5328110d73195199d25776f332 Author: bouleetbil Date: Sat Apr 2 21:59:46 2011 +0200 libburn-1.0.4.pl00-1-x86_64 *Version bump diff --git a/source/lib/libburn/FrugalBuild b/source/lib/libburn/FrugalBuild index 04ae240..848189c 100644 --- a/source/lib/libburn/FrugalBuild +++ b/source/lib/libburn/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: crazy pkgname=libburn -pkgver=1.0.0.pl00 -pkgrel=2 +pkgver=1.0.4.pl00 +pkgrel=1 pkgdesc="Disc reading/writing library." url="http://libburnia-project.org" depends=('glibc') @@ -11,8 +11,8 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url/wiki/Releases|grep -m1 'libburn-\(.*\).tar.gz'|sed 's/.*-\(.*\).tar.gz.*/\1/'" source=(http://files.libburnia-project.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('2785ec7d08983ebed8ed3700172f35a2390cca34') -_F_cd_path="${pkgname}-1.0.0" +sha1sums=('39791e2fad661e31727ef7a03bfd5fb4592f9281') +_F_cd_path="${pkgname}-1.0.4" #NOTE: Contains cdrskin which could be place in app-extra group. Maybe #could we split this package? From bouleetbil at frogdev.info Sat Apr 2 22:40:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 22:40:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libisofs-1.0.4-1-x86_64 Message-ID: <20110402204049.122841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0987843a026a630d9707554216cd330c910dde1b commit 0987843a026a630d9707554216cd330c910dde1b Author: bouleetbil Date: Sat Apr 2 22:40:54 2011 +0200 libisofs-1.0.4-1-x86_64 *Version bump diff --git a/source/lib/libisofs/FrugalBuild b/source/lib/libisofs/FrugalBuild index 22fcea8..b20f9c1 100644 --- a/source/lib/libisofs/FrugalBuild +++ b/source/lib/libisofs/FrugalBuild @@ -3,16 +3,16 @@ # Contributor: James Buren pkgname=libisofs -pkgver=1.0.0 -pkgrel=2 +pkgver=1.0.4 +pkgrel=1 pkgdesc="A library for creating ISO filesystem, among other things." url="http://libburnia-project.org" -depends=('glibc' 'libburn>=1.0.0.pl00') +depends=('glibc' 'libburn>=1.0.4.pl00') groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url/wiki/Releases" source=(http://files.libburnia-project.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('5c0b9f02190667203869edcbac9eb10975956c40') +sha1sums=('221aa8089302aa5972633d8b1dfd9c6f8ff29788') build() { Fcd Fbuild From bouleetbil at frogdev.info Sat Apr 2 23:41:26 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 2 Apr 2011 23:41:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-panel-2.91.94-2-x86_64 *fix glib schema enable telepathy support Message-ID: <20110402214126.E98831358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8765dac385c1832cef61d5ce3855e8333063d42e commit 8765dac385c1832cef61d5ce3855e8333063d42e Author: bouleetbil Date: Sat Apr 2 23:41:12 2011 +0200 gnome-panel-2.91.94-2-x86_64 *fix glib schema enable telepathy support diff --git a/source/gnome/gnome-panel/FrugalBuild b/source/gnome/gnome-panel/FrugalBuild index b6e658f..ac2fb95 100644 --- a/source/gnome/gnome-panel/FrugalBuild +++ b/source/gnome/gnome-panel/FrugalBuild @@ -3,16 +3,17 @@ pkgname=gnome-panel pkgver=2.91.94 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME panel and core applets" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.91' 'gnome-menus>=2.30.4' \ 'libwnck>=2.90.0' 'rarian>=0.8.0' 'dbus-glib>=0.71' 'avahi-glib>=0.6.17' 'librsvg>=2.32.0' \ 'libcanberra-gtk' 'libkrb5' 'openssl>=1.0.0-3' 'libgweather>=2.91.0' 'evolution-data-server' \ - 'networkmanager' 'dconf') + 'networkmanager' 'dconf' 'telepathy-glib') makedepends=('intltool' 'gtk-doc>=1.9' 'gnome-doc-utils>=0.14.0' 'krb5' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/clock.schemas') +_F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" _F_gnome_desktop="y" @@ -23,7 +24,8 @@ replaces=('avant-window-navigator' 'awn-extras-applets') build() { Fcd Fbuild_slice_scrollkeeper - Fmake --disable-schemas-install --enable-eds=yes --enable-gtk-doc --disable-scrollkeeper --with-in-process-applets=all + Fmake --disable-schemas-install --enable-gtk-doc --disable-scrollkeeper \ + --with-in-process-applets=clock,notification-area,wncklet --enable-eds --disable-schemas-compile Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 Fbuild_gnome_scriptlet } From vmiklos at frugalware.org Sun Apr 3 00:40:40 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 00:40:40 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tor-0.2.1.30-1-i686 Message-ID: <20110402224040.AE5601358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=43ecd1dcc2b06b8a4f16760b546c8764f4e1101c commit 43ecd1dcc2b06b8a4f16760b546c8764f4e1101c Author: Miklos Vajna Date: Sun Apr 3 00:28:25 2011 +0200 tor-0.2.1.30-1-i686 - version bump - stop adding /var/run without a reason diff --git a/source/network-extra/tor/FrugalBuild b/source/network-extra/tor/FrugalBuild index 2daec04..690ef8c 100644 --- a/source/network-extra/tor/FrugalBuild +++ b/source/network-extra/tor/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=tor -pkgver=0.2.1.29 +pkgver=0.2.1.30 pkgrel=1 pkgdesc="An anonymous Internet communication system" url="http://www.torproject.org" @@ -12,6 +12,7 @@ depends=('openssl>=1.0.0' 'zlib' 'libevent>=2.0.10') groups=('network-extra') backup=(etc/tor/{torrc,tor-tsocks.conf}) archs=('i686' 'x86_64') +_F_archive_grepv="alpha" up2date="Flasttar $url/dist/" source=($url//dist/$pkgname-$pkgver.tar.gz rc.$pkgname torrc.sample.in.patch) signatures=("$source.asc" '' '') @@ -21,7 +22,6 @@ build() Fcd Fsed 'CFLAGS="$CFLAGS -Wall -g -O2"' 'CFLAGS="$CFLAGS -Wall"' configure Fbuild - Fmkdir var/run Fmv /etc/tor/torrc.sample /etc/tor/torrc Fexe /etc/rc.d/rc.$pkgname Fmkdir /var/lib/tor From vmiklos at frugalware.org Sun Apr 3 00:51:41 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 00:51:41 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mercurial-1.8.2-1-i686 Message-ID: <20110402225141.D36721358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9f64537e410540adc63d79834a0cc6d6d3529172 commit 9f64537e410540adc63d79834a0cc6d6d3529172 Author: Miklos Vajna Date: Sun Apr 3 00:39:46 2011 +0200 mercurial-1.8.2-1-i686 - version bump diff --git a/source/devel-extra/mercurial/FrugalBuild b/source/devel-extra/mercurial/FrugalBuild index e45efe5..4aeccc6 100644 --- a/source/devel-extra/mercurial/FrugalBuild +++ b/source/devel-extra/mercurial/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=mercurial -pkgver=1.8.1 +pkgver=1.8.2 pkgrel=1 pkgdesc="A fast, lightweight source control management system." url="http://mercurial.selenic.com/" @@ -14,7 +14,7 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/release/" source=($url/release/$pkgname-$pkgver.tar.gz) -sha1sums=('152c19eed4e2809ec0aca1c3a62e8e561e184fc3') +sha1sums=('394e95b3ddfb9b725368b81ad60dc39382fb9e12') subpkgs=('mercurial-hgk') subdescs=('Graphical repository and history browser based on gitk.') From devil505linux at gmail.com Sun Apr 3 10:20:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 10:20:50 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gwibber-2.91.93-1-i686 * version bump Message-ID: <20110403082050.2CD401358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=256de7cd372744f897f0e06d3ec6626ef6eae31e commit 256de7cd372744f897f0e06d3ec6626ef6eae31e Author: Devil505 Date: Sun Apr 3 11:18:00 2011 +0200 gwibber-2.91.93-1-i686 * version bump diff --git a/source/gnome-extra/gwibber/FrugalBuild b/source/gnome-extra/gwibber/FrugalBuild index bcdd4ba..e2098c5 100644 --- a/source/gnome-extra/gwibber/FrugalBuild +++ b/source/gnome-extra/gwibber/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gwibber -pkgver=2.91.92 +pkgver=2.91.93 pkgrel=1 pkgdesc="Open Source microblogging client for GNOME, with webkit" depends=('python-simplejson' 'pygtk' 'dbus-python' 'pywebkitgtk>=1.1.6-2' 'gnome-python-desktop-wnck' \ @@ -13,8 +13,8 @@ makedepends=('setuptools' 'python-distutils-extra' 'intltool') options=('scriptlet') groups=('gnome-extra') _F_gnome_desktop="y" -_F_launchpad_branch="trunk" +_F_launchpad_branch="3.0" Finclude gnome-scriptlet launchpad archs=('i686' 'x86_64') -sha1sums=('9e49b5d0a3a999b7c0b57e2c1930adc844cf9fdd') +sha1sums=('bac2afe76ce54c83a344fdc0e024e0cb5084a670') replaces=('twitux') From devil505linux at gmail.com Sun Apr 3 11:07:41 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 11:07:41 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: vlc-1.1.8-1-i686 * version bump * removed matroska patch Message-ID: <20110403090741.42D651358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bb4fa6148319e43bf78b54426f499041fb18fd0d commit bb4fa6148319e43bf78b54426f499041fb18fd0d Author: Devil505 Date: Sun Apr 3 12:04:49 2011 +0200 vlc-1.1.8-1-i686 * version bump * removed matroska patch diff --git a/source/xmultimedia-extra/vlc/FrugalBuild b/source/xmultimedia-extra/vlc/FrugalBuild index ec6fbd1..3dd78fb 100644 --- a/source/xmultimedia-extra/vlc/FrugalBuild +++ b/source/xmultimedia-extra/vlc/FrugalBuild @@ -3,9 +3,9 @@ # Contributor: VMiklos pkgname=vlc -pkgver=1.1.7 +pkgver=1.1.8 pkgextraver= -pkgrel=2 +pkgrel=1 pkgdesc="The cross-platform media player and streaming server." url="http://www.videolan.org/vlc/" depends=('hal' 'e2fsprogs' 'libxpm>=3.5.8-1' 'libxdmcp' 'libshout' 'avahi' 'libdvbpsi>=0.1.7' 'libsmbclient' 'vcdimager>=0.7.24' 'libdvdnav>=4.1.3' \ @@ -20,9 +20,8 @@ groups=('xmultimedia-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download-sources.html|grep -m1 'Latest VLC'|sed 's/.*(\(.*\)).*/\1/;s/$pkgextraver//'" source=(http://download.videolan.org/pub/videolan/vlc/$pkgver$pkgextraver/$pkgname-$pkgver$pkgextraver.tar.bz2 \ - fix_matroska.patch vlc-upnp.patch) -sha1sums=('6bd559fe2bba51c5ed1ae71d18dc8ac611e72a04' \ - '7939a5bf75e60a2fcfb41cd5b519274531a8b485' \ + vlc-upnp.patch) +sha1sums=('c4ac61e31fa287a0cb7744534a1abf49cf033776' \ '13e7ccc32f375650aec10b7c7431b01e547cfd59') build() diff --git a/source/xmultimedia-extra/vlc/fix_matroska.patch b/source/xmultimedia-extra/vlc/fix_matroska.patch deleted file mode 100644 index 3ce3cb7..0000000 --- a/source/xmultimedia-extra/vlc/fix_matroska.patch +++ /dev/null @@ -1,89 +0,0 @@ -diff -urN vlc-1.1.7.orig/modules/demux/mkv/matroska_segment.cpp vlc-1.1.7/modules/demux/mkv/matroska_segment.cpp ---- vlc-1.1.7.orig/modules/demux/mkv/matroska_segment.cpp 2011-02-02 13:45:56.115863316 +0100 -+++ vlc-1.1.7/modules/demux/mkv/matroska_segment.cpp 2011-02-02 13:55:23.957416146 +0100 -@@ -220,74 +220,6 @@ - } - ep->Up(); - } -- else if( MKV_IS_ID( el, KaxTagGeneral ) ) -- { -- msg_Dbg( &sys.demuxer, "| + General" ); -- ep->Down(); -- while( ( el = ep->Get() ) != NULL ) -- { -- msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() ); -- } -- ep->Up(); -- } -- else if( MKV_IS_ID( el, KaxTagGenres ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Genres" ); -- ep->Down(); -- while( ( el = ep->Get() ) != NULL ) -- { -- msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() ); -- } -- ep->Up(); -- } -- else if( MKV_IS_ID( el, KaxTagAudioSpecific ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Audio Specific" ); -- ep->Down(); -- while( ( el = ep->Get() ) != NULL ) -- { -- msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() ); -- } -- ep->Up(); -- } -- else if( MKV_IS_ID( el, KaxTagImageSpecific ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Images Specific" ); -- ep->Down(); -- while( ( el = ep->Get() ) != NULL ) -- { -- msg_Dbg( &sys.demuxer, "| | + Unknown (%s)", typeid( *el ).name() ); -- } -- ep->Up(); -- } -- else if( MKV_IS_ID( el, KaxTagMultiComment ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Comment" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiCommercial ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Commercial" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiDate ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Date" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiEntity ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Entity" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiIdentifier ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Identifier" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiLegal ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Legal" ); -- } -- else if( MKV_IS_ID( el, KaxTagMultiTitle ) ) -- { -- msg_Dbg( &sys.demuxer, "| + Multi Title" ); -- } - else - { - msg_Dbg( &sys.demuxer, "| + LoadTag Unknown (%s)", typeid( *el ).name() ); -diff -urN vlc-1.1.7.orig/modules/demux/mkv/mkv.hpp vlc-1.1.7/modules/demux/mkv/mkv.hpp ---- vlc-1.1.7.orig/modules/demux/mkv/mkv.hpp 2011-02-02 13:45:56.114863318 +0100 -+++ vlc-1.1.7/modules/demux/mkv/mkv.hpp 2011-02-02 13:46:08.647832555 +0100 -@@ -92,7 +92,6 @@ - #include "matroska/KaxSegment.h" - #include "matroska/KaxTag.h" - #include "matroska/KaxTags.h" --#include "matroska/KaxTagMulti.h" - #include "matroska/KaxTracks.h" - #include "matroska/KaxTrackAudio.h" - #include "matroska/KaxTrackVideo.h" From devil505linux at gmail.com Sun Apr 3 11:18:12 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 11:18:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: googlecl-0.9.13-1-i686 * version bump Message-ID: <20110403091812.9F97B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a1eacf3cae1d3e1c5947591c85e424cea5c10b56 commit a1eacf3cae1d3e1c5947591c85e424cea5c10b56 Author: Devil505 Date: Sun Apr 3 12:16:07 2011 +0200 googlecl-0.9.13-1-i686 * version bump diff --git a/source/apps-extra/googlecl/FrugalBuild b/source/apps-extra/googlecl/FrugalBuild index 55c3953..ce470d7 100644 --- a/source/apps-extra/googlecl/FrugalBuild +++ b/source/apps-extra/googlecl/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Devil505 pkgname=googlecl -pkgver=0.9.12 +pkgver=0.9.13 pkgrel=1 pkgdesc="Command line tools for the Google Data APIs" depends=('gdata.py') groups=('apps-extra') archs=('i686' 'x86_64') Finclude googlecode -sha1sums=('a823b7324073760e9dc19d93d5a3e3074b1b2d5e') +sha1sums=('c0eea1bc0a76e84f3d9f2ebf360e09cf63fe9a0d') From devil505linux at gmail.com Sun Apr 3 11:21:31 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 11:21:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: python-setproctitle-1.1.2-1-i686 * version bump Message-ID: <20110403092131.1C0F81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=acc6309c32aa35cf95fd61091a479980183f425b commit acc6309c32aa35cf95fd61091a479980183f425b Author: Devil505 Date: Sun Apr 3 12:19:46 2011 +0200 python-setproctitle-1.1.2-1-i686 * version bump diff --git a/source/devel-extra/python-setproctitle/FrugalBuild b/source/devel-extra/python-setproctitle/FrugalBuild index 5fb8d8c..23b3368 100644 --- a/source/devel-extra/python-setproctitle/FrugalBuild +++ b/source/devel-extra/python-setproctitle/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=python-setproctitle -pkgver=1.1.1 +pkgver=1.1.2 pkgrel=1 pkgdesc="Allows a python process to change its process title" depends=('python>=2.7.1') @@ -11,7 +11,7 @@ archs=('i686' 'x86_64') _F_archive_name="setproctitle" _F_pypi_name='setproctitle' Finclude pypi -sha1sums=('2680991ae277e70f16e389b23346c8cc297ec9b4') +sha1sums=('9f2131167c3de91e7d96994be5838bb965330205') build() { Fcd From devil505linux at gmail.com Sun Apr 3 11:35:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 11:35:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: python-mechanize-0.2.5-1-i686 * version bump Message-ID: <20110403093550.27F021358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ef01a00bf912468ba155c2a35ac0ca35fcbf7929 commit ef01a00bf912468ba155c2a35ac0ca35fcbf7929 Author: Devil505 Date: Sun Apr 3 12:27:39 2011 +0200 python-mechanize-0.2.5-1-i686 * version bump diff --git a/source/devel-extra/python-mechanize/FrugalBuild b/source/devel-extra/python-mechanize/FrugalBuild index 38f4a3a..9275316 100644 --- a/source/devel-extra/python-mechanize/FrugalBuild +++ b/source/devel-extra/python-mechanize/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=python-mechanize -pkgver=0.2.4 +pkgver=0.2.5 pkgrel=1 _F_archive_name="mechanize" pkgdesc="Stateful programmatic web browsing in Python." @@ -13,4 +13,4 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html | Flasttar" source=($url/src/$_F_archive_name-$pkgver.tar.gz) -sha1sums=('c88ed466d9a91d0d9ed84a606f5698cd18f2a858') +sha1sums=('9d2fb74fc762e54848c0b3ed4b6a9c73722ef619') From bouleetbil at frogdev.info Sun Apr 3 11:38:23 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:38:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110403093823.A8F1D1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=96f15805576931ca6931e6d37ed61e6537109068 commit 96f15805576931ca6931e6d37ed61e6537109068 Merge: 256de7c ef01a00 Author: bouleetbil Date: Sun Apr 3 11:38:22 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Conflicts: source/lib-extra/hamlib/FrugalBuild source/xmultimedia-extra/vlc/FrugalBuild diff --cc source/lib-extra/hamlib/FrugalBuild index abaf686,52cc638..5dd84ba --- a/source/lib-extra/hamlib/FrugalBuild +++ b/source/lib-extra/hamlib/FrugalBuild @@@ -2,11 -2,11 +2,11 @@@ # Maintainer: Devil505 pkgname=hamlib - pkgver=1.2.12 + pkgver=1.2.13 -pkgrel=1 +pkgrel=2 pkgdesc="HAM radio equipment control libraries" makedepends=('automake' 'autoconf' 'doxygen' 'libtool' 'swig') -depends=('perl' 'python' 'libxml2' 'libusb' 'tcl') +depends=('perl' 'python' 'libxml2>=2.7.8' 'libusb' 'tcl') Finclude sourceforge groups=('lib-extra') archs=('i686' 'x86_64') diff --cc source/xmultimedia-extra/vlc/FrugalBuild index 8f8ed53,3dd78fb..2f66c03 --- a/source/xmultimedia-extra/vlc/FrugalBuild +++ b/source/xmultimedia-extra/vlc/FrugalBuild @@@ -3,9 -3,9 +3,9 @@@ # Contributor: VMiklos pkgname=vlc - pkgver=1.1.7 + pkgver=1.1.8 pkgextraver= - pkgrel=3 -pkgrel=1 ++pkgrel=2 pkgdesc="The cross-platform media player and streaming server." url="http://www.videolan.org/vlc/" depends=('hal' 'e2fsprogs' 'libxpm>=3.5.8-1' 'libxdmcp' 'libshout' 'avahi' 'libdvbpsi>=0.1.7' 'libsmbclient' 'vcdimager>=0.7.24' 'libdvdnav>=4.1.3' \ From bouleetbil at frogdev.info Sun Apr 3 11:43:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:43:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-system-monitor-2.99.3-1-x86_64 Message-ID: <20110403094312.AAA9D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=af80feb348019d4da28f1d692c023ae07b7463ee commit af80feb348019d4da28f1d692c023ae07b7463ee Author: bouleetbil Date: Sun Apr 3 11:43:08 2011 +0200 gnome-system-monitor-2.99.3-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-system-monitor/FrugalBuild b/source/gnome-extra/gnome-system-monitor/FrugalBuild index b36025c..9f73f3c 100644 --- a/source/gnome-extra/gnome-system-monitor/FrugalBuild +++ b/source/gnome-extra/gnome-system-monitor/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=gnome-system-monitor -pkgver=2.99.2 -pkgrel=2 +pkgver=2.99.3 +pkgrel=1 pkgdesc="A system monitor for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'libgtop>=2.28.0' 'libwnck>=2.30.5' 'gconf' \ +depends=('libxml2>=2.7.8' 'libgtop>=2.28.0' 'libwnck>=2.30.5' 'dconf' \ 'rarian' 'libsexy' 'gnome-icon-theme' 'pcre' 'gtkmm' 'librsvg>=2.26.0-2') makedepends=('intltool' 'gnome-doc-utils>=0.16.0') groups=('gnome-extra') @@ -15,6 +15,6 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('0af376ef390189a7932c4358bffe99d95eea4368') +sha1sums=('aa3526f25eca20ea713d96cec930b3b80c8ecd51') # optimization OK From devil505linux at gmail.com Sun Apr 3 11:44:07 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 11:44:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: quodlibet-2.3-1-i686 * version bump Message-ID: <20110403094407.E9EFE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=53dc8b9b80bb95060e82a4999a7f4fe8063b9d84 commit 53dc8b9b80bb95060e82a4999a7f4fe8063b9d84 Author: Devil505 Date: Sun Apr 3 12:42:24 2011 +0200 quodlibet-2.3-1-i686 * version bump diff --git a/source/gnome-extra/quodlibet/FrugalBuild b/source/gnome-extra/quodlibet/FrugalBuild index 71b750c..7fae9a6 100644 --- a/source/gnome-extra/quodlibet/FrugalBuild +++ b/source/gnome-extra/quodlibet/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Priyank Gosalia pkgname=quodlibet -pkgver=2.2.1 -pkgrel=3 +pkgver=2.3 +pkgrel=1 pkgdesc="QuodLibet is a GTK+ based audio player written in Python." url="http://www.sacredchao.net/quodlibet/wiki" makedepends=('intltool') @@ -20,7 +20,7 @@ Finclude googlecode groups=('gnome-extra') archs=('i686' 'x86_64') options=('scriptlet') -sha1sums=('f6ae9a000f98a0a0d5928aa63b71244161255551') +sha1sums=('dae756e8224139989f6b253ef2afe18eca55ef9f') build() { Fbuild From bouleetbil at frogdev.info Sun Apr 3 11:45:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:45:33 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libchamplain-0.9.1-1-x86_64 Message-ID: <20110403094533.6F7D61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=198b5efe760302530afe14b96fa2b1992b16a017 commit 198b5efe760302530afe14b96fa2b1992b16a017 Author: bouleetbil Date: Sun Apr 3 11:45:37 2011 +0200 libchamplain-0.9.1-1-x86_64 *Version bump diff --git a/source/gnome-extra/libchamplain/FrugalBuild b/source/gnome-extra/libchamplain/FrugalBuild index 28900ca..162d18b 100644 --- a/source/gnome-extra/libchamplain/FrugalBuild +++ b/source/gnome-extra/libchamplain/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libchamplain -pkgver=0.9.0 +pkgver=0.9.1 pkgrel=1 pkgdesc="Libchamplain is a C library providing a ClutterActor to display maps." depends=('clutter-gtk>=0.10.4-2' 'libsoup-gnome>=2.32.0' 'memphis' 'pyclutter-gtk') @@ -11,6 +11,6 @@ groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome replaces=('libchamplain-python') -sha1sums=('7f7556784a4479e45f4d90b3a5b0ba612c678ad2') +sha1sums=('249a8d061f716fc6fbbe2fbdb570cff858188613') # optimization OK From bouleetbil at frogdev.info Sun Apr 3 11:47:32 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:47:32 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gitg-0.2.2-1-x86_64 Message-ID: <20110403094732.87D8A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=71195c3db8f7a04c96a02d068c7ef2cd955e4a6d commit 71195c3db8f7a04c96a02d068c7ef2cd955e4a6d Author: bouleetbil Date: Sun Apr 3 11:47:34 2011 +0200 gitg-0.2.2-1-x86_64 *Version bump diff --git a/source/gnome-extra/gitg/FrugalBuild b/source/gnome-extra/gitg/FrugalBuild index ed4f310..cfc31ee 100644 --- a/source/gnome-extra/gitg/FrugalBuild +++ b/source/gnome-extra/gitg/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gitg -pkgver=0.2.1 +pkgver=0.2.2 pkgrel=1 pkgdesc="gitg is a git repository viewer targeting gtk+/Gnome" depends=('libxdmcp>=1.1.0' 'gtksourceview3' 'gsettings-desktop-schemas' \ @@ -16,6 +16,6 @@ options=('scriptlet') Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('b30d00f771847a82931e568d2586698f648fa04a') +sha1sums=('892f5f8a72c1b11510901e68fb413e3c38c33f87') # optimization OK From bouleetbil at frogdev.info Sun Apr 3 11:49:03 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:49:03 +0200 (CEST) Subject: [Frugalware-git] gnometesting: system-tools-backends-2.10.2-1-x86_64 Message-ID: <20110403094903.97B371358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=39e4fc777bacbfcdf2357ca401e50f70a15369db commit 39e4fc777bacbfcdf2357ca401e50f70a15369db Author: bouleetbil Date: Sun Apr 3 11:49:09 2011 +0200 system-tools-backends-2.10.2-1-x86_64 *Version bump diff --git a/source/gnome-extra/system-tools-backends/FrugalBuild b/source/gnome-extra/system-tools-backends/FrugalBuild index 76daa4f..3a6b36d 100644 --- a/source/gnome-extra/system-tools-backends/FrugalBuild +++ b/source/gnome-extra/system-tools-backends/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=system-tools-backends -pkgver=2.10.1 +pkgver=2.10.2 pkgrel=1 pkgdesc="Backends for Gnome System Toools" url="http://www.gnome.org/projects/gst/" @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') Finclude gnome source=(${source[@]} $pkgname-2.4.1-frugalware-as-slackware.patch rc.$pkgname) Fconfopts="$Fconfopts --with-stb-group=root --datadir=/usr/share --with-net-dbus=/usr/lib/perl5" -sha1sums=('28fddaecaedeefa2e3d63e9f8bc8848d96477272' \ +sha1sums=('509b9644c10d7c268b7935287612c4630ab9b42d' \ 'c777161b43f7f6e498975b1e18b9ce09d533dd87' \ '05c234ec228b90cc7fbcc7e7691d08b528bb27fa') From bouleetbil at frogdev.info Sun Apr 3 11:50:48 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:50:48 +0200 (CEST) Subject: [Frugalware-git] gnometesting: tasks-0.19-1-x86_64 Message-ID: <20110403095048.D22911358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=dc3ee71cee604e0627abb7ca41f6003a55ddeb48 commit dc3ee71cee604e0627abb7ca41f6003a55ddeb48 Author: bouleetbil Date: Sun Apr 3 11:50:54 2011 +0200 tasks-0.19-1-x86_64 *Version bump diff --git a/source/gnome-extra/tasks/FrugalBuild b/source/gnome-extra/tasks/FrugalBuild index 912d871..7a2e3d3 100644 --- a/source/gnome-extra/tasks/FrugalBuild +++ b/source/gnome-extra/tasks/FrugalBuild @@ -3,11 +3,11 @@ # Contributor: AlexExtreme pkgname=tasks -pkgver=0.18 +pkgver=0.19 pkgrel=1 pkgdesc="Tasks is a simple ToDo list application" url="http://www.pimlico-project.org/tasks.html" -depends=('gtk+2>=2.20.0-2' 'evolution-data-server>=2.30.2' 'libsexy') +depends=('gtk+2>=2.20.0-2' 'evolution-data-server>=2.90.0' 'libsexy') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') @@ -16,6 +16,6 @@ _F_gnome_iconcache=y Finclude gnome-scriptlet up2date="lynx -dump http://pimlico-project.org/sources/tasks/ | Flasttar" source=(http://pimlico-project.org/sources/tasks/$pkgname-$pkgver.tar.gz) -sha1sums=('5d82f30f7f22a641250d8637caaf59a442daac98') +sha1sums=('69577e4fa52168beaf6bf162d61b605542c8fe9b') # optimization OK From bouleetbil at frogdev.info Sun Apr 3 11:59:28 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 11:59:28 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gst-rtsp-0.10.8-1-x86_64 Message-ID: <20110403095928.972D81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=918035dd93d636aaf8fdf13fd91f04ba4b9271e2 commit 918035dd93d636aaf8fdf13fd91f04ba4b9271e2 Author: bouleetbil Date: Sun Apr 3 11:59:33 2011 +0200 gst-rtsp-0.10.8-1-x86_64 *Version bump diff --git a/source/xlib-extra/gst-rtsp/FrugalBuild b/source/xlib-extra/gst-rtsp/FrugalBuild index a684c03..4b93e1e 100644 --- a/source/xlib-extra/gst-rtsp/FrugalBuild +++ b/source/xlib-extra/gst-rtsp/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=gst-rtsp -pkgver=0.10.6 -pkgrel=2 +pkgver=0.10.8 +pkgrel=1 pkgdesc="A GStreamer based RTSP server" -url="http://people.freedesktop.org/~wtay/" -source=($url/$pkgname-$pkgver.tar.bz2) -up2date="lynx --dump --source $url | Flasttar" +url="http://gstreamer.freedesktop.org" +source=(http://gstreamer.freedesktop.org/src/gst-rtsp/$pkgname-$pkgver.tar.bz2) +up2date="Flasttar http://gstreamer.freedesktop.org/src/gst-rtsp/" depends=('libxml2>=2.7.8' 'gst-plugins-base') groups=('xlib-extra') archs=('i686' 'x86_64') -sha1sums=('c45977f88f7efc09fb3f1667f7905decfbf0cbda') +sha1sums=('b2dc8c4e8e2a669f2f7a5f1cd71fb11e18fff521') # optimization OK From devil505linux at gmail.com Sun Apr 3 12:00:25 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 12:00:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mintmenu-5.1.8-1-i686 * version bump Message-ID: <20110403100025.21BED1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=09a5abe6414c1453196c43e602d2aeabf8bd4d6a commit 09a5abe6414c1453196c43e602d2aeabf8bd4d6a Author: Devil505 Date: Sun Apr 3 12:58:37 2011 +0200 mintmenu-5.1.8-1-i686 * version bump diff --git a/source/gnome-extra/mintmenu/FrugalBuild b/source/gnome-extra/mintmenu/FrugalBuild index 0ac43cf..568361a 100644 --- a/source/gnome-extra/mintmenu/FrugalBuild +++ b/source/gnome-extra/mintmenu/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=mintmenu -pkgver=5.1.6 +pkgver=5.1.8 pkgrel=1 pkgdesc="Linux Mint Menu for Gnome" url="http://packages.linuxmint.com/pool/main/m/mintmenu" @@ -14,7 +14,7 @@ archs=('i686' 'x86_64') Fpkgversep="_" up2date="Flasttar $url" source=(${url}/${pkgname}_${pkgver}.tar.gz frugal-icon.png frugal-logo.svg) -sha1sums=('7a8f400cc8eda4e8293e1462697252565212c1be' \ +sha1sums=('870e64fdfa9108c53ed7ebd910c692f3e237370d' \ '90d529e028586ec784ba69afa6ca5b805097e6ef' \ '102e46961b1a3bab0e058b1ac6b665c995ce21fb') From bouleetbil at frogdev.info Sun Apr 3 12:01:16 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:01:16 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-dvb-daemon-0.1.23-1-x86_64 Message-ID: <20110403100116.C51191358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7ea1275d596616f7cbec686d45739952c1da87bb commit 7ea1275d596616f7cbec686d45739952c1da87bb Author: bouleetbil Date: Sun Apr 3 12:01:19 2011 +0200 gnome-dvb-daemon-0.1.23-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-dvb-daemon/FrugalBuild b/source/gnome-extra/gnome-dvb-daemon/FrugalBuild index 8a9b955..16ccd8e 100644 --- a/source/gnome-extra/gnome-dvb-daemon/FrugalBuild +++ b/source/gnome-extra/gnome-dvb-daemon/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-dvb-daemon -pkgver=0.1.20 -pkgrel=3 +pkgver=0.1.23 +pkgrel=1 pkgdesc="GNOME DVB Daemon is a daemon written in Vala to setup your DVB devices." depends=('gst-plugins-bad' 'dbus-glib' 'libgee' 'sqlite3' 'gst-rtsp>=0.10.4' \ 'pygobject' 'pygtk>=2.16.0-5' 'linuxtv-dvb-apps' 'libgudev' \ @@ -14,15 +14,13 @@ groups=('gnome-extra') archs=('i686' 'x86_64') options=('scriptlet') Finclude gnome -up2date="elinks --dump https://launchpad.net/$pkgname/+download | Flasttar" -source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2) subpkgs=('gnome-dvb-totem') subdescs=("plugin gnome-dvb-daemon for totem") subdepends=("totem>=2.91.0") subrodepends=("gnome-dvb-daemon") subgroups=('gnome-extra') subarchs=('i686 x86_64') -sha1sums=('c6fdf852ae04d37fa3225be0a49e47b2bc5be22d') +sha1sums=('66e15eddfdae99e7c2de33a826c6221942712db4') build() { Fbuild From bouleetbil at frogdev.info Sun Apr 3 12:03:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:03:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pychess-0.10-1-x86_64 Message-ID: <20110403100321.9A8351358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=170371cb525d6bff02b4349ef42087026ae1761e commit 170371cb525d6bff02b4349ef42087026ae1761e Author: bouleetbil Date: Sun Apr 3 12:03:26 2011 +0200 pychess-0.10-1-x86_64 *Version bump diff --git a/source/gnome-extra/pychess/FrugalBuild b/source/gnome-extra/pychess/FrugalBuild index f60853c..6e670ff 100644 --- a/source/gnome-extra/pychess/FrugalBuild +++ b/source/gnome-extra/pychess/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=pychess -pkgver=0.8.4 -pkgrel=3 +pkgver=0.10 +pkgrel=1 pkgdesc="PyChess is a gtk chess client" depends=('pygtk' 'gst-python' 'gnome-python-desktop') makedepends=('setuptools') @@ -13,5 +13,5 @@ options=('scriptlet') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude googlecode gnome-scriptlet -sha1sums=('f5d90cb3297f81e63e302e1075df51de95116844') +sha1sums=('df60ce4d4400052559b6945c4196664c5bba7a4d') replaces=('gmchess') From devil505linux at gmail.com Sun Apr 3 12:06:22 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 12:06:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: quodlibet-plugins-2.3-1-i686 * version bump Message-ID: <20110403100622.E93F11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=36fbb5c4a561c05b5de86f272417ebcf0a35df18 commit 36fbb5c4a561c05b5de86f272417ebcf0a35df18 Author: Devil505 Date: Sun Apr 3 13:04:37 2011 +0200 quodlibet-plugins-2.3-1-i686 * version bump diff --git a/source/gnome-extra/quodlibet-plugins/FrugalBuild b/source/gnome-extra/quodlibet-plugins/FrugalBuild index ff478b0..0598f05 100644 --- a/source/gnome-extra/quodlibet-plugins/FrugalBuild +++ b/source/gnome-extra/quodlibet-plugins/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=quodlibet-plugins -pkgver=2.2.1 -pkgrel=2 +pkgver=2.3 +pkgrel=1 pkgdesc="Some plugins for QuodLibet" url="http://www.sacredchao.net/quodlibet/browser/trunk/plugins" rodepends=('python' 'quodlibet' 'notification-daemon' 'cddb-py' 'dbus-python' 'gnome-python' 'python-musicbrainz2' 'lastfmsubmitd') @@ -13,7 +13,7 @@ Finclude python googlecode options=('force') groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('bd46e850a66630faec0b6885e98d5921f04c3637') +sha1sums=('171fbe847424181402343066622af5fd643806cf') build() { From bouleetbil at frogdev.info Sun Apr 3 12:10:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:10:29 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libdmapsharing-2.9.8-1-x86_64 *version bump Message-ID: <20110403101029.1395A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1e53919ea71a498c418bcfe7d1fa5eeb503cf6a6 commit 1e53919ea71a498c418bcfe7d1fa5eeb503cf6a6 Author: bouleetbil Date: Sun Apr 3 12:10:27 2011 +0200 libdmapsharing-2.9.8-1-x86_64 *version bump diff --git a/source/xlib/libdmapsharing/FrugalBuild b/source/xlib/libdmapsharing/FrugalBuild index bc7674a..c4a2292 100644 --- a/source/xlib/libdmapsharing/FrugalBuild +++ b/source/xlib/libdmapsharing/FrugalBuild @@ -2,18 +2,18 @@ # Maintainer: bouleetbil pkgname=libdmapsharing -pkgver=2.9.7 +pkgver=2.9.8 pkgrel=1 pkgdesc="A library that implements the DMAP family of protocols" url="http://www.flyn.org/projects/libdmapsharing" up2date="Flasttar $url/download.html" source=($url/$pkgname-$pkgver.tar.gz) depends=('libxml2>=2.7.8' "glib2" "avahi-glib" "gdk-pixbuf2" "libsoup" \ - 'gst-plugins-base' 'libgee' 'gtk+2') + 'gst-plugins-base' 'libgee') makedepends=('vala') groups=('xlib') options=('scriptlet') archs=('i686' 'x86_64' 'ppc') -sha1sums=('eed5524e4974781036c5901735d598f17f0bc84e') +sha1sums=('bf7fc0246571d1ed22ff03d0dd4e8be0a905fc99') # optimization OK From bouleetbil at frogdev.info Sun Apr 3 12:11:53 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:11:53 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110403101153.C12141358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7855893b448a4ae705c853ca866fb7cc61f4bc01 commit 7855893b448a4ae705c853ca866fb7cc61f4bc01 Merge: 1e53919 36fbb5c Author: bouleetbil Date: Sun Apr 3 12:11:56 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From bouleetbil at frogdev.info Sun Apr 3 12:14:23 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:14:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-user-docs-2.91.92-1-x86_64 Message-ID: <20110403101423.340AE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4c9eafa2dea85f285675ab3e011badec0f6ab9aa commit 4c9eafa2dea85f285675ab3e011badec0f6ab9aa Author: bouleetbil Date: Sun Apr 3 12:14:27 2011 +0200 gnome-user-docs-2.91.92-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-user-docs/FrugalBuild b/source/gnome-extra/gnome-user-docs/FrugalBuild index ce09df9..36829d7 100644 --- a/source/gnome-extra/gnome-user-docs/FrugalBuild +++ b/source/gnome-extra/gnome-user-docs/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=gnome-user-docs -pkgver=2.91.91 +pkgver=2.91.92 pkgrel=1 pkgdesc="User documentation for GNOME" url="http://www.gnome.org/" @@ -15,4 +15,4 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet unset MAKEFLAGS -sha1sums=('356610b6f94fdef25fcf22793a46bd76259732a6') +sha1sums=('bfc9242a41550b5a4756691d3a0a43e95120629e') From devil505linux at gmail.com Sun Apr 3 12:19:09 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 12:19:09 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: elementary-icon-theme-2.7.1-1-i686 * version bump Message-ID: <20110403101909.E68AE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=09454adf240bb4f87862882957e2e8ca5151ede6 commit 09454adf240bb4f87862882957e2e8ca5151ede6 Author: Devil505 Date: Sun Apr 3 13:16:14 2011 +0200 elementary-icon-theme-2.7.1-1-i686 * version bump diff --git a/source/xlib-extra/elementary-icon-theme/FrugalBuild b/source/xlib-extra/elementary-icon-theme/FrugalBuild index 84a8dbe..ee3eddd 100644 --- a/source/xlib-extra/elementary-icon-theme/FrugalBuild +++ b/source/xlib-extra/elementary-icon-theme/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=elementary-icon-theme -pkgver=2.7 +pkgver=2.7.1 pkgrel=1 pkgdesc="elementary icons is an icon theme designed to be smooth, sexy, clear, and efficient." depends=('icon-naming-utils' 'libpng') @@ -11,7 +11,7 @@ archs=('i686' 'x86_64') _F_launchpad_dirname="elementaryicons" _F_launchpad_branch="2.0" Finclude launchpad -sha1sums=('4c87413363419421a29de500348c5bce0f16966d') +sha1sums=('7fa3bf104543ebf22b330e5d4725ba24c145f254') build() { Fcd $pkgname From bouleetbil at frogdev.info Sun Apr 3 12:21:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 12:21:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: tracker-0.10.6-1-x86_64 Message-ID: <20110403102154.0233C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c990015ad261da78ac0363181e82cc37808d2721 commit c990015ad261da78ac0363181e82cc37808d2721 Author: bouleetbil Date: Sun Apr 3 12:21:55 2011 +0200 tracker-0.10.6-1-x86_64 *Version bump diff --git a/source/gnome-extra/tracker/FrugalBuild b/source/gnome-extra/tracker/FrugalBuild index 3346a20..64abe26 100644 --- a/source/gnome-extra/tracker/FrugalBuild +++ b/source/gnome-extra/tracker/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=tracker -pkgver=0.10.5 +pkgver=0.10.6 pkgrel=1 pkgdesc="Tracker is a first class object database, extensible tag/metadata database, search tool and indexer." depends=('gtk+2>=2.20.0-2' 'dbus-glib>=0.76' 'sqlite3' 'gamin' \ @@ -19,7 +19,7 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet gnome -sha1sums=('8e02645adadd4bb8644c4e413712d52ecdc04d5b') +sha1sums=('3a587b9ba5105e30b0fa5caced05c4582253b519') unset MAKEFLAGS subpkgs=("${subpkgs[@]}" "$pkgname-nautilus") From devil505linux at gmail.com Sun Apr 3 12:33:15 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 12:33:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fotoxx-11.04-1-i686 * version bump Message-ID: <20110403103315.448231358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70d95d9cdc9548a479edaa6f7df6306ca04b5fd0 commit 70d95d9cdc9548a479edaa6f7df6306ca04b5fd0 Author: Devil505 Date: Sun Apr 3 13:30:18 2011 +0200 fotoxx-11.04-1-i686 * version bump diff --git a/source/xapps-extra/fotoxx/FrugalBuild b/source/xapps-extra/fotoxx/FrugalBuild index f1f7b11..e339f3d 100644 --- a/source/xapps-extra/fotoxx/FrugalBuild +++ b/source/xapps-extra/fotoxx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=fotoxx -pkgver=11.03 +pkgver=11.04 pkgrel=1 pkgdesc="A program for improving image files made with a digital camera" url="http://kornelix.squarespace.com/$pkgname/" @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://kornelix.squarespace.com/downloads/ | Flasttar" source=(http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz) -sha1sums=('75d21237f0d62c6732bb39392207e24e5b06d19f') +sha1sums=('f71d5ed476ff12536d02f0adf4e8a87736846462') replaces=('fotox') build() { From devil505linux at gmail.com Sun Apr 3 14:28:34 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 14:28:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: xnoise-0.1.18-1-i686 * version bump * replacing xnoise-plugins-core Message-ID: <20110403122834.210FE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=55454750de39db585db1650ac94520ce2c02d5ce commit 55454750de39db585db1650ac94520ce2c02d5ce Author: Devil505 Date: Sun Apr 3 15:19:29 2011 +0200 xnoise-0.1.18-1-i686 * version bump * replacing xnoise-plugins-core diff --git a/source/xapps-extra/xnoise/FrugalBuild b/source/xapps-extra/xnoise/FrugalBuild index 32faba5..83a9840 100644 --- a/source/xapps-extra/xnoise/FrugalBuild +++ b/source/xapps-extra/xnoise/FrugalBuild @@ -2,11 +2,12 @@ # Maintainer: Devil505 pkgname=xnoise -pkgver=0.1.13 -pkgrel=2 +pkgver=0.1.18 +pkgrel=1 pkgdesc="Media player with a slick GUI, great speed and lots of features." -depends=('taglib' 'sqlite3' 'gst-plugins-base' 'unique1' 'gtk+2-libs' 'cairo' 'libgcc' 'libxfixes') -makedepends=('intltool') +depends=('taglib' 'sqlite3' 'gst-plugins-base' 'unique1' 'gtk+2-libs' \ + 'cairo' 'libgcc' 'libxfixes' 'libindicate' 'libsoup') +makedepends=('intltool' 'vala') options=('scriptlet') _F_gnome_desktop="y" _F_gnome_iconcache="y" @@ -14,5 +15,6 @@ _F_googlecode_ext=".tar.bz2" Finclude googlecode gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('0f9591534085f0baa25d3b0d187ebb48fa55472b') +sha1sums=('d8015e14c7c2cea40380e674e62cb7f167dbbb1e') +replaces=('xnoise-plugins-core') # optimization OK From vmiklos at frugalware.org Sun Apr 3 14:58:12 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 14:58:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ejabberd-2.1.6-2-i686 Message-ID: <20110403125812.55EE11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=821cc4e2867c2453e200e6f6ddf2bedcf963a8cf commit 821cc4e2867c2453e200e6f6ddf2bedcf963a8cf Author: Miklos Vajna Date: Sun Apr 3 14:45:39 2011 +0200 ejabberd-2.1.6-2-i686 - added tmpfiles.d config diff --git a/source/network-extra/ejabberd/FrugalBuild b/source/network-extra/ejabberd/FrugalBuild index 554e038..e041b52 100644 --- a/source/network-extra/ejabberd/FrugalBuild +++ b/source/network-extra/ejabberd/FrugalBuild @@ -3,7 +3,7 @@ pkgname=ejabberd pkgver=2.1.6 -pkgrel=1 +pkgrel=2 pkgdesc="A free and open source instant messaging server written in Erlang." url="http://ejabberd.jabber.ru/" depends=('erlang>=14A-2') @@ -35,6 +35,11 @@ build() chown -R 41:41 $Fdestdir/{var/log/ejabberd,var/spool/ejabberd,usr/lib/ejabberd} Fdoc README.Frugalware Frcd2 + Frm /var/lock + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/ejabberd.conf << EOF +d $Flocalstatedir/lock/ejabberdctl 0750 ejabberd ejabberd - +EOF } # optimization OK From vmiklos at frugalware.org Sun Apr 3 15:09:33 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 15:09:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: clamav-0.97-3-i686 Message-ID: <20110403130933.5D9691358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=adad5efdf91c39dd5dba51ae1c24168889f9219e commit adad5efdf91c39dd5dba51ae1c24168889f9219e Author: Miklos Vajna Date: Sun Apr 3 14:57:09 2011 +0200 clamav-0.97-3-i686 - added tmpfiles.d config diff --git a/source/apps-extra/clamav/FrugalBuild b/source/apps-extra/clamav/FrugalBuild index fdff40b..073b325 100644 --- a/source/apps-extra/clamav/FrugalBuild +++ b/source/apps-extra/clamav/FrugalBuild @@ -3,7 +3,7 @@ pkgname=clamav pkgver=0.97 -pkgrel=2 +pkgrel=3 pkgdesc="Clam AntiVirus is a GPL anti-virus toolkit for UNIX" depends=('gmp>=5.0.1' 'bzip2' 'curl>=7.19.0') rodepends=('shadow') @@ -27,8 +27,12 @@ build() Fsed '/var/log/' '/var/log/clamav/' $Fdestdir/etc/{clamd,freshclam}.conf Fsed '/var/run/' '/var/run/clamav/' $Fdestdir/etc/{clamd,freshclam}.conf Frm /usr/share/clamav - Fmkdir /var/{run,log,lib}/clamav - chown 26.26 $Fdestdir/var/{run,log,lib}/clamav || Fdie + Fmkdir /var/{log,lib}/clamav + chown 26.26 $Fdestdir/var/{log,lib}/clamav || Fdie + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/clamav.conf << EOF +d $Flocalstatedir/run/clamav 0755 clamav clamav - +EOF Frcd2 } From bouleetbil at frogdev.info Sun Apr 3 16:00:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 16:00:33 +0200 (CEST) Subject: [Frugalware-git] gnometesting: seahorse-2.91.93-2-i686 *fix dep Message-ID: <20110403140033.D8FF21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a2ea799cec4b4b5ebaf5592f5c483f97b96d8d13 commit a2ea799cec4b4b5ebaf5592f5c483f97b96d8d13 Author: bouleetbil Date: Sun Apr 3 14:00:21 2011 +0200 seahorse-2.91.93-2-i686 *fix dep diff --git a/source/gnome-extra/seahorse/FrugalBuild b/source/gnome-extra/seahorse/FrugalBuild index 13563eb..0e71e6d 100644 --- a/source/gnome-extra/seahorse/FrugalBuild +++ b/source/gnome-extra/seahorse/FrugalBuild @@ -3,12 +3,12 @@ pkgname=seahorse pkgver=2.91.93 -pkgrel=1 +pkgrel=2 pkgdesc="A GNOME application for managing PGP keys." url="http://www.seahorse.sourceforge.net/" depends=('gnutls>=2.8.6-1' 'gtksourceview>=2.10.0-4' 'gnupg>=1.4.9-2' 'libldap>=2.4.16' \ 'gpgme' 'libsoup>=2.30.0' 'dbus' 'dbus-glib' 'libxml2' \ - 'libnotify>=0.7' 'openssh' 'gconf>=2.28.1' 'avahi>=0.6.24-5') + 'libnotify>=0.7' 'openssh' 'gconf>=2.28.1' 'avahi>=0.6.24-5' 'gnome-keyring') makedepends=('gettext' 'openldap' 'intltool' 'pkgconfig' 'gnome-doc-utils') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Sun Apr 3 16:05:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 16:05:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libdmapsharing-2.9.8-2-i686 *fix build Message-ID: <20110403140557.825E51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d379932a6b2ec6b70d9735c0feea7613b545f8a4 commit d379932a6b2ec6b70d9735c0feea7613b545f8a4 Author: bouleetbil Date: Sun Apr 3 14:05:43 2011 +0200 libdmapsharing-2.9.8-2-i686 *fix build diff --git a/source/xlib/libdmapsharing/FrugalBuild b/source/xlib/libdmapsharing/FrugalBuild index c4a2292..011d889 100644 --- a/source/xlib/libdmapsharing/FrugalBuild +++ b/source/xlib/libdmapsharing/FrugalBuild @@ -3,14 +3,14 @@ pkgname=libdmapsharing pkgver=2.9.8 -pkgrel=1 +pkgrel=2 pkgdesc="A library that implements the DMAP family of protocols" url="http://www.flyn.org/projects/libdmapsharing" up2date="Flasttar $url/download.html" source=($url/$pkgname-$pkgver.tar.gz) depends=('libxml2>=2.7.8' "glib2" "avahi-glib" "gdk-pixbuf2" "libsoup" \ 'gst-plugins-base' 'libgee') -makedepends=('vala') +makedepends=('vala' 'gtk+2') groups=('xlib') options=('scriptlet') archs=('i686' 'x86_64' 'ppc') From iron at frugalware.org Sun Apr 3 16:23:51 2011 From: iron at frugalware.org (Krisztian VASAS) Date: Sun, 3 Apr 2011 16:23:51 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: samba-3.5.8-1-i686 - version bump - added talloc to depends - fixed libldap version dependency - ignored not-needed patch - reworked build() Message-ID: <20110403142351.2EA7E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a7e3483f7c43034da3410727c32429ca48240542 commit a7e3483f7c43034da3410727c32429ca48240542 Author: Krisztian VASAS Date: Sun Apr 3 16:21:17 2011 +0200 samba-3.5.8-1-i686 - version bump - added talloc to depends - fixed libldap version dependency - ignored not-needed patch - reworked build() diff --git a/source/network/samba/FrugalBuild b/source/network/samba/FrugalBuild index ad9c47c..62c5cc5 100644 --- a/source/network/samba/FrugalBuild +++ b/source/network/samba/FrugalBuild @@ -3,52 +3,73 @@ # Contributor: VMiklos pkgname=samba -pkgver=3.0.37 +pkgver=3.5.8 pkgextraver= -pkgrel=4 +pkgrel=1 pkgdesc="SMB file and print server." url="http://www.samba.org" backup=(etc/logrotate.d/samba) -depends=('xfsprogs-attr' 'cups') +depends=('xfsprogs-attr' 'cups' 'talloc') makedepends=("${makedepends[@]}" 'krb5' 'openssl>=1.0.0') rodepends=("samba-client=$pkgver") groups=('network') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://samba.org/samba/ftp/stable/ |Flasttar" -source=(http://ftp.samba.org/samba/ftp/stable/$pkgname-$pkgver$pkgextraver.tar.gz samba.logrotate rc.samba Fix_Headers226.diff) +source=(http://ftp.samba.org/samba/ftp/stable/$pkgname-$pkgver$pkgextraver.tar.gz \ + samba.logrotate \ + rc.samba) +sha1sums=('ffb71de38442eee14aafb44f819671354dc5cce9' \ + '13fd371189bfe637f3f13c62d44d9e761268119e' \ + '4557aa4318e13f2c2140f68e81d7c22ae887d901') subpkgs=('libsmbclient' 'samba-client' 'samba-swat') subdescs=('SMB client library.' 'SMB client tools.' 'Swat config tool for samba.') -subdepends=('libldap>=2.4.16' 'libkrb5 db readline popt openssl>=1.0.0' '') +subdepends=('libldap>=2.4.21' 'libkrb5 db readline popt openssl>=1.0.0' '') subrodepends=('' "libsmbclient=$pkgver" "$pkgname=$pkgver") subgroups=('lib' 'network' 'network') subarchs=('i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc') -_F_cd_path="$pkgname-$pkgver$pkgextraver/source/" +_F_cd_path="$pkgname-$pkgver$pkgextraver/source3/" build() { unset MAKEFLAGS Fcd - Fpatchall - Fmake --localstatedir=/var --bindir=/usr/bin \ - --sbindir=/usr/sbin --with-lockdir=/var/cache/samba \ - --sysconfdir=/etc --with-configdir=/etc/samba \ +# Fpatchall + Fmake --localstatedir=/var \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --with-lockdir=/var/cache/samba \ + --sysconfdir=/etc \ + --with-configdir=/etc/samba \ --with-privatedir=/etc/samba/private \ --with-swatdir=/usr/share/swat \ - --enable-cups --with-fhs --with-acl-support --with-automount \ - --with-smbmount --with-quotas --with-syslog --with-utmp \ - --with-libsmbclient --with-winbind + --enable-cups \ + --with-fhs \ + --with-acl-support \ + --with-automount \ + --with-smbmount \ + --with-quotas \ + --with-syslog \ + --with-utmp \ + --with-libsmbclient \ + --with-winbind \ + --with-cifsmount \ + --with-cifsumount \ + --enable-external-libtalloc \ + --without-libtalloc + make everything || Fdie + Fmkdir /var/spool /var/samba /var/log/samba /var/cache/samba /etc/samba/private chmod 700 $Fdestdir/etc/samba/private || Fdie Fmakeinstall - Fln samba/libsmbclient.so /usr/lib/libsmbclient.so - Fln samba/libsmbclient.so /usr/lib/libsmbclient.so.0 +# Fln samba/libsmbclient.so /usr/lib/libsmbclient.so +# Fln samba/libsmbclient.so /usr/lib/libsmbclient.so.0 chmod 644 $Fdestdir/usr/include/*.h || Fdie # these links are necessary for mount - Fln /usr/bin/smbmount /sbin/mount.smbfs +# Fln /usr/bin/smbmount /sbin/mount.smbfs Fln /usr/sbin/mount.cifs /sbin/mount.cifs Fln /usr/sbin/umount.cifs /sbin/umount.cifs @@ -62,34 +83,31 @@ build() # resolve conflicts with tdb Frm /usr/bin/tdbdump + Frm /var/run + # Split Fsplit libsmbclient usr/lib/libsmbclient.so* - Fsplit libsmbclient usr/lib/samba/libsmbclient.so +# Fsplit libsmbclient usr/lib/samba/libsmbclient.so for i in smbclient nmblookup; do Fsplit samba-client usr/bin/$i Fsplit samba-client usr/share/man/man1/$i.1 done - for i in smbmount smbumount net smbspool smbmnt; do + for i in net smbspool; do Fsplit samba-client usr/bin/$i Fsplit samba-client usr/share/man/man8/$i.8 done - for i in smbfs cifs; do - Fsplit samba-client usr/sbin/mount.$i - Fsplit samba-client sbin/mount.$i - if [ $i == cifs ]; then - Fsplit samba-client usr/share/man/man8/mount.$i.8 - Fsplit samba-client usr/share/man/man8/umount.$i.8 - Fsplit samba-client usr/sbin/umount.$i - Fsplit samba-client sbin/umount.$i - fi - done + Fsplit samba-client usr/sbin/mount.cifs + Fsplit samba-client sbin/mount.cifs + Fsplit samba-client usr/share/man/man8/mount.cifs.8 + Fsplit samba-client usr/share/man/man8/umount.cifs.8 + Fsplit samba-client usr/sbin/umount.cifs + Fsplit samba-client sbin/umount.cifs + Fsplit samba-swat usr/sbin/swat Fsplit samba-swat usr/share/swat + + Frm /sbin } -sha1sums=('5ec6bc6558b3c799f747eb49fbba019d5edf0cbd' \ - '13fd371189bfe637f3f13c62d44d9e761268119e' \ - '4557aa4318e13f2c2140f68e81d7c22ae887d901' \ - '879259c707325706dac3f04d83bc80feb1dd18fe') # optimization OK From devil505linux at gmail.com Sun Apr 3 16:26:03 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 3 Apr 2011 16:26:03 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: * added $_F_launchpad_subdir Message-ID: <20110403142603.0BC8F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7f9759d0dfec498fe05465fb114ae8b11c2a6b9 commit d7f9759d0dfec498fe05465fb114ae8b11c2a6b9 Author: Devil505 Date: Sun Apr 3 17:23:20 2011 +0200 * added $_F_launchpad_subdir diff --git a/source/include/launchpad.sh b/source/include/launchpad.sh index cbb7429..9c2f538 100644 --- a/source/include/launchpad.sh +++ b/source/include/launchpad.sh @@ -40,6 +40,7 @@ # for an "baz_1.2.3.tar.gz" tarball you should use _F_launchpad_sep="_" , for empty # values use _F_launchpad_sep="None" that way you can dowload such foo1234.tgz # _F_launchpad_branch ( defaults to trunk): indicate the branch, trunk for most cases +# _F_launchpad_subdir ( defaults to pkgver): indicate the subdirectory, same as pkgver for most cases ### if [ -z "$_F_launchpad_name" ]; then @@ -65,6 +66,11 @@ fi if [ -z "$_F_launchpad_branch" ]; then _F_launchpad_branch="trunk" fi + +if [ -z "$_F_launchpad_subdir" ]; then + _F_launchpad_subdir="$pkgver" +fi + ### # == OVERWRITTEN VARIABLES # * url @@ -75,4 +81,4 @@ url="https://launchpad.net/$_F_launchpad_dirname" _F_archive_name="$_F_launchpad_name" Fpkgversep="$_F_launchpad_sep" up2date="Flastarchive $url $_F_launchpad_ext" -source=($url/$_F_launchpad_branch/$pkgver/+download/${_F_launchpad_name}${_F_launchpad_sep}${pkgver//_/-}${_F_launchpad_ext}) +source=($url/$_F_launchpad_branch/$_F_launchpad_subdir/+download/${_F_launchpad_name}${_F_launchpad_sep}${pkgver//_/-}${_F_launchpad_ext}) From iron at frugalware.org Sun Apr 3 16:28:33 2011 From: iron at frugalware.org (Krisztian VASAS) Date: Sun, 3 Apr 2011 16:28:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: added samba to upgrade.txt Message-ID: <20110403142833.3EEAF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b6bee56d02595cb1383384903c74110060dfd40a commit b6bee56d02595cb1383384903c74110060dfd40a Author: Krisztian VASAS Date: Sun Apr 3 16:28:26 2011 +0200 added samba to upgrade.txt diff --git a/docs/upgrade.txt b/docs/upgrade.txt index f8bc511..56a7c55 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -23,6 +23,12 @@ replace it when you upgrade: # pacman-g2 -Sy systemd ---- +== samba + +The new release comes with a new version of samba. From this version the +package does NOT contain mount.smb, smbmnt and smbmount binaries, so in the +file /etc/fstab the "smb" filesystem type has to be changed to "cifs" + //== Removing obsolete packages //Some software has been marked as obsolete in the new release. To remove From iron at frugalware.org Sun Apr 3 16:32:14 2011 From: iron at frugalware.org (Krisztian VASAS) Date: Sun, 3 Apr 2011 16:32:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: added some markup to samba upgrade part Message-ID: <20110403143214.7E1351358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=02ac2eba95b7c52f9b724e22763c632a946b62c3 commit 02ac2eba95b7c52f9b724e22763c632a946b62c3 Author: Krisztian VASAS Date: Sun Apr 3 16:32:08 2011 +0200 added some markup to samba upgrade part diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 56a7c55..46bf00b 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -27,7 +27,7 @@ replace it when you upgrade: The new release comes with a new version of samba. From this version the package does NOT contain mount.smb, smbmnt and smbmount binaries, so in the -file /etc/fstab the "smb" filesystem type has to be changed to "cifs" +file /etc/fstab the `smb` filesystem type has to be changed to `cifs`. //== Removing obsolete packages From bouleetbil at frogdev.info Sun Apr 3 16:36:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 16:36:29 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-control-center-2.91.93-2-x86_64 *fix build with cheese support *you can take a photo for your account :D Message-ID: <20110403143629.C97251358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=be3ffa6bb3a35af57dfb1364d0d7a0d93edb6c36 commit be3ffa6bb3a35af57dfb1364d0d7a0d93edb6c36 Author: bouleetbil Date: Sun Apr 3 16:35:46 2011 +0200 gnome-control-center-2.91.93-2-x86_64 *fix build with cheese support *you can take a photo for your account :D diff --git a/source/gnome/gnome-control-center/FrugalBuild b/source/gnome/gnome-control-center/FrugalBuild index 51c9b71..fc8595e 100644 --- a/source/gnome/gnome-control-center/FrugalBuild +++ b/source/gnome/gnome-control-center/FrugalBuild @@ -28,6 +28,7 @@ Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-aboutme --disable-doc --with-libsocialweb=yes \ --disable-update-mimedb --disable-static" if Fuse $USE_CHEESE; then + export CFLAGS="$CFLAGS -I/usr/include/cheese -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2" depends=("${depends[@]}" "cheese") fi sha1sums=('fc7411e5b0f8eb93b09a9c8f13e603e375ae04d3') From vmiklos at frugalware.org Sun Apr 3 16:38:07 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 16:38:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: junit-4.8.2-1-i686 Message-ID: <20110403143807.828EA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f8c0477ed403b7c0a366b41719c2479567c76692 commit f8c0477ed403b7c0a366b41719c2479567c76692 Author: Miklos Vajna Date: Sun Apr 3 16:26:00 2011 +0200 junit-4.8.2-1-i686 - version bump diff --git a/source/devel-extra/junit/FrugalBuild b/source/devel-extra/junit/FrugalBuild index d9c976b..d3febf6 100644 --- a/source/devel-extra/junit/FrugalBuild +++ b/source/devel-extra/junit/FrugalBuild @@ -2,18 +2,19 @@ # Maintainer: Miklos Vajna pkgname=junit -pkgver=4.8.1 +pkgver=4.8.2 pkgrel=1 pkgdesc="A regression testing framework." -_F_sourceforge_ext=".zip" -_F_sourceforge_sep="None" -Finclude java sourceforge +_F_java_no_gcj=1 +Finclude java url="http://www.junit.org/" up2date="lynx -dump http://sourceforge.net/projects/junit/files/junit/|grep zip|sed 's/.*junit\(.*\)\.zip.*/\1/;q'" -depends=(${depends[@]} 'hamcrest') +depends=('hamcrest') +makedepends=('openjdk') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('1775c7120b8ef95b4973cf644425633f7c9910f3') +source=(https://github.com/KentBeck/junit/downloads/$pkgname$pkgver.zip) +sha1sums=('15209b0933816c8e940a8375459be6e61e5f1662') build() { @@ -24,9 +25,10 @@ build() rm -rfv javadoc temp.hamcrest.source Fjavacleanup mkdir -p classes - javac -1.5 -cp $(ls /usr/share/java/hamcrest-*.jar|tr '\n' ':') -d classes \ + javac -cp $(ls /usr/share/java/hamcrest-*.jar|tr '\n' ':') -d classes \ -sourcepath src $(find src -name "*.java") || return 1 - jar -cf junit.jar -C classes . || return 1 + echo "Class-Path: hamcrest-core.jar" > MANIFEST + jar -cmf MANIFEST junit.jar -C classes . || return 1 Fjar junit.jar Fdocrel README.html doc/ReleaseNotes$pkgver.txt } From bouleetbil at frogdev.info Sun Apr 3 17:11:10 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 17:11:10 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-control-center-2.91.93-3-x86_64 *pff disable broken cheese support Message-ID: <20110403151110.DA5401358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bf350a791c59dbe1634456a230274b7c23c1414b commit bf350a791c59dbe1634456a230274b7c23c1414b Author: bouleetbil Date: Sun Apr 3 17:10:56 2011 +0200 gnome-control-center-2.91.93-3-x86_64 *pff disable broken cheese support diff --git a/source/gnome/gnome-control-center/FrugalBuild b/source/gnome/gnome-control-center/FrugalBuild index fc8595e..4d12c18 100644 --- a/source/gnome/gnome-control-center/FrugalBuild +++ b/source/gnome/gnome-control-center/FrugalBuild @@ -1,12 +1,12 @@ # Compiling time: 1.77 SBU # Maintainer: bouleetbil -USE_CHEESE=${USE_CHEESE:-"y"} +USE_CHEESE=${USE_CHEESE:-"n"} #not yet ported to gnome3 pkgname=gnome-control-center pkgver=2.91.93 -pkgrel=2 +pkgrel=3 pkgdesc="GNOME Control Center" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.90' 'mutter' 'libgnomekbd>=2.91.90' 'gnome-menus' \ 'nautilus>=2.91.90' 'gst-plugins-base>=0.10.19-2' 'desktop-file-utils' \ From vmiklos at frugalware.org Sun Apr 3 20:13:10 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 20:13:10 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: couchdb-1.0.2-2-i686 Message-ID: <20110403181310.737EB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=38b4700080efecd4b3b75145b29b6c43a2c33c84 commit 38b4700080efecd4b3b75145b29b6c43a2c33c84 Author: Miklos Vajna Date: Sun Apr 3 20:01:03 2011 +0200 couchdb-1.0.2-2-i686 - added tmpfiles.d config diff --git a/source/devel-extra/couchdb/FrugalBuild b/source/devel-extra/couchdb/FrugalBuild index 818dd3c..b0c88f1 100644 --- a/source/devel-extra/couchdb/FrugalBuild +++ b/source/devel-extra/couchdb/FrugalBuild @@ -3,7 +3,7 @@ pkgname=couchdb pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database." url="http://couchdb.org" depends=('curl' 'spidermonkey' 'zlib' 'icu4c' 'libgcc' 'erlang') @@ -25,6 +25,11 @@ build() { Fmkdir etc/sysconfig Ffile couchdb.sysconfig /etc/sysconfig/couchdb Frcd2 couchdb + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/couchdb.conf << EOF +d $Flocalstatedir/run/couchdb 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Sun Apr 3 23:40:04 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 23:40:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: hal-0.5.14-14-i686 Message-ID: <20110403214004.C5B851358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0f8b070e62002452c82888338029ec84d0af645b commit 0f8b070e62002452c82888338029ec84d0af645b Author: Miklos Vajna Date: Sun Apr 3 23:27:39 2011 +0200 hal-0.5.14-14-i686 - add hack to build with kernel-2.6.38 headers - added tmpfiles.d config diff --git a/source/apps/hal/FrugalBuild b/source/apps/hal/FrugalBuild index d859ca9..cafff3e 100644 --- a/source/apps/hal/FrugalBuild +++ b/source/apps/hal/FrugalBuild @@ -4,7 +4,7 @@ pkgname=hal pkgver=0.5.14 -pkgrel=13 +pkgrel=14 pkgdesc="Hardware Abstraction Layer" url="http://www.freedesktop.org/wiki/Software/hal" depends=('dbus-glib>=0.74' 'udev>=132' 'util-linux' 'glib2' 'libcap>=2.19' 'dbus>=1.2.12-4' \ @@ -26,6 +26,7 @@ source=(http://hal.freedesktop.org/releases/$pkgname-$pkgver.tar.gz \ fix_libusbdetection.diff \ hal.conf.patch \ do_not_check_hal_on_bus.patch \ + kernel2638.diff \ org.freedesktop.Hal.service \ haldaemon.service) sha1sums=('95bdc8141b0bce197d0d47f5bec491b08c6e3853' \ @@ -36,6 +37,7 @@ sha1sums=('95bdc8141b0bce197d0d47f5bec491b08c6e3853' \ 'f47dcd1b596605db17ae24942d40f6210cbe6b6d' \ 'effad668dfcf46e20be068625fc3a027a26ae935' \ '15d78abf9f61a2d3b2fc76d1c44c11a57e7dc2a3' \ + '97abfd8528692d3f7e04670831ec28f54bbe4d6c' \ 'baf7bb113d0bf766961d5b7af0863ff260e9f916' \ '25d1b5976690438134e4a53c4ac3aa71469d2050') build() @@ -65,14 +67,19 @@ build() --enable-console-kit \ --host=${CHOST} \ --build=${CHOST} - # TODO: package pm-tools and libsmbios .. Fmakeinstall Frm /etc/hotplug.d - Fmkdir /media Frcd hald Ffile /usr/share/dbus-1/system-services/org.freedesktop.Hal.service Ffile /lib/systemd/system/haldaemon.service Fln /dev/null /lib/systemd/system/hald.service + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/hal.conf << EOF +d $Flocalstatedir/run/hald 0755 root root - +d $Flocalstatedir/run/hald/hald-runner 0755 root root - +d $Flocalstatedir/run/hald/hald-local 0755 root root - +EOF } # optimization OK diff --git a/source/apps/hal/kernel2638.diff b/source/apps/hal/kernel2638.diff new file mode 100644 index 0000000..4b8ddd4 --- /dev/null +++ b/source/apps/hal/kernel2638.diff @@ -0,0 +1,339 @@ +diff --git a/hald/linux/probing/probe-video4linux.c b/hald/linux/probing/probe-video4linux.c +index cf913c0..54aefcb 100644 +--- a/hald/linux/probing/probe-video4linux.c ++++ b/hald/linux/probing/probe-video4linux.c +@@ -30,7 +30,7 @@ + #include + #include + #include +-#include ++#include "videodev.h" + #include + #include + #include +diff --git a/hald/linux/probing/videodev.h b/hald/linux/probing/videodev.h +new file mode 100644 +index 0000000..c51a5f9 +--- /dev/null ++++ b/hald/linux/probing/videodev.h +@@ -0,0 +1,320 @@ ++/* ++ * Video for Linux version 1 - OBSOLETE ++ * ++ * Header file for v4l1 drivers and applications, for ++ * Linux kernels 2.2.x or 2.4.x. ++ * ++ * Provides header for legacy drivers and applications ++ * ++ * See http://linuxtv.org for more info ++ * ++ */ ++#ifndef __LINUX_VIDEODEV_H ++#define __LINUX_VIDEODEV_H ++ ++#include ++#include ++#include ++ ++ ++#define VID_TYPE_CAPTURE 1 /* Can capture */ ++#define VID_TYPE_TUNER 2 /* Can tune */ ++#define VID_TYPE_TELETEXT 4 /* Does teletext */ ++#define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */ ++#define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */ ++#define VID_TYPE_CLIPPING 32 /* Can clip */ ++#define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */ ++#define VID_TYPE_SCALES 128 /* Scalable */ ++#define VID_TYPE_MONOCHROME 256 /* Monochrome only */ ++#define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */ ++#define VID_TYPE_MPEG_DECODER 1024 /* Can decode MPEG streams */ ++#define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ ++#define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ ++#define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ ++ ++struct video_capability ++{ ++ char name[32]; ++ int type; ++ int channels; /* Num channels */ ++ int audios; /* Num audio devices */ ++ int maxwidth; /* Supported width */ ++ int maxheight; /* And height */ ++ int minwidth; /* Supported width */ ++ int minheight; /* And height */ ++}; ++ ++ ++struct video_channel ++{ ++ int channel; ++ char name[32]; ++ int tuners; ++ __u32 flags; ++#define VIDEO_VC_TUNER 1 /* Channel has a tuner */ ++#define VIDEO_VC_AUDIO 2 /* Channel has audio */ ++ __u16 type; ++#define VIDEO_TYPE_TV 1 ++#define VIDEO_TYPE_CAMERA 2 ++ __u16 norm; /* Norm set by channel */ ++}; ++ ++struct video_tuner ++{ ++ int tuner; ++ char name[32]; ++ unsigned long rangelow, rangehigh; /* Tuner range */ ++ __u32 flags; ++#define VIDEO_TUNER_PAL 1 ++#define VIDEO_TUNER_NTSC 2 ++#define VIDEO_TUNER_SECAM 4 ++#define VIDEO_TUNER_LOW 8 /* Uses KHz not MHz */ ++#define VIDEO_TUNER_NORM 16 /* Tuner can set norm */ ++#define VIDEO_TUNER_STEREO_ON 128 /* Tuner is seeing stereo */ ++#define VIDEO_TUNER_RDS_ON 256 /* Tuner is seeing an RDS datastream */ ++#define VIDEO_TUNER_MBS_ON 512 /* Tuner is seeing an MBS datastream */ ++ __u16 mode; /* PAL/NTSC/SECAM/OTHER */ ++#define VIDEO_MODE_PAL 0 ++#define VIDEO_MODE_NTSC 1 ++#define VIDEO_MODE_SECAM 2 ++#define VIDEO_MODE_AUTO 3 ++ __u16 signal; /* Signal strength 16bit scale */ ++}; ++ ++struct video_picture ++{ ++ __u16 brightness; ++ __u16 hue; ++ __u16 colour; ++ __u16 contrast; ++ __u16 whiteness; /* Black and white only */ ++ __u16 depth; /* Capture depth */ ++ __u16 palette; /* Palette in use */ ++#define VIDEO_PALETTE_GREY 1 /* Linear greyscale */ ++#define VIDEO_PALETTE_HI240 2 /* High 240 cube (BT848) */ ++#define VIDEO_PALETTE_RGB565 3 /* 565 16 bit RGB */ ++#define VIDEO_PALETTE_RGB24 4 /* 24bit RGB */ ++#define VIDEO_PALETTE_RGB32 5 /* 32bit RGB */ ++#define VIDEO_PALETTE_RGB555 6 /* 555 15bit RGB */ ++#define VIDEO_PALETTE_YUV422 7 /* YUV422 capture */ ++#define VIDEO_PALETTE_YUYV 8 ++#define VIDEO_PALETTE_UYVY 9 /* The great thing about standards is ... */ ++#define VIDEO_PALETTE_YUV420 10 ++#define VIDEO_PALETTE_YUV411 11 /* YUV411 capture */ ++#define VIDEO_PALETTE_RAW 12 /* RAW capture (BT848) */ ++#define VIDEO_PALETTE_YUV422P 13 /* YUV 4:2:2 Planar */ ++#define VIDEO_PALETTE_YUV411P 14 /* YUV 4:1:1 Planar */ ++#define VIDEO_PALETTE_YUV420P 15 /* YUV 4:2:0 Planar */ ++#define VIDEO_PALETTE_YUV410P 16 /* YUV 4:1:0 Planar */ ++#define VIDEO_PALETTE_PLANAR 13 /* start of planar entries */ ++#define VIDEO_PALETTE_COMPONENT 7 /* start of component entries */ ++}; ++ ++struct video_audio ++{ ++ int audio; /* Audio channel */ ++ __u16 volume; /* If settable */ ++ __u16 bass, treble; ++ __u32 flags; ++#define VIDEO_AUDIO_MUTE 1 ++#define VIDEO_AUDIO_MUTABLE 2 ++#define VIDEO_AUDIO_VOLUME 4 ++#define VIDEO_AUDIO_BASS 8 ++#define VIDEO_AUDIO_TREBLE 16 ++#define VIDEO_AUDIO_BALANCE 32 ++ char name[16]; ++#define VIDEO_SOUND_MONO 1 ++#define VIDEO_SOUND_STEREO 2 ++#define VIDEO_SOUND_LANG1 4 ++#define VIDEO_SOUND_LANG2 8 ++ __u16 mode; ++ __u16 balance; /* Stereo balance */ ++ __u16 step; /* Step actual volume uses */ ++}; ++ ++struct video_clip ++{ ++ __s32 x,y; ++ __s32 width, height; ++ struct video_clip *next; /* For user use/driver use only */ ++}; ++ ++struct video_window ++{ ++ __u32 x,y; /* Position of window */ ++ __u32 width,height; /* Its size */ ++ __u32 chromakey; ++ __u32 flags; ++ struct video_clip *clips; /* Set only */ ++ int clipcount; ++#define VIDEO_WINDOW_INTERLACE 1 ++#define VIDEO_WINDOW_CHROMAKEY 16 /* Overlay by chromakey */ ++#define VIDEO_CLIP_BITMAP -1 ++/* bitmap is 1024x625, a '1' bit represents a clipped pixel */ ++#define VIDEO_CLIPMAP_SIZE (128 * 625) ++}; ++ ++struct video_capture ++{ ++ __u32 x,y; /* Offsets into image */ ++ __u32 width, height; /* Area to capture */ ++ __u16 decimation; /* Decimation divider */ ++ __u16 flags; /* Flags for capture */ ++#define VIDEO_CAPTURE_ODD 0 /* Temporal */ ++#define VIDEO_CAPTURE_EVEN 1 ++}; ++ ++struct video_buffer ++{ ++ void *base; ++ int height,width; ++ int depth; ++ int bytesperline; ++}; ++ ++struct video_mmap ++{ ++ unsigned int frame; /* Frame (0 - n) for double buffer */ ++ int height,width; ++ unsigned int format; /* should be VIDEO_PALETTE_* */ ++}; ++ ++struct video_key ++{ ++ __u8 key[8]; ++ __u32 flags; ++}; ++ ++struct video_mbuf ++{ ++ int size; /* Total memory to map */ ++ int frames; /* Frames */ ++ int offsets[VIDEO_MAX_FRAME]; ++}; ++ ++#define VIDEO_NO_UNIT (-1) ++ ++struct video_unit ++{ ++ int video; /* Video minor */ ++ int vbi; /* VBI minor */ ++ int radio; /* Radio minor */ ++ int audio; /* Audio minor */ ++ int teletext; /* Teletext minor */ ++}; ++ ++struct vbi_format { ++ __u32 sampling_rate; /* in Hz */ ++ __u32 samples_per_line; ++ __u32 sample_format; /* VIDEO_PALETTE_RAW only (1 byte) */ ++ __s32 start[2]; /* starting line for each frame */ ++ __u32 count[2]; /* count of lines for each frame */ ++ __u32 flags; ++#define VBI_UNSYNC 1 /* can distingues between top/bottom field */ ++#define VBI_INTERLACED 2 /* lines are interlaced */ ++}; ++ ++/* video_info is biased towards hardware mpeg encode/decode */ ++/* but it could apply generically to any hardware compressor/decompressor */ ++struct video_info ++{ ++ __u32 frame_count; /* frames output since decode/encode began */ ++ __u32 h_size; /* current unscaled horizontal size */ ++ __u32 v_size; /* current unscaled veritcal size */ ++ __u32 smpte_timecode; /* current SMPTE timecode (for current GOP) */ ++ __u32 picture_type; /* current picture type */ ++ __u32 temporal_reference; /* current temporal reference */ ++ __u8 user_data[256]; /* user data last found in compressed stream */ ++ /* user_data[0] contains user data flags, user_data[1] has count */ ++}; ++ ++/* generic structure for setting playback modes */ ++struct video_play_mode ++{ ++ int mode; ++ int p1; ++ int p2; ++}; ++ ++/* for loading microcode / fpga programming */ ++struct video_code ++{ ++ char loadwhat[16]; /* name or tag of file being passed */ ++ int datasize; ++ __u8 *data; ++}; ++ ++#define VIDIOCGCAP _IOR('v',1,struct video_capability) /* Get capabilities */ ++#define VIDIOCGCHAN _IOWR('v',2,struct video_channel) /* Get channel info (sources) */ ++#define VIDIOCSCHAN _IOW('v',3,struct video_channel) /* Set channel */ ++#define VIDIOCGTUNER _IOWR('v',4,struct video_tuner) /* Get tuner abilities */ ++#define VIDIOCSTUNER _IOW('v',5,struct video_tuner) /* Tune the tuner for the current channel */ ++#define VIDIOCGPICT _IOR('v',6,struct video_picture) /* Get picture properties */ ++#define VIDIOCSPICT _IOW('v',7,struct video_picture) /* Set picture properties */ ++#define VIDIOCCAPTURE _IOW('v',8,int) /* Start, end capture */ ++#define VIDIOCGWIN _IOR('v',9, struct video_window) /* Get the video overlay window */ ++#define VIDIOCSWIN _IOW('v',10, struct video_window) /* Set the video overlay window - passes clip list for hardware smarts , chromakey etc */ ++#define VIDIOCGFBUF _IOR('v',11, struct video_buffer) /* Get frame buffer */ ++#define VIDIOCSFBUF _IOW('v',12, struct video_buffer) /* Set frame buffer - root only */ ++#define VIDIOCKEY _IOR('v',13, struct video_key) /* Video key event - to dev 255 is to all - cuts capture on all DMA windows with this key (0xFFFFFFFF == all) */ ++#define VIDIOCGFREQ _IOR('v',14, unsigned long) /* Set tuner */ ++#define VIDIOCSFREQ _IOW('v',15, unsigned long) /* Set tuner */ ++#define VIDIOCGAUDIO _IOR('v',16, struct video_audio) /* Get audio info */ ++#define VIDIOCSAUDIO _IOW('v',17, struct video_audio) /* Audio source, mute etc */ ++#define VIDIOCSYNC _IOW('v',18, int) /* Sync with mmap grabbing */ ++#define VIDIOCMCAPTURE _IOW('v',19, struct video_mmap) /* Grab frames */ ++#define VIDIOCGMBUF _IOR('v',20, struct video_mbuf) /* Memory map buffer info */ ++#define VIDIOCGUNIT _IOR('v',21, struct video_unit) /* Get attached units */ ++#define VIDIOCGCAPTURE _IOR('v',22, struct video_capture) /* Get subcapture */ ++#define VIDIOCSCAPTURE _IOW('v',23, struct video_capture) /* Set subcapture */ ++#define VIDIOCSPLAYMODE _IOW('v',24, struct video_play_mode) /* Set output video mode/feature */ ++#define VIDIOCSWRITEMODE _IOW('v',25, int) /* Set write mode */ ++#define VIDIOCGPLAYINFO _IOR('v',26, struct video_info) /* Get current playback info from hardware */ ++#define VIDIOCSMICROCODE _IOW('v',27, struct video_code) /* Load microcode into hardware */ ++#define VIDIOCGVBIFMT _IOR('v',28, struct vbi_format) /* Get VBI information */ ++#define VIDIOCSVBIFMT _IOW('v',29, struct vbi_format) /* Set VBI information */ ++ ++ ++#define BASE_VIDIOCPRIVATE 192 /* 192-255 are private */ ++ ++/* VIDIOCSWRITEMODE */ ++#define VID_WRITE_MPEG_AUD 0 ++#define VID_WRITE_MPEG_VID 1 ++#define VID_WRITE_OSD 2 ++#define VID_WRITE_TTX 3 ++#define VID_WRITE_CC 4 ++#define VID_WRITE_MJPEG 5 ++ ++/* VIDIOCSPLAYMODE */ ++#define VID_PLAY_VID_OUT_MODE 0 ++ /* p1: = VIDEO_MODE_PAL, VIDEO_MODE_NTSC, etc ... */ ++#define VID_PLAY_GENLOCK 1 ++ /* p1: 0 = OFF, 1 = ON */ ++ /* p2: GENLOCK FINE DELAY value */ ++#define VID_PLAY_NORMAL 2 ++#define VID_PLAY_PAUSE 3 ++#define VID_PLAY_SINGLE_FRAME 4 ++#define VID_PLAY_FAST_FORWARD 5 ++#define VID_PLAY_SLOW_MOTION 6 ++#define VID_PLAY_IMMEDIATE_NORMAL 7 ++#define VID_PLAY_SWITCH_CHANNELS 8 ++#define VID_PLAY_FREEZE_FRAME 9 ++#define VID_PLAY_STILL_MODE 10 ++#define VID_PLAY_MASTER_MODE 11 ++ /* p1: see below */ ++#define VID_PLAY_MASTER_NONE 1 ++#define VID_PLAY_MASTER_VIDEO 2 ++#define VID_PLAY_MASTER_AUDIO 3 ++#define VID_PLAY_ACTIVE_SCANLINES 12 ++ /* p1 = first active; p2 = last active */ ++#define VID_PLAY_RESET 13 ++#define VID_PLAY_END_MARK 14 ++ ++ ++#endif /* __LINUX_VIDEODEV_H */ ++ ++/* ++ * Local variables: ++ * c-basic-offset: 8 ++ * End: ++ */ From vmiklos at frugalware.org Sun Apr 3 23:44:30 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 23:44:30 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pam-1.1.3-2-i686 Message-ID: <20110403214430.206141358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=83df357064f42f08b46a4e6bd757cb81c923b9b4 commit 83df357064f42f08b46a4e6bd757cb81c923b9b4 Author: Miklos Vajna Date: Sun Apr 3 23:32:25 2011 +0200 pam-1.1.3-2-i686 - added tmpfiles.d config diff --git a/source/base/pam/FrugalBuild b/source/base/pam/FrugalBuild index 7d2b265..c310ffa 100644 --- a/source/base/pam/FrugalBuild +++ b/source/base/pam/FrugalBuild @@ -3,7 +3,7 @@ pkgname=pam pkgver=1.1.3 -pkgrel=1 +pkgrel=2 pkgdesc="Linux-PAM (Pluggable Authentication Modules)" archs=('i686' 'x86_64' 'ppc' 'arm') url="http://www.kernel.org/pub/linux/libs/pam/" @@ -25,6 +25,11 @@ build() { --disable-regenerate-man [ "$CARCH" == "x86_64" ] && Fmv /lib64 /lib Ffileschmod /sbin/unix_chkpwd u+s + Frm /var/run + Fmkdir /etc/tmpfiles.d +cat > $Fdestdir/etc/tmpfiles.d/pam.conf << EOF +d $Flocalstatedir/run/sepermit 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Sun Apr 3 23:50:17 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 3 Apr 2011 23:50:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: udisks-1.0.2-2-i686 Message-ID: <20110403215017.833761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3354ec650f2675148dcea5785ba8bdcfa32f0e0e commit 3354ec650f2675148dcea5785ba8bdcfa32f0e0e Author: Miklos Vajna Date: Sun Apr 3 23:38:11 2011 +0200 udisks-1.0.2-2-i686 - added tmpfiles.d config diff --git a/source/xapps/udisks/FrugalBuild b/source/xapps/udisks/FrugalBuild index 78b0a7e..ecc3075 100644 --- a/source/xapps/udisks/FrugalBuild +++ b/source/xapps/udisks/FrugalBuild @@ -17,4 +17,14 @@ source=(http://hal.freedesktop.org/releases/$pkgname-$pkgver.tar.gz) sha1sums=('a8307d726b7f1255e7008ff708c793a1301d1309') replaces=('devicekit-disks') +build() +{ + Fbuild + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/udisks.conf << EOF +d $Flocalstatedir/run/udisks 0700 root root - +EOF +} + # optimization OK From bouleetbil at frogdev.info Sun Apr 3 23:58:36 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 3 Apr 2011 23:58:36 +0200 (CEST) Subject: [Frugalware-git] gnometesting: vala-0.12.0-1-x86_64 *version bump stable version *gnome3 arrive :D Message-ID: <20110403215836.2E5431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2d092fc41374ebdd0933e50edf7dd41c62bc9369 commit 2d092fc41374ebdd0933e50edf7dd41c62bc9369 Author: bouleetbil Date: Sun Apr 3 23:57:01 2011 +0200 vala-0.12.0-1-x86_64 *version bump stable version *gnome3 arrive :D diff --git a/source/devel-extra/vala/FrugalBuild b/source/devel-extra/vala/FrugalBuild index a4f521a..57d18c8 100644 --- a/source/devel-extra/vala/FrugalBuild +++ b/source/devel-extra/vala/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: jedifox pkgname=vala -pkgver=0.11.7 +pkgver=0.12.0 pkgrel=1 pkgdesc="Vala is a prgramming language that aims to bring modern programming language features to GNOME developers" depends=('glib2>=2.28.3') @@ -11,7 +11,7 @@ makedepends=('libxslt') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc' 'arm') Finclude gnome -sha1sums=('774177baf0c8764367e569b4460560f1933a9c55') +sha1sums=('3799a1cdda63b40b7aa031bca7da6bf1baf000b1') Fconfopts="${Fconfopts[@]} --enable-vapigen" # optimization OK From vmiklos at frugalware.org Mon Apr 4 00:14:13 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 4 Apr 2011 00:14:13 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: munin-1.2.6-3-i686 Message-ID: <20110403221413.744E71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a52093bda072caa90a5d3c6a656ae7559f28f4f commit 8a52093bda072caa90a5d3c6a656ae7559f28f4f Author: Miklos Vajna Date: Sun Apr 3 23:46:22 2011 +0200 munin-1.2.6-3-i686 - added tmpfiles.d config diff --git a/source/network-extra/munin/FrugalBuild b/source/network-extra/munin/FrugalBuild index 651d2a4..d02f5b0 100644 --- a/source/network-extra/munin/FrugalBuild +++ b/source/network-extra/munin/FrugalBuild @@ -4,7 +4,7 @@ pkgname=munin pkgver=1.2.6 -pkgrel=2 +pkgrel=3 pkgdesc="Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface." Finclude sourceforge url="http://munin.projects.linpro.no/" @@ -40,6 +40,12 @@ build() Fsed "$Fdestdir" "" $Fdestdir/usr/share/munin/munin-limits Fsed "$Fdestdir" "" $Fdestdir/usr/share/munin/munin-update Fsed "$Fdestdir" "" $Fdestdir/usr/libexec/cgi-bin/munin-cgi-graph + + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/munin.conf << EOF +d $Flocalstatedir/run/munin 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Mon Apr 4 00:14:13 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 4 Apr 2011 00:14:13 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: munin-node-1.2.6-9-i686 Message-ID: <20110403221413.8642F1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=66412cafb5d52f0b16531526f4be1accf6ade053 commit 66412cafb5d52f0b16531526f4be1accf6ade053 Author: Miklos Vajna Date: Mon Apr 4 00:02:07 2011 +0200 munin-node-1.2.6-9-i686 - added tmpfiles.d config diff --git a/source/network-extra/munin-node/FrugalBuild b/source/network-extra/munin-node/FrugalBuild index a6cca54..89de92d 100644 --- a/source/network-extra/munin-node/FrugalBuild +++ b/source/network-extra/munin-node/FrugalBuild @@ -4,7 +4,7 @@ pkgname=munin-node pkgver=1.2.6 -pkgrel=8 +pkgrel=9 pkgdesc="Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface. (Node)" _F_sourceforge_name="munin" _F_sourceforge_dirname="munin" @@ -46,6 +46,12 @@ build() Fsed "$Fdestdir" "" $Fdestdir/usr/sbin/munin-run Fsed "$Fdestdir" "" $Fdestdir/usr/share/munin/plugins/* + + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/munin-node.conf << EOF +d $Flocalstatedir/run/munin 0755 root root - +EOF } # optimization OK From bouleetbil at frogdev.info Mon Apr 4 08:28:16 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 08:28:16 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+3-3.0.8-1-x86_64 Message-ID: <20110404062816.48D7D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c1c8b4e5de050d8c3d65a8e6603665b60f1eb69b commit c1c8b4e5de050d8c3d65a8e6603665b60f1eb69b Author: bouleetbil Date: Mon Apr 4 08:28:01 2011 +0200 gtk+3-3.0.8-1-x86_64 *Version bump diff --git a/source/xlib/gtk+3/FrugalBuild b/source/xlib/gtk+3/FrugalBuild index 8674270..38432e9 100644 --- a/source/xlib/gtk+3/FrugalBuild +++ b/source/xlib/gtk+3/FrugalBuild @@ -3,8 +3,8 @@ pkgname=gtk+3 _F_gnome_name=gtk+ -pkgver=3.0.6 -pkgrel=2 +pkgver=3.0.8 +pkgrel=1 pkgdesc="The GTK+ Toolkit (3.x series)" depends=('libxext' 'libxfixes' 'cairo' 'libgcc' 'libjpeg' 'libtiff' 'libcups' \ 'atk' 'pango' 'libxinerama' 'libxcomposite' 'libxcursor' \ @@ -18,7 +18,7 @@ Finclude gnome url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" source=($source im-cedilla.conf) -sha1sums=('2359b34056687d7b73087bbf785cd7a17c592e9f' \ +sha1sums=('763827465edfa8ffa5b4e445b1e59a01b305cdd0' \ 'f8a64241bcc873c1f1110e16306e48577a41852b') if [ "$_F_gnome_git" != "n" ]; then From bouleetbil at frogdev.info Mon Apr 4 12:32:45 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:32:45 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gdm-2.32.0-6-x86_64 *forgot to remove var/run Message-ID: <20110404103245.495EE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f61c0becabf814de84d975035db1849448ea05d4 commit f61c0becabf814de84d975035db1849448ea05d4 Author: bouleetbil Date: Mon Apr 4 12:32:22 2011 +0200 gdm-2.32.0-6-x86_64 *forgot to remove var/run diff --git a/source/gnome/gdm/FrugalBuild b/source/gnome/gdm/FrugalBuild index d4c9276..085a6b0 100644 --- a/source/gnome/gdm/FrugalBuild +++ b/source/gnome/gdm/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gdm pkgver=2.32.0 -pkgrel=5 +pkgrel=6 pkgdesc="GNOME Display Manager" url="http://www.gnome.org/" backup=(etc/gdm/custom.conf etc/pam.d/gdm etc/pam.d/gdm-autologin) @@ -72,6 +72,7 @@ EOF Fsed "#!/bin/sh" "#!/bin/bash" $Fdestdir/usr/sbin/gdm # systemd tmpfiles + Frm var/run Fmkdir /etc/tmpfiles.d cat > $Fdestdir/etc/tmpfiles.d/gdm.conf << EOF d $Flocalstatedir/run/gdm 0711 root gdm - From bouleetbil at frogdev.info Mon Apr 4 12:42:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:42:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: openvpn-2.1.3-3-x86_64 *add tmpfiles systemd support Message-ID: <20110404104249.CD5A61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a5aed4cf633057e02e47a877ab08189872753c7e commit a5aed4cf633057e02e47a877ab08189872753c7e Author: bouleetbil Date: Mon Apr 4 12:42:39 2011 +0200 openvpn-2.1.3-3-x86_64 *add tmpfiles systemd support diff --git a/source/network-extra/openvpn/FrugalBuild b/source/network-extra/openvpn/FrugalBuild index 8179466..b995a58 100644 --- a/source/network-extra/openvpn/FrugalBuild +++ b/source/network-extra/openvpn/FrugalBuild @@ -4,7 +4,7 @@ pkgname=openvpn pkgver=2.1.3 -pkgrel=2 +pkgrel=3 pkgdesc="A secure tunneling daemon" url="http://www.openvpn.org/" depends=('openssl>=1.0.0' 'lzo') @@ -22,6 +22,12 @@ build() cp -ar sample-{config-files,keys,scripts} $Fdestdir/usr/share/doc/$pkgname-$pkgver cp -ar easy-rsa $Fdestdir/usr/share/doc/$pkgname-$pkgver Frcd + # systemd tmpfiles + Frm var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/openvpn.conf << EOF +d $Flocalstatedir/run/openvpn 0755 root root - +EOF } # optimization OK From bouleetbil at frogdev.info Mon Apr 4 12:44:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:44:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: consolekit-0.4.3-7-x86_64 *forgot to remove /var/run Message-ID: <20110404104412.E70C11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4d45fc53cce80ea707096ea131760a0a553aa6b0 commit 4d45fc53cce80ea707096ea131760a0a553aa6b0 Author: bouleetbil Date: Mon Apr 4 12:43:58 2011 +0200 consolekit-0.4.3-7-x86_64 *forgot to remove /var/run diff --git a/source/apps/consolekit/FrugalBuild b/source/apps/consolekit/FrugalBuild index 6536d4e..8f5436c 100644 --- a/source/apps/consolekit/FrugalBuild +++ b/source/apps/consolekit/FrugalBuild @@ -4,7 +4,7 @@ pkgname=consolekit _F_archive_name="ConsoleKit" pkgver=0.4.3 -pkgrel=6 +pkgrel=7 pkgdesc="Framework for defining and tracking users, login sessions and seats." url="http://www.freedesktop.org/wiki/Software/ConsoleKit" source=(http://www.freedesktop.org/software/ConsoleKit/dist/$_F_archive_name-$pkgver.tar.bz2 rc.xconsolekit \ @@ -40,6 +40,7 @@ build() { Fmkdir /lib/systemd/system/graphical.target.wants Fln ../console-kit-daemon.service /lib/systemd/system/graphical.target.wants/console-kit-daemon.service # systemd tmpfiles + Frm var/run Fmkdir /etc/tmpfiles.d cat > $Fdestdir/etc/tmpfiles.d/consolekit.conf << EOF d $Flocalstatedir/run/ConsoleKit/ 0755 root root - From bouleetbil at frogdev.info Mon Apr 4 12:46:53 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:46:53 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110404104653.CE5BC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0d67d5bddb9d5930c3b8ddae34b0632f22b4bcfe commit 0d67d5bddb9d5930c3b8ddae34b0632f22b4bcfe Merge: c1c8b4e 4d45fc5 Author: bouleetbil Date: Mon Apr 4 12:46:49 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Conflicts: source/apps/consolekit/FrugalBuild source/gnome/gdm/FrugalBuild diff --cc source/apps/consolekit/FrugalBuild index 08be4cf,8f5436c..342c279 --- a/source/apps/consolekit/FrugalBuild +++ b/source/apps/consolekit/FrugalBuild @@@ -3,15 -3,14 +3,15 @@@ pkgname=consolekit _F_archive_name="ConsoleKit" -pkgver=0.4.3 -pkgrel=7 +pkgver=0.4.4 - pkgrel=5 ++pkgrel=6 pkgdesc="Framework for defining and tracking users, login sessions and seats." url="http://www.freedesktop.org/wiki/Software/ConsoleKit" -source=(http://www.freedesktop.org/software/ConsoleKit/dist/$_F_archive_name-$pkgver.tar.bz2 rc.xconsolekit \ - consolekit-0.4.0-polkit-automagic.patch) +source=(http://www.freedesktop.org/software/ConsoleKit/dist/$_F_archive_name-$pkgver.tar.bz2 \ + consolekit-0.4.0-polkit-automagic.patch \ + pam-foreground-compat.ck) up2date="Flasttar http://www.freedesktop.org/software/ConsoleKit/dist" -depends=('dbus-glib' 'zlib' 'pam' 'polkit') +depends=('dbus-glib' 'zlib' 'pam' 'polkit>=0.101') groups=('apps') archs=('i686' 'x86_64' 'ppc') Fconfopts="$Fconfopts --enable-pam-module --with-pam-module-dir=/lib/security --with-systemdsystemunitdir=/lib/systemd/system" diff --cc source/gnome/gdm/FrugalBuild index 6e4f26f,085a6b0..db0a407 --- a/source/gnome/gdm/FrugalBuild +++ b/source/gnome/gdm/FrugalBuild @@@ -2,8 -2,8 +2,8 @@@ # Maintainer: bouleetbil pkgname=gdm -pkgver=2.32.0 -pkgrel=6 +pkgver=2.91.94 - pkgrel=2 ++pkgrel=3 pkgdesc="GNOME Display Manager" url="http://www.gnome.org/" backup=(etc/gdm/custom.conf etc/pam.d/gdm etc/pam.d/gdm-autologin) From bouleetbil at frogdev.info Mon Apr 4 12:52:36 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:52:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tinyproxy-1.8.2-2-x86_64 *added systemd tmpfiles support Message-ID: <20110404105236.726461358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d923b39995ed25817bf411cc67e240c89146fc6a commit d923b39995ed25817bf411cc67e240c89146fc6a Author: bouleetbil Date: Mon Apr 4 12:51:58 2011 +0200 tinyproxy-1.8.2-2-x86_64 *added systemd tmpfiles support diff --git a/source/network-extra/tinyproxy/FrugalBuild b/source/network-extra/tinyproxy/FrugalBuild index af69fcf..ad1cfc1 100644 --- a/source/network-extra/tinyproxy/FrugalBuild +++ b/source/network-extra/tinyproxy/FrugalBuild @@ -3,7 +3,7 @@ pkgname=tinyproxy pkgver=1.8.2 -pkgrel=1 +pkgrel=2 pkgdesc="Tinyproxy is a light-weight HTTP proxy daemon for POSIX operating systems" url="https://www.banu.com/tinyproxy/" depends=('glibc') @@ -21,10 +21,13 @@ sha1sums=('6e1ce865e82ad07e540be89d5e6c6bc75489d42b' \ build() { Fbuild --enable-transparent --enable-reverse Fmkdir /var/log/tinyproxy - Fmkdir /var/run/tinyproxy chmod 775 $Fdestdir/var/log/tinyproxy - chmod 775 $Fdestdir/var/run/tinyproxy Frcd2 + #systemd + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/tinyproxy.conf << EOF +d $Flocalstatedir/run/tinyproxy/ 0755 root root - +EOF } From bouleetbil at frogdev.info Mon Apr 4 12:56:56 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:56:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: plymouth-0.8.4-3-x86_64 *add tmpfiles.d config to enable /var/run directory on tmpfs Message-ID: <20110404105656.23ABB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7bdfd360cf243610b177b8a5e4e9d9fca12109b commit d7bdfd360cf243610b177b8a5e4e9d9fca12109b Author: bouleetbil Date: Mon Apr 4 12:56:31 2011 +0200 plymouth-0.8.4-3-x86_64 *add tmpfiles.d config to enable /var/run directory on tmpfs diff --git a/source/xapps-extra/plymouth/FrugalBuild b/source/xapps-extra/plymouth/FrugalBuild index 3c5eac0..0a9d963 100644 --- a/source/xapps-extra/plymouth/FrugalBuild +++ b/source/xapps-extra/plymouth/FrugalBuild @@ -5,7 +5,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=plymouth pkgver=0.8.4 -pkgrel=2 +pkgrel=3 pkgdesc="Graphical Boot Animation and Logger" url="http://www.freedesktop.org/wiki/Software/Plymouth" up2date="Flasttarbz2 http://freedesktop.org/software/plymouth/releases" @@ -96,6 +96,12 @@ build() { # don't run old sysv init script with different name when using systemd Fln plymouth-start.service /lib/systemd/system/plymouth.service Fln plymouth-quit.service /lib/systemd/system/zz-plymouth.service + #systemd + Frm run/plymouth + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/plymouth.conf << EOF +d $Flocalstatedir/run/plymouth/ 0755 root root - +EOF } From bouleetbil at frogdev.info Mon Apr 4 12:57:43 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 12:57:43 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110404105743.8E7031358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=38266d51202a0d6eadaf54d64933896496fee397 commit 38266d51202a0d6eadaf54d64933896496fee397 Merge: 0d67d5b d7bdfd3 Author: bouleetbil Date: Mon Apr 4 12:57:29 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From bouleetbil at frogdev.info Mon Apr 4 13:26:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:26:33 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gcalctool-6.0.0-1-x86_64 Message-ID: <20110404112633.7FADA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=54287f1090f8c96bd251de0c71502e5908855fba commit 54287f1090f8c96bd251de0c71502e5908855fba Author: bouleetbil Date: Mon Apr 4 13:26:34 2011 +0200 gcalctool-6.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gcalctool/FrugalBuild b/source/gnome/gcalctool/FrugalBuild index 5a85192..ca8eed8 100644 --- a/source/gnome/gcalctool/FrugalBuild +++ b/source/gnome/gcalctool/FrugalBuild @@ -3,11 +3,11 @@ # Contributor: Christian Hamar alias krix pkgname=gcalctool -pkgver=5.91.93 +pkgver=6.0.0 pkgrel=1 pkgdesc="A scientific calculator for GNOME" url="http://www.gnome.org/" -depends=('rarian' 'libsoup' 'gtk+3' 'gconf>=2.32.0' 'libglade>=2.6.4-2' 'libxml2>=2.7.8') +depends=('rarian' 'libsoup' 'gtk+3' 'dconf' 'libxml2>=2.7.8') makedepends=('intltool' 'gnome-doc-utils>=0.16.0') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -16,6 +16,6 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('6a2369966c35964fde830e0098084d24ca8aaa26') +sha1sums=('ccbff2a9c0e08a65fca5a4117a5f2f8a9ef7fd0e') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 13:29:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:29:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtkhtml-4.0.0-1-x86_64 Message-ID: <20110404112912.B88AE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f7dc706d29a043cfbecfb8bc00b3a5508cab07e3 commit f7dc706d29a043cfbecfb8bc00b3a5508cab07e3 Author: bouleetbil Date: Mon Apr 4 13:29:13 2011 +0200 gtkhtml-4.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gtkhtml/FrugalBuild b/source/gnome/gtkhtml/FrugalBuild index 12fa903..cb786be 100644 --- a/source/gnome/gtkhtml/FrugalBuild +++ b/source/gnome/gtkhtml/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gtkhtml -pkgver=3.91.92 +pkgver=4.0.0 pkgrel=1 pkgdesc="A lightweight HTML rendering/printing/editing engine" depends=('libxml2>=2.7.8' 'gtk+3' 'gconf' \ @@ -12,7 +12,7 @@ makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('db3386c919770b290f8d9809b4d20be4e9417de7') +sha1sums=('7220e35dc662d568103ebd4e908b8ab66591950a') replaces=('gtkhtml312') provides=('gtkhtml312') From bouleetbil at frogdev.info Mon Apr 4 13:30:35 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:30:35 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgnome-keyring-3.0.0-1-x86_64 Message-ID: <20110404113035.8C8721358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2e3ac575ffb96f69b586c55202d54635c7502c9f commit 2e3ac575ffb96f69b586c55202d54635c7502c9f Author: bouleetbil Date: Mon Apr 4 13:30:37 2011 +0200 libgnome-keyring-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/libgnome-keyring/FrugalBuild b/source/gnome/libgnome-keyring/FrugalBuild index 77e8b35..72abc48 100644 --- a/source/gnome/libgnome-keyring/FrugalBuild +++ b/source/gnome/libgnome-keyring/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libgnome-keyring -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Compatibility library for accessing secrets." url="http://www.gnome.org/" @@ -12,6 +12,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --disable-gtk-doc" -sha1sums=('af1e22a6b5aeee7e17dcc94cf3f3ef63fba99613') +sha1sums=('1b98715ab972f3af3d32639df810d018fe89bff9') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 13:32:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:32:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-nettool-3.0.0-1-x86_64 Message-ID: <20110404113222.DD5181358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3905b2cc210f5f2fe5a3739a4bb27f331257fb41 commit 3905b2cc210f5f2fe5a3739a4bb27f331257fb41 Author: bouleetbil Date: Mon Apr 4 13:32:22 2011 +0200 gnome-nettool-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-nettool/FrugalBuild b/source/gnome/gnome-nettool/FrugalBuild index eecbf61..2fd7e0b 100644 --- a/source/gnome/gnome-nettool/FrugalBuild +++ b/source/gnome/gnome-nettool/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-nettool -pkgver=2.91.5 -pkgrel=5 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME interface for various networking tools" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gtk+3' 'net-tools' 'whois' \ @@ -17,6 +17,6 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('ad5ff648770244ca4dc992270d5583cb522abed0') +sha1sums=('37ec5a49009ef3789f8c601f9f2aa638519119ff') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 13:38:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:38:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: evolution-data-server-3.0.0-1-x86_64 Message-ID: <20110404113854.B8AF61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2bafdc148bcafaaee1d45273bbcfa0df14aa4de0 commit 2bafdc148bcafaaee1d45273bbcfa0df14aa4de0 Author: bouleetbil Date: Mon Apr 4 13:38:49 2011 +0200 evolution-data-server-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/evolution-data-server/FrugalBuild b/source/gnome/evolution-data-server/FrugalBuild index fb7b72d..6bc1192 100644 --- a/source/gnome/evolution-data-server/FrugalBuild +++ b/source/gnome/evolution-data-server/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=evolution-data-server -pkgver=2.91.92 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop" depends=('nss>=3.12.9' 'libsoup-gnome>=2.32.0' 'libgweather>=2.91.0' \ 'libkrb5' 'db>=4.7.25' 'gnutls>=2.8' 'libical' 'gnome-keyring>=2.91.0' \ @@ -13,7 +13,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_git="n" Finclude gnome -sha1sums=('126670f0040f596aca069d743926e1440d92c788') +sha1sums=('b96dfc0149b3d668bcf8203a6ea181e742df71ab') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi From bouleetbil at frogdev.info Mon Apr 4 13:40:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 13:40:27 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-keyring-3.0.0-1-x86_64 Message-ID: <20110404114027.77C121358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=6a054ecc4069371e68896abde9be9f98c415bdc8 commit 6a054ecc4069371e68896abde9be9f98c415bdc8 Author: bouleetbil Date: Mon Apr 4 13:40:27 2011 +0200 gnome-keyring-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-keyring/FrugalBuild b/source/gnome/gnome-keyring/FrugalBuild index a5b9461..28bf032 100644 --- a/source/gnome/gnome-keyring/FrugalBuild +++ b/source/gnome/gnome-keyring/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=gnome-keyring -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Password and keyring managing daemon for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gtk+3' 'dbus-glib>=0.76-1' 'hal' 'libtasn1>=1.4' 'gconf' 'pam' 'libgnome-keyring>=2.91.93') +depends=('libxml2>=2.7.8' 'gtk+3' 'dbus-glib>=0.76-1' 'hal' 'libtasn1>=1.4' 'gconf' 'pam' 'libgnome-keyring>=3.0.0') makedepends=('intltool' 'gtk-doc>=1.9') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_glib="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --disable-gtk-doc --with-pam-dir=/lib/security --with-gtk=3.0" -sha1sums=('2b84f5d4cde509e9d376a4b233d01da4849d9474') +sha1sums=('abc9247ded70c21511776950b9752de976475e8b') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 14:17:01 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 14:17:01 +0200 (CEST) Subject: [Frugalware-git] gnometesting: evolution-3.0.0-1-x86_64 Message-ID: <20110404121701.993761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9ed3943ff7c91676f27d3c9eacd2032d1b219897 commit 9ed3943ff7c91676f27d3c9eacd2032d1b219897 Author: bouleetbil Date: Mon Apr 4 14:16:35 2011 +0200 evolution-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/evolution/FrugalBuild b/source/gnome/evolution/FrugalBuild index deedd5d..557bdf6 100644 --- a/source/gnome/evolution/FrugalBuild +++ b/source/gnome/evolution/FrugalBuild @@ -2,9 +2,9 @@ # Maintainer: bouleetbil pkgname=evolution -pkgver=2.91.92 +pkgver=3.0.0 evo_major=3.0 -pkgrel=2 +pkgrel=1 pkgdesc="Integrated mail, calendar and address book suite for GNOME" depends=('unique' 'gst-plugins-base') rodepends=("$pkgname-base" "$pkgname-audio") @@ -55,9 +55,9 @@ subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') subpkgs=("${subpkgs[@]}" "$pkgname-base") subdescs=("${subdescs[@]}" "base library for Evolution") -subdepends=("${subdepends[@]}" "clutter-gtk evolution-data-server>=2.91.0 \ - gtkhtml>=3.30.3 rarian libkrb5 \ - evolution-data-server-ldap>=2.32.0 nss>=3.12 nspr>=4.7.1 \ +subdepends=("${subdepends[@]}" "clutter-gtk evolution-data-server>=3.0.0 \ + gtkhtml>=4.0.0 rarian libkrb5 \ + evolution-data-server-ldap>=3.0.0 nss>=3.12 nspr>=4.7.1 \ libnotify db>=4.7.25 gnome-pilot networkmanager") subrodepends=("${subrodepends[@]}" "") subgroups=("${subgroups[@]}" 'gnome') @@ -163,6 +163,6 @@ build() { Fbuild_gnome_scriptlet } -sha1sums=('d652cdea48dfb34b4db34429b29c4bb037571169') +sha1sums=('d3b712fff3dedd8a98001681f6fb29407fa2117c') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 14:30:05 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 14:30:05 +0200 (CEST) Subject: [Frugalware-git] gnometesting: evolution-exchange-3.0.0-1-x86_64 Message-ID: <20110404123005.7EB361358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=859d493c9d36d3fd43fa147ddd2dc014a2545ea7 commit 859d493c9d36d3fd43fa147ddd2dc014a2545ea7 Author: bouleetbil Date: Mon Apr 4 14:30:06 2011 +0200 evolution-exchange-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/evolution-exchange/FrugalBuild b/source/gnome/evolution-exchange/FrugalBuild index 1e9b859..74a88da 100644 --- a/source/gnome/evolution-exchange/FrugalBuild +++ b/source/gnome/evolution-exchange/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=evolution-exchange -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="Ximian Connector for Microsoft Exchange, which adds support for Microsoft Exchange 2000 and 2003 to Evolution." -depends=('gtkhtml>=2.30.3' 'evolution-data-server>=2.91.92' 'evolution>=2.91.92' 'libsoup>=2.30.0' \ - 'evolution-data-server-ldap>=2.91.92' 'libkrb5' 'openssl>=1.0.0' 'gnome-desktop' 'libcanberra-gtk') +depends=('gtkhtml>=4.0.0' 'evolution-data-server>=3.0.0' 'evolution>=3.0.0' 'libsoup>=2.30.0' \ + 'evolution-data-server-ldap>=3.0.0' 'libkrb5' 'openssl>=1.0.0' 'gnome-desktop' 'libcanberra-gtk') makedepends=('gtk-doc>=1.11' 'perl-xml-parser' 'openldap' 'intltool' 'krb5') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome url="http://www.gnome.org/projects/evolution/" Fconfopts="$Fconfopts --disable-gtk-doc --with-krb5=/usr" -sha1sums=('7cc6878efe04ab94027edfef126a177c8cc5cce0') +sha1sums=('1207646915edea05939fe81011178ec8e504d8fd') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 14:45:47 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 14:45:47 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gconf-2.32.2-1-x86_64 Message-ID: <20110404124547.260DD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bfca662ca34a66ba5316a416358153a5ec6b61bb commit bfca662ca34a66ba5316a416358153a5ec6b61bb Author: bouleetbil Date: Mon Apr 4 14:45:41 2011 +0200 gconf-2.32.2-1-x86_64 *Version bump diff --git a/source/gnome/gconf/FrugalBuild b/source/gnome/gconf/FrugalBuild index 1fd031d..3249fce 100644 --- a/source/gnome/gconf/FrugalBuild +++ b/source/gnome/gconf/FrugalBuild @@ -4,8 +4,8 @@ pkgname=gconf _F_gnome_name=GConf -pkgver=2.32.1 -pkgrel=6 +pkgver=2.32.2 +pkgrel=1 pkgdesc="A configuration database system for GNOME" url="http://www.gnome.org/" depends=('orbit2>=2.14.18' 'libxml2>=2.7.8' 'dbus-glib' 'polkit>=0.99') @@ -14,7 +14,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome source=(${source[@]} gconf-2.16.0-reload.patch) -sha1sums=('8d8d113dc654314cf955c4f8c5a4cccd3a15f447' \ +sha1sums=('7def3d52e63f722c6ac6291cbc587ea368d866d5' \ 'c51bd437b495af6b25aff143a45c0b93a4afc236') Fconfopts="${Fconfopts[@]} --with-gtk=3.0" From bouleetbil at frogdev.info Mon Apr 4 14:49:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 14:49:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gucharmap-3.0.0-1-x86_64 Message-ID: <20110404124937.A71F11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a0ed31b4410f6aec6b8693db20f2de2ce579d174 commit a0ed31b4410f6aec6b8693db20f2de2ce579d174 Author: bouleetbil Date: Mon Apr 4 14:49:37 2011 +0200 gucharmap-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gucharmap/FrugalBuild b/source/gnome/gucharmap/FrugalBuild index e0837c1..9827dee 100644 --- a/source/gnome/gucharmap/FrugalBuild +++ b/source/gnome/gucharmap/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=gucharmap -pkgver=2.33.2 -pkgrel=6 +pkgver=3.0.0 +pkgrel=1 pkgdesc="A featureful Unicode character map for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'rarian' 'gtk+3' 'gconf>=2.32.0') +depends=('libxml2>=2.7.8' 'rarian' 'gtk+3' 'gconf>=2.32.2') makedepends=('intltool' 'gnome-doc-utils>=0.14.0') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -15,6 +15,6 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-gtk=3.0" -sha1sums=('15a81bf193d00ca26ebb47dc99c2d26efd0c8df6') +sha1sums=('1287242c6a3881524c74429343e149aeadd03c6a') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 14:51:25 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 14:51:25 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pycups-1.9.55-1-x86_64 Message-ID: <20110404125125.935911358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b335897c34fa6eebdd6b04a76cf0fb49ec642e0d commit b335897c34fa6eebdd6b04a76cf0fb49ec642e0d Author: bouleetbil Date: Mon Apr 4 14:51:28 2011 +0200 pycups-1.9.55-1-x86_64 *Version bump diff --git a/source/lib/pycups/FrugalBuild b/source/lib/pycups/FrugalBuild index 3c32f30..9dbf290 100644 --- a/source/lib/pycups/FrugalBuild +++ b/source/lib/pycups/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: James Buren pkgname=pycups -pkgver=1.9.49 -pkgrel=3 +pkgver=1.9.55 +pkgrel=1 pkgdesc="The python bindings for cups." url="http://cyberelk.net/tim/software/pycups/" depends=('python>=2.7' 'cups') From bouleetbil at frogdev.info Mon Apr 4 15:00:17 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:00:17 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-terminal-3.0.0-1-x86_64 Message-ID: <20110404130017.76F761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1c95b449b68c3f1d3626673f76edf311161cb902 commit 1c95b449b68c3f1d3626673f76edf311161cb902 Author: bouleetbil Date: Mon Apr 4 15:00:17 2011 +0200 gnome-terminal-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-terminal/FrugalBuild b/source/gnome/gnome-terminal/FrugalBuild index 4c52e6a..3948e53 100644 --- a/source/gnome/gnome-terminal/FrugalBuild +++ b/source/gnome/gnome-terminal/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-terminal -pkgver=2.33.90 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME terminal emulator" url="http://www.gnome.org/" @@ -15,7 +15,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_schemas=('/etc/gconf/schemas/gnome-terminal.schemas') Finclude gnome gnome-scriptlet source=(${source[@]} 00-$pkgname-2.12.0-prompt.patch) -sha1sums=('14eb64a355eb8a04a4c93d1af2d43a9c05bbc82d' \ +sha1sums=('63b1fc8316c510b56eb9fc25f0d956b33999529b' \ '4c81fb467dff18f0db3cda535a3549d233b9275a') Fconfopts="$Fconfopts --with-gtk=3.0" From bouleetbil at frogdev.info Mon Apr 4 15:02:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:02:42 +0200 (CEST) Subject: [Frugalware-git] gnometesting: devhelp-3.0.0-1-x86_64 Message-ID: <20110404130242.A2E731358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=48337c4fd9d4a00c6b71eaa6ed712fb80d030476 commit 48337c4fd9d4a00c6b71eaa6ed712fb80d030476 Author: bouleetbil Date: Mon Apr 4 15:02:43 2011 +0200 devhelp-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/devhelp/FrugalBuild b/source/gnome-extra/devhelp/FrugalBuild index 8fc7252..97a3deb 100644 --- a/source/gnome-extra/devhelp/FrugalBuild +++ b/source/gnome-extra/devhelp/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=devhelp -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="Developer API documentation browser" url="http://www.gnome.org/" @@ -16,7 +16,7 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" options=('scriptlet') Finclude gnome gnome-scriptlet -sha1sums=('2b2fdff77cd34e02e9af474c07fe66647710bafe') +sha1sums=('72c5d64f24069e488590929de992e063e86dfead') replaces=('devhelp-gedit') provides=('devhelp-gedit') From bouleetbil at frogdev.info Mon Apr 4 15:42:46 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:42:46 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-system-tools-3.0.0-1-x86_64 Message-ID: <20110404134246.778BD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=18f1a03976c00e7d4a242ebb4dfc905b5f1a5df4 commit 18f1a03976c00e7d4a242ebb4dfc905b5f1a5df4 Author: bouleetbil Date: Mon Apr 4 15:42:44 2011 +0200 gnome-system-tools-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-system-tools/FrugalBuild b/source/gnome-extra/gnome-system-tools/FrugalBuild index ee464a8..9382974 100644 --- a/source/gnome-extra/gnome-system-tools/FrugalBuild +++ b/source/gnome-extra/gnome-system-tools/FrugalBuild @@ -3,22 +3,21 @@ # Contributor: AlexExtreme pkgname=gnome-system-tools -pkgver=2.91.90 +pkgver=3.0.0 pkgrel=1 pkgdesc="Gnome System Administration Tools" url="http://www.gnome.org/projects/gst/" -depends=('libgnomeui>=2.24.1-2' 'libglade>=2.6.4-2' 'liboobs>=2.30.0' \ - 'polkit-gnome' 'nautilus>=2.32.0') +depends=('liboobs>=2.30.0' 'polkit-gnome' 'nautilus>=2.32.0') makedepends=('gnome-doc-utils>=0.14.0' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -_F_gnome_schemas=('/etc/gconf/schemas/gnome-system-tools.schemas') +_F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --disable-services --disable-network" -sha1sums=('ec87609ca140f9362099a398551c2fa791ae9070') +sha1sums=('cffff713cd8a473d878eff728afe139e1e8595fd') build() { Fcd From bouleetbil at frogdev.info Mon Apr 4 15:45:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:45:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-common-2.34.0-1-x86_64 Message-ID: <20110404134502.709B61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=990f71b8d0fedcf17ca16777f4c8f6f58ca9e3f8 commit 990f71b8d0fedcf17ca16777f4c8f6f58ca9e3f8 Author: bouleetbil Date: Mon Apr 4 15:45:04 2011 +0200 gnome-common-2.34.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-common/FrugalBuild b/source/gnome-extra/gnome-common/FrugalBuild index 816b07c..a6cfae8 100644 --- a/source/gnome-extra/gnome-common/FrugalBuild +++ b/source/gnome-extra/gnome-common/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=gnome-common -pkgver=2.28.0 +pkgver=2.34.0 pkgrel=1 pkgdesc="Common macros for GNOME" url="http://www.gnome.org/" @@ -18,5 +18,5 @@ build() { Fexe /etc/profile.d/gnome.sh } -sha1sums=('84eeeb8ac783e3e7807da7eea83dd67afe8d826c' \ +sha1sums=('e67cce758fc00c096358e1a72a930a5a7cb7dc23' \ 'fb0a0d87d507a20c32ec2af9d0f2bda57f28ffaa') From bouleetbil at frogdev.info Mon Apr 4 15:49:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:49:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-games-extra-data-3.0.0-1-x86_64 Message-ID: <20110404134909.E8CFB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ec71e7fca5b6237e40625983c0a1a8d011896671 commit ec71e7fca5b6237e40625983c0a1a8d011896671 Author: bouleetbil Date: Mon Apr 4 15:49:09 2011 +0200 gnome-games-extra-data-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-games-extra-data/FrugalBuild b/source/gnome-extra/gnome-games-extra-data/FrugalBuild index 4169765..7ff3413 100644 --- a/source/gnome-extra/gnome-games-extra-data/FrugalBuild +++ b/source/gnome-extra/gnome-games-extra-data/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: AlexExtreme pkgname=gnome-games-extra-data -pkgver=2.30.0 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Extra data files for the GNOME games" url="http://www.gnome.org/" -depends=('gnome-games>=2.30.0-2') +depends=('gnome-games>=2.90.0') groups=('gnome-extra') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('3ad02595cabf3bf175288da249b999b0afb7d937') +sha1sums=('63071b2a58602a241b469b419a8891e94b7abb87') From bouleetbil at frogdev.info Mon Apr 4 15:52:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:52:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: avahi-0.6.30-1-x86_64 Message-ID: <20110404135239.432D2135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1c722e4e4410514d5767d9a4d9e77f2a80dbe1b4 commit 1c722e4e4410514d5767d9a4d9e77f2a80dbe1b4 Author: bouleetbil Date: Mon Apr 4 15:52:16 2011 +0200 avahi-0.6.30-1-x86_64 *Version bump diff --git a/source/network/avahi/FrugalBuild b/source/network/avahi/FrugalBuild index 49ad7f9..abe7bbe 100644 --- a/source/network/avahi/FrugalBuild +++ b/source/network/avahi/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=avahi -pkgver=0.6.28 +pkgver=0.6.30 pkgrel=1 pkgdesc="A multicast/unicast DNS-SD framework" archs=('i686' 'x86_64' 'ppc') @@ -20,7 +20,7 @@ options=('scriptlet') source=(http://avahi.org/download/$pkgname-$pkgver.tar.gz \ README.Frugalware) Finclude mono -sha1sums=('5da3f7da2cff8ddf74f8746e4dcb2524e5047f67' \ +sha1sums=('5b77443537600a00770e4c77e3c443eeb5861d06' \ '3cb0c4904bc323cba78234e4c5430478636fbf44') subpkgs=('avahi-glib' 'avahi-sharp' 'avahi-qt3' 'avahi-python' 'avahi-compat' 'avahi-gtk2' 'avahi-qt4' 'avahi-dnsconfd' 'libavahi-ui' 'libavahi-ui-sharp' 'avahi-gtk3') From bouleetbil at frogdev.info Mon Apr 4 15:55:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 15:55:33 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libbonobo-2.32.1-1-x86_64 Message-ID: <20110404135533.932541358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=93db45a60db298d4fe81f72688cf4b00b3815624 commit 93db45a60db298d4fe81f72688cf4b00b3815624 Author: bouleetbil Date: Mon Apr 4 15:55:34 2011 +0200 libbonobo-2.32.1-1-x86_64 *Version bump diff --git a/source/gnome/libbonobo/FrugalBuild b/source/gnome/libbonobo/FrugalBuild index d12fc37..337aabc 100644 --- a/source/gnome/libbonobo/FrugalBuild +++ b/source/gnome/libbonobo/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Christian Hamar alias krix pkgname=libbonobo -pkgver=2.32.0 -pkgrel=3 +pkgver=2.32.1 +pkgrel=1 pkgdesc="GNOME CORBA framework" url="http://www.gnome.org/" depends=('orbit2>=2.14.18' 'libxml2>=2.7.8' 'perl' 'dbus-glib' 'openssl>=1.0.0') @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') install=$pkgname.install Finclude gnome source=(${source[@]} libbonobo-search-path-fix.patch) -sha1sums=('461117e2fee8e9d06e5533c08bd1fa2cc2107735' \ +sha1sums=('c7650434a4f328eae6f38a29ee8dadd455f35f9c' \ 'f716a5b855c71edba7e1d77096ee8cc45b85c108') Fconfopts="$Fconfopts --enable-gtk-doc" From bouleetbil at frogdev.info Mon Apr 4 16:21:32 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:21:32 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libbonoboui-2.24.5-1-x86_64 Message-ID: <20110404142132.458701358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=24abc66aadb94993561de274acc3b16b3086de3e commit 24abc66aadb94993561de274acc3b16b3086de3e Author: bouleetbil Date: Mon Apr 4 16:21:31 2011 +0200 libbonoboui-2.24.5-1-x86_64 *Version bump diff --git a/source/gnome/libbonoboui/FrugalBuild b/source/gnome/libbonoboui/FrugalBuild index b0b7bc4..a4d6056 100644 --- a/source/gnome/libbonoboui/FrugalBuild +++ b/source/gnome/libbonoboui/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=libbonoboui -pkgver=2.24.4 -pkgrel=3 +pkgver=2.24.5 +pkgrel=1 pkgdesc="User Interface part of libbonobo" url="http://www.gnome.org/" depends=('libgnomecanvas>=2.26.0-2' 'libgnome>=2.32.0' \ @@ -13,6 +13,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --disable-gtk-doc" -sha1sums=('290ff87f71b61b629b5caa7ee1a87fb6b3c8aba1') +sha1sums=('9657e7194ef3f5782f183e021fdb4014531b6cd8') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 16:23:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:23:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gsettings-desktop-schemas-3.0.0-1-x86_64 Message-ID: <20110404142321.93CD01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=78dc3fa49b382614ec88a3c632c5f87bf34a9c23 commit 78dc3fa49b382614ec88a3c632c5f87bf34a9c23 Author: bouleetbil Date: Mon Apr 4 16:23:22 2011 +0200 gsettings-desktop-schemas-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gsettings-desktop-schemas/FrugalBuild b/source/gnome/gsettings-desktop-schemas/FrugalBuild index 2c87819..b43d84b 100644 --- a/source/gnome/gsettings-desktop-schemas/FrugalBuild +++ b/source/gnome/gsettings-desktop-schemas/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gsettings-desktop-schemas -pkgver=2.91.92 -pkgrel=3 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Collection ofGSettings??chemas??fr??GNME??destop" depends=('glib2') makedepends=('intltool' 'gnome-doc-utils>=0.10.3') @@ -14,7 +14,7 @@ _F_gnome_devel="y" Finclude gnome gnome-scriptlet #gnome-screen-saver will merge into gnome-session gnome-shell source=($source background.diff theme.diff gsettings.diff) -sha1sums=('bb8e72a30795c817e95515f85280be951aaba6a0' \ +sha1sums=('3bbe8630523b92851a034c77dcc63ff2ac40ffa5' \ 'a329200a605f47a82c0feb003aa29ecb1113eb3c' \ '38693e9f3dfaea1917aaf6e8b01fcc11c7aa3b07' \ '4425726d380bccd607d7c5fab05dbdc02fb31050') From bouleetbil at frogdev.info Mon Apr 4 16:26:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:26:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gjs-0.7.14-1-x86_64 Message-ID: <20110404142622.9F3971358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9c0b115e70d2ed6e126e237eb1ca146ef444f290 commit 9c0b115e70d2ed6e126e237eb1ca146ef444f290 Author: bouleetbil Date: Mon Apr 4 16:26:23 2011 +0200 gjs-0.7.14-1-x86_64 *Version bump diff --git a/source/gnome/gjs/FrugalBuild b/source/gnome/gjs/FrugalBuild index dad7b0b..686f5fa 100644 --- a/source/gnome/gjs/FrugalBuild +++ b/source/gnome/gjs/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gjs -pkgver=0.7.13 +pkgver=0.7.14 pkgrel=1 pkgdesc="Javascript Bindings for GNOME" url="http://www.gnome.org/" @@ -12,7 +12,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_devel="y" Finclude gnome -sha1sums=('3048866951c3192db0993cf06a077b337b0b2d1d') +sha1sums=('d9955428f5cbe7a6714197da1e4dbe5d6d60360d') unset MAKEFLAGS # optimization OK From bouleetbil at frogdev.info Mon Apr 4 16:31:24 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:31:24 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgnome-media-profiles-3.0.0-1-x86_64 *version bump Message-ID: <20110404143124.A84B41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c257b74a2bca3ae952ba39cf6d5c987ef17a3653 commit c257b74a2bca3ae952ba39cf6d5c987ef17a3653 Author: bouleetbil Date: Mon Apr 4 16:31:17 2011 +0200 libgnome-media-profiles-3.0.0-1-x86_64 *version bump diff --git a/source/gnome/libgnome-media-profiles/FrugalBuild b/source/gnome/libgnome-media-profiles/FrugalBuild index 304a764..04ef974 100644 --- a/source/gnome/libgnome-media-profiles/FrugalBuild +++ b/source/gnome/libgnome-media-profiles/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=libgnome-media-profiles -pkgver=2.91.2 -pkgrel=5 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME media profiles tools" depends=('libxml2>=2.7.8' 'gst-plugins-good>=0.10.4-2' 'gtk+3' \ 'gst-plugins-base-oil' 'gst-plugins-good-gconf') @@ -12,6 +12,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/gnome-media-profiles.schemas') Finclude gnome gnome-scriptlet -sha1sums=('764b71d2fcefabc9f9a46af8377ac7a8fdaa3695') +sha1sums=('926a5b8ac083d14cb4269cb2dfef36c251eac51c') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 16:35:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:35:55 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-bluetooth-3.0.0-1-x86_64 Message-ID: <20110404143555.BB3271358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f5d784d22c16da9b8af429d889765b1a4bc2b074 commit f5d784d22c16da9b8af429d889765b1a4bc2b074 Author: bouleetbil Date: Mon Apr 4 16:35:56 2011 +0200 gnome-bluetooth-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-bluetooth/FrugalBuild b/source/gnome/gnome-bluetooth/FrugalBuild index 9231718..00a87ad 100644 --- a/source/gnome/gnome-bluetooth/FrugalBuild +++ b/source/gnome/gnome-bluetooth/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-bluetooth -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="The GNOME Bluetooth Subsystem." url="http://www.usefulinc.com/software/gnome-bluetooth/" @@ -15,7 +15,7 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('4c6dee9ef06ba8d764cc0441d5eec127ede42d8a') +sha1sums=('4442ce4f22fe80f81a1a2c9fcd6c31c117417dec') replaces=('bluez-gnome' 'gnome-phone-manager' 'gnome-bluetooth-nautilus-sendto') provides=('bluez-gnome' 'gnome-bluetooth-nautilus-sendto') conflicts=('bluez-gnome') From bouleetbil at frogdev.info Mon Apr 4 16:42:51 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:42:51 +0200 (CEST) Subject: [Frugalware-git] gnometesting: totem-3.0.0-1-x86_64 Message-ID: <20110404144251.50DE81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ab26eba2a4d94aef10e7d12abe503657f6a083b3 commit ab26eba2a4d94aef10e7d12abe503657f6a083b3 Author: bouleetbil Date: Mon Apr 4 16:42:46 2011 +0200 totem-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/totem/FrugalBuild b/source/gnome/totem/FrugalBuild index 1685adf..6272f6f 100644 --- a/source/gnome/totem/FrugalBuild +++ b/source/gnome/totem/FrugalBuild @@ -3,14 +3,14 @@ # Contributor: AlexExtreme pkgname=totem -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Movie player for GNOME based on Xine" depends=('libxi' 'libxtst' 'fontconfig' 'libstdc++' 'libxxf86vm' 'dbus-glib>=0.71' \ 'libxrandr' 'atk>=1.20.0' 'libsm' 'libxinerama' 'libmusicbrainz' 'nss>=3.12' 'avahi-glib>=0.6.19' \ 'cairo>=1.8.6' 'libxcursor' 'gnome-desktop>=2.90.0' 'iso-codes' \ 'shared-mime-info>=0.22' 'totem-pl-parser>=2.32.4' 'libkrb5' 'db>=4.7.25' \ - 'evolution-data-server>=2.90.0' 'python>=2.7' \ + 'evolution-data-server>=3.0.0' 'python>=2.7' \ 'gst-plugins-base-oil' 'gst-plugins-good-gconf' 'pygtk' 'libpeas-gtk>=0.7.2' \ 'libgdata>=0.6.4' 'gst-plugins-good-libsoup' 'unique' 'gst-ffmpeg' \ 'libxml2>=2.7.8') @@ -38,7 +38,7 @@ subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") subgroups=("${subgroups[@]}" 'gnome') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') -sha1sums=('a951fe53886aebef7ea2f7895634df0bf9799fde') +sha1sums=('617d3cf498e3f02a6ecba64d96e07afc3f8c1a9a') build() { Fcd From bouleetbil at frogdev.info Mon Apr 4 16:46:00 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:46:00 +0200 (CEST) Subject: [Frugalware-git] gnometesting: empathy-3.0.0-1-x86_64 Message-ID: <20110404144600.ACACC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f580755df5cc62062e6a4345baf93f51151af343 commit f580755df5cc62062e6a4345baf93f51151af343 Author: bouleetbil Date: Mon Apr 4 16:46:00 2011 +0200 empathy-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/empathy/FrugalBuild b/source/gnome/empathy/FrugalBuild index 6b96a74..a8da516 100644 --- a/source/gnome/empathy/FrugalBuild +++ b/source/gnome/empathy/FrugalBuild @@ -7,8 +7,8 @@ USE_SENDTO=${USE_SENDTO:-"n"} #Sendto have be merged to nautilus should wait pkgname=empathy -pkgver=2.91.93 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Empathy consists of a rich set of reusable instant messaging widgets" depends=('telepathy-glib' 'libxml2' 'enchant' 'ca-certificates' \ 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'e2fsprogs' \ @@ -37,7 +37,7 @@ if Fuse $USE_MAP; then depend=("${depends[@]}" "libchamplain" "geoclue") Fconfopts="${Fconfopts[@]} --enable-map=yes" fi -sha1sums=('ad216337c1638426ebf3ccdc2da57172bb9a4fed') +sha1sums=('607905a065a1d331c97076f6d59e38baadcc95d1') replaces=('galaxium') if Fuse $USE_SENDTO; then From bouleetbil at frogdev.info Mon Apr 4 16:47:14 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:47:14 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libchamplain-0.10.0-1-x86_64 Message-ID: <20110404144714.895721358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5feefd3df789510326b24c569fb46658661cb293 commit 5feefd3df789510326b24c569fb46658661cb293 Author: bouleetbil Date: Mon Apr 4 16:47:15 2011 +0200 libchamplain-0.10.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/libchamplain/FrugalBuild b/source/gnome-extra/libchamplain/FrugalBuild index 162d18b..ee56d38 100644 --- a/source/gnome-extra/libchamplain/FrugalBuild +++ b/source/gnome-extra/libchamplain/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libchamplain -pkgver=0.9.1 +pkgver=0.10.0 pkgrel=1 pkgdesc="Libchamplain is a C library providing a ClutterActor to display maps." depends=('clutter-gtk>=0.10.4-2' 'libsoup-gnome>=2.32.0' 'memphis' 'pyclutter-gtk') @@ -11,6 +11,6 @@ groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome replaces=('libchamplain-python') -sha1sums=('249a8d061f716fc6fbbe2fbdb570cff858188613') +sha1sums=('e97f307ee1a3a36b421e8cb311496cfb06a8cb1b') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 16:49:26 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:49:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: bareftp-0.3.8-1-x86_64 Message-ID: <20110404144926.207A61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=203bf208433c6a5cee328cdc2582754261750001 commit 203bf208433c6a5cee328cdc2582754261750001 Author: bouleetbil Date: Mon Apr 4 16:49:28 2011 +0200 bareftp-0.3.8-1-x86_64 *Version bump diff --git a/source/gnome-extra/bareftp/FrugalBuild b/source/gnome-extra/bareftp/FrugalBuild index efe6712..d97bcd8 100644 --- a/source/gnome-extra/bareftp/FrugalBuild +++ b/source/gnome-extra/bareftp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=bareftp -pkgver=0.3.7 +pkgver=0.3.8 pkgrel=1 pkgdesc="bareFTP is a file transfer client supporting the FTP and SSH" url="http://www.bareftp.org" @@ -16,7 +16,7 @@ _F_gnome_desktop=y _F_gnome_iconcache=y _F_mono_aot=0 Finclude mono gnome-scriptlet -sha1sums=('03ddb8b227586f281a55abd4591cc2f4d1d988a7') +sha1sums=('060bd89cbd40d2cc14b4a811590e5d748a6f99bd') build() { unset MAKEFLAGS From bouleetbil at frogdev.info Mon Apr 4 16:56:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 16:56:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: vte-0.28.0-1-x86_64 Message-ID: <20110404145611.4D0A41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c3ced9c2c311024f3dfbfc3a98eb94559a1211fd commit c3ced9c2c311024f3dfbfc3a98eb94559a1211fd Author: bouleetbil Date: Mon Apr 4 16:56:05 2011 +0200 vte-0.28.0-1-x86_64 *Version bump diff --git a/source/xapps/vte/FrugalBuild b/source/xapps/vte/FrugalBuild index efc3222..f885a67 100644 --- a/source/xapps/vte/FrugalBuild +++ b/source/xapps/vte/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=vte -pkgver=0.27.90 -pkgrel=2 +pkgver=0.28.0 +pkgrel=1 pkgdesc="Virtual Terminal Emulator (gtk+2)" depends=('gtk+2') rodepends=('vte-data') @@ -11,7 +11,7 @@ makedepends=('gtk-doc>=1.11' 'perl-xml-parser' 'intltool') groups=('xapps') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('000d66bf46cd9f5a195518e96d04a943b0cd32b3') +sha1sums=('49b66a0346da09c72f59e5c544cc5b50e7de9bc1') Fconfopts="$Fconfopts --disable-gtk-doc" subpkgs=('vte-python') From bouleetbil at frogdev.info Mon Apr 4 20:32:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:32:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-netstatus *moved to extra Message-ID: <20110404183204.5BEC81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4e34c8254cba70017394c84276bd300ab22ecbf8 commit 4e34c8254cba70017394c84276bd300ab22ecbf8 Author: bouleetbil Date: Mon Apr 4 20:30:29 2011 +0200 gnome-netstatus *moved to extra diff --git a/source/gnome/gnome-netstatus/FrugalBuild b/source/gnome-extra/gnome-netstatus/FrugalBuild similarity index 95% rename from source/gnome/gnome-netstatus/FrugalBuild rename to source/gnome-extra/gnome-netstatus/FrugalBuild index 564c8b6..3a0d1dc 100644 --- a/source/gnome/gnome-netstatus/FrugalBuild +++ b/source/gnome-extra/gnome-netstatus/FrugalBuild @@ -4,12 +4,12 @@ pkgname=gnome-netstatus pkgver=2.28.2 -pkgrel=2 +pkgrel=3 pkgdesc="A GNOME applet which provides information about a network interface" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gnome-panel>=2.32.0' 'rarian' 'dbus-glib>=0.86-1') makedepends=('intltool' 'gnome-doc-utils>=0.20.1') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/netstatus.schemas') _F_gnome_scrollkeeper="y" diff --git a/source/gnome/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch b/source/gnome-extra/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch similarity index 100% rename from source/gnome/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch rename to source/gnome-extra/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch From bouleetbil at frogdev.info Mon Apr 4 20:32:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:32:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-nettool *moved to extra Message-ID: <20110404183204.713481358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=93f61500b0effd143f7e2df5a16f6ed2ad5b3160 commit 93f61500b0effd143f7e2df5a16f6ed2ad5b3160 Author: bouleetbil Date: Mon Apr 4 20:31:43 2011 +0200 gnome-nettool *moved to extra diff --git a/source/gnome/gnome-nettool/FrugalBuild b/source/gnome-extra/gnome-nettool/FrugalBuild similarity index 94% rename from source/gnome/gnome-nettool/FrugalBuild rename to source/gnome-extra/gnome-nettool/FrugalBuild index 2fd7e0b..4320a7c 100644 --- a/source/gnome/gnome-nettool/FrugalBuild +++ b/source/gnome-extra/gnome-nettool/FrugalBuild @@ -3,14 +3,14 @@ pkgname=gnome-nettool pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME interface for various networking tools" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gtk+3' 'net-tools' 'whois' \ 'traceroute' 'bsd-finger' 'libgtop>=2.28.0') rodepends=('iputils') makedepends=('intltool' 'gnome-doc-utils>=0.16.0') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" From bouleetbil at frogdev.info Mon Apr 4 20:34:31 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:34:31 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtksourceview3-3.0.0-1-x86_64 Message-ID: <20110404183431.59BD71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c0c8eb53188708aa1afeb3824e464b6d0cef0556 commit c0c8eb53188708aa1afeb3824e464b6d0cef0556 Author: bouleetbil Date: Mon Apr 4 20:34:31 2011 +0200 gtksourceview3-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gtksourceview3/FrugalBuild b/source/gnome/gtksourceview3/FrugalBuild index db51e26..ef60d82 100644 --- a/source/gnome/gtksourceview3/FrugalBuild +++ b/source/gnome/gtksourceview3/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gtksourceview3 _F_gnome_name="gtksourceview" -pkgver=2.91.9 +pkgver=3.0.0 pkgrel=1 pkgdesc="A text widget adding syntax highlighting and more to GNOME" depends=('libxml2>=2.7.8' 'gtk+3') @@ -12,7 +12,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome _F_cd_path="$_F_gnome_name-$pkgver" -sha1sums=('24c1034f3db152537728ea721ef404e0394667bd') +sha1sums=('c11e30ae1b5bfbe03851ad59567e4d48fe6e4baf') build() { Fbuild --enable-gtk-doc --enable-glade-catalog From bouleetbil at frogdev.info Mon Apr 4 20:36:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:36:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-backgrounds-3.0.0-1-x86_64 Message-ID: <20110404183604.6D1341358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e14f4135d7a5749a7757cd6f2befdba88278b649 commit e14f4135d7a5749a7757cd6f2befdba88278b649 Author: bouleetbil Date: Mon Apr 4 20:35:59 2011 +0200 gnome-backgrounds-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-backgrounds/FrugalBuild b/source/gnome/gnome-backgrounds/FrugalBuild index bee3abf..eb7ca2c 100644 --- a/source/gnome/gnome-backgrounds/FrugalBuild +++ b/source/gnome/gnome-backgrounds/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Christian Hamar alias krix pkgname=gnome-backgrounds -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="A set of backgrounds for GNOME" url="http://www.gnome.org/" @@ -12,6 +12,6 @@ makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('217441b1020a1fe0ab7ab4228e3d4f7d6d02642e') +sha1sums=('56b524e8a35f7e6ef6830dc4e5b98bc80ef2d8c5') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 20:37:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:37:55 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-themes-standard-3.0.0-1-x86_64 Message-ID: <20110404183755.D62EA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=de028dbbe110f9367adb019af2bef0e72a80d13d commit de028dbbe110f9367adb019af2bef0e72a80d13d Author: bouleetbil Date: Mon Apr 4 20:37:55 2011 +0200 gnome-themes-standard-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-themes-standard/FrugalBuild b/source/gnome/gnome-themes-standard/FrugalBuild index 76c4436..4c7ef96 100644 --- a/source/gnome/gnome-themes-standard/FrugalBuild +++ b/source/gnome/gnome-themes-standard/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-themes-standard -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Default standard themes for GNOME3" url="http://www.gnome.org/" @@ -12,7 +12,7 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_git="n" Finclude gnome -sha1sums=('7c7670c7530deb1d0733d40f4ad3c79da1042bec') +sha1sums=('537fa0e92b690e9048f062cb00a4899320e1faa9') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi From bouleetbil at frogdev.info Mon Apr 4 20:44:28 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:44:28 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-netstatus *finally dead pkg Message-ID: <20110404184428.982A31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=be71d8325792c6eb72f12544d069db1ddeb2ae44 commit be71d8325792c6eb72f12544d069db1ddeb2ae44 Author: bouleetbil Date: Mon Apr 4 20:41:10 2011 +0200 gnome-netstatus *finally dead pkg diff --git a/source/gnome-extra/gnome-netstatus/FrugalBuild b/source/gnome-extra/gnome-netstatus/FrugalBuild deleted file mode 100644 index 3a0d1dc..0000000 --- a/source/gnome-extra/gnome-netstatus/FrugalBuild +++ /dev/null @@ -1,22 +0,0 @@ -# Compiling time: 0.17 SBU -# Maintainer: bouleetbil -# Contributor: AlexExtreme - -pkgname=gnome-netstatus -pkgver=2.28.2 -pkgrel=3 -pkgdesc="A GNOME applet which provides information about a network interface" -url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gnome-panel>=2.32.0' 'rarian' 'dbus-glib>=0.86-1') -makedepends=('intltool' 'gnome-doc-utils>=0.20.1') -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -_F_gnome_schemas=('/etc/gconf/schemas/netstatus.schemas') -_F_gnome_scrollkeeper="y" -_F_gnome_iconcache="y" -Finclude gnome gnome-scriptlet -source=(${source[@]} gnome-netstatus-2.12.1-fix-iflist.patch) -sha1sums=('44fdabee4a36c4fc7214533963a3b9eef9d3a787' \ - '9f310d1d918d4e0776997ded82d8c96a3d9ce761') - -# optimization OK diff --git a/source/gnome-extra/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch b/source/gnome-extra/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch deleted file mode 100644 index b81d045..0000000 --- a/source/gnome-extra/gnome-netstatus/gnome-netstatus-2.12.1-fix-iflist.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -ur a/src/netstatus-iface.c b/src/netstatus-iface.c ---- a/src/netstatus-iface.c 2007-02-13 09:39:19.000000000 +0000 -+++ b/src/netstatus-iface.c 2007-07-16 00:03:02.000000000 +0100 -@@ -1122,9 +1122,10 @@ - } - - #if !defined(HAVE_SOCKADDR_SA_LEN) --#define NETSTATUS_SA_LEN(saddr) (sizeof (struct sockaddr)) -+#define NETSTATUS_IFREQ_LEN(ifr) (sizeof (struct ifreq)) - #else --#define NETSTATUS_SA_LEN(saddr) (MAX ((saddr)->sa_len, sizeof (struct sockaddr))) -+#define NETSTATUS_IFREQ_LEN(ifr) sizeof (ifr->ifr_name) + \ -+ (MAX (ifr->ifr_addr.sa_len, sizeof (struct sockaddr))) - #endif /* HAVE_SOCKADDR_SA_LEN */ - - /* Taken From R. Stevens Unix Network Programming Vol. 1. -@@ -1220,7 +1221,7 @@ - struct ifreq *if_req = (struct ifreq *) p; - gboolean loopback = FALSE; - -- p += sizeof (if_req->ifr_name) + NETSTATUS_SA_LEN (&if_req->ifr_addr); -+ p += NETSTATUS_IFREQ_LEN (if_req); - - if (ioctl (fd, SIOCGIFFLAGS, if_req) < 0) - { From bouleetbil at frogdev.info Mon Apr 4 20:44:28 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:44:28 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-nettool *replace gnome-netstatus Message-ID: <20110404184428.A415B1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ac41365674a2bbb8d04e873b6f7226aace559103 commit ac41365674a2bbb8d04e873b6f7226aace559103 Author: bouleetbil Date: Mon Apr 4 20:42:23 2011 +0200 gnome-nettool *replace gnome-netstatus diff --git a/source/gnome-extra/gnome-nettool/FrugalBuild b/source/gnome-extra/gnome-nettool/FrugalBuild index 4320a7c..c6dad73 100644 --- a/source/gnome-extra/gnome-nettool/FrugalBuild +++ b/source/gnome-extra/gnome-nettool/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-nettool pkgver=3.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="GNOME interface for various networking tools" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gtk+3' 'net-tools' 'whois' \ @@ -18,5 +18,6 @@ _F_gnome_iconcache="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet sha1sums=('37ec5a49009ef3789f8c601f9f2aa638519119ff') +replaces=('gnome-netstatus') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 20:44:28 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:44:28 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-settings-daemon-3.0.0-1-x86_64 Message-ID: <20110404184428.AAE77135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5edfa284455b95f9f0f1fcbc83f2fc9449508cb2 commit 5edfa284455b95f9f0f1fcbc83f2fc9449508cb2 Author: bouleetbil Date: Mon Apr 4 20:44:28 2011 +0200 gnome-settings-daemon-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-settings-daemon/FrugalBuild b/source/gnome/gnome-settings-daemon/FrugalBuild index 56e0bb0..6a2683c 100644 --- a/source/gnome/gnome-settings-daemon/FrugalBuild +++ b/source/gnome/gnome-settings-daemon/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-settings-daemon -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Utility library for accessing gnome-settings-daemon over DBUS" depends=('libxml2>=2.7.8' 'libgnomekbd>=2.91.90' 'esd' 'gst-plugins-base>=0.10.22-2' 'libxxf86misc' \ @@ -16,7 +16,7 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('33c3c56fd3f7f7dec93a1af25493d6be414b7575') +sha1sums=('aaecac4e707ee20711cd1ab599b0213ebe41f962') Fconfopts="${Fconfopts[@]} --disable-static" build() { From hermier at frugalware.org Mon Apr 4 20:48:15 2011 From: hermier at frugalware.org (Michel Hermier) Date: Mon, 4 Apr 2011 20:48:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: heimdal-1.3.3-3-i686 Message-ID: <20110404184815.37A801358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cb35868f98fc3f405eca8b0959f145cd1f9be442 commit cb35868f98fc3f405eca8b0959f145cd1f9be442 Author: Michel Hermier Date: Mon Apr 4 20:39:49 2011 +0200 heimdal-1.3.3-3-i686 * Move heimdal to extra. * If you really need to use this, really think twice, then ask upstream if there is no other solution, then make some vodoo pray, then cut your legs, and if you reached here rethink again and you are welcome to use this package. diff --git a/source/lib/heimdal/FrugalBuild b/source/lib-extra/heimdal/FrugalBuild similarity index 97% rename from source/lib/heimdal/FrugalBuild rename to source/lib-extra/heimdal/FrugalBuild index 9eb6b22..afbcb4e 100644 --- a/source/lib/heimdal/FrugalBuild +++ b/source/lib-extra/heimdal/FrugalBuild @@ -4,10 +4,10 @@ pkgname=heimdal pkgver=1.3.3 -pkgrel=2 +pkgrel=3 pkgdesc="Heimdal Kerberos V5 libraries" url="http://www.h5l.org" -groups=('lib') +groups=('lib-extra') archs=('i686' 'x86_64' 'ppc' 'arm') depends=('e2fsprogs' 'openssl>=1.0.0' 'ncurses' 'db>=4.7.25') up2date="Flasttar $url/dist/src" diff --git a/source/lib/heimdal/drop_md2_support.diff b/source/lib-extra/heimdal/drop_md2_support.diff similarity index 100% rename from source/lib/heimdal/drop_md2_support.diff rename to source/lib-extra/heimdal/drop_md2_support.diff From bouleetbil at frogdev.info Mon Apr 4 20:50:13 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:50:13 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gdm-3.0.0-1-x86_64 Message-ID: <20110404185013.A2B5A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f460525d7be7f5857ba6948b9fccb225581aa65f commit f460525d7be7f5857ba6948b9fccb225581aa65f Author: bouleetbil Date: Mon Apr 4 20:50:13 2011 +0200 gdm-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gdm/FrugalBuild b/source/gnome/gdm/FrugalBuild index db0a407..759e413 100644 --- a/source/gnome/gdm/FrugalBuild +++ b/source/gnome/gdm/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gdm -pkgver=2.91.94 -pkgrel=3 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME Display Manager" url="http://www.gnome.org/" backup=(etc/gdm/custom.conf etc/pam.d/gdm etc/pam.d/gdm-autologin) @@ -19,7 +19,7 @@ options=('force') Finclude gnome source=(${source[@]} \ polkit-gnome-authentication-agent-1.desktop) -sha1sums=('1610a0082b1caff7b6d11a47b2a0c73a404e68ac' \ +sha1sums=('c88e0ea1af99982928cd12beb5efa52e587fe128' \ '93d1f9a7d068dd8e70c930abea9acf5b770a3485') conflicts=('fast-user-switch-applet') From bouleetbil at frogdev.info Mon Apr 4 20:55:41 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:55:41 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-disk-utility-3.0.0-1-x86_64 Message-ID: <20110404185541.4BD6E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ad6c2ca1f31b9b13fb3822c05e5fbca60b34ce69 commit ad6c2ca1f31b9b13fb3822c05e5fbca60b34ce69 Author: bouleetbil Date: Mon Apr 4 20:55:38 2011 +0200 gnome-disk-utility-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-disk-utility/FrugalBuild b/source/gnome/gnome-disk-utility/FrugalBuild index 859c4c8..609264c 100644 --- a/source/gnome/gnome-disk-utility/FrugalBuild +++ b/source/gnome/gnome-disk-utility/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: bouleetbil pkgname=gnome-disk-utility -pkgver=2.91.7 -pkgrel=3 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Disk Utility for GNOME using devicekit-disks" -depends=('gtk+3' 'unique' 'gnome-keyring>=2.90.0' 'libsexy' 'polkit-gnome' 'libavahi-ui' 'avahi-gtk3' \ +depends=('gtk+3' 'unique' 'gnome-keyring>=3.0.0' 'libsexy' 'polkit-gnome' 'libavahi-ui' 'avahi-gtk3' \ 'udisks' 'openssh-askpass' 'libnotify>=0.7') makedepends=('intltool' 'nautilus>=2.90.0' 'gnome-doc-utils' 'gtk-doc') groups=('gnome') @@ -16,7 +16,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet source=($source utf8.diff) -sha1sums=('2b5d82e796d64c295cb64841b6035a7bbd36c82a' \ +sha1sums=('bd28a3228fc9f4ddb08778a4152bc5ebd175697b' \ 'c0f9d3d2b2a31635f3c457b69e13e0dd0b2411e0') conflicts=('gnome-format') @@ -33,7 +33,6 @@ subarchs=('i686 ppc x86_64') build() { Fbuild --disable-gtk-doc Fbuild_gnome_scriptlet - Fmv usr/lib/nautilus/extensions-2.0 usr/lib/nautilus/extensions-3.0 Fsplit nautilus-disk-utility usr/lib/nautilus } From bouleetbil at frogdev.info Mon Apr 4 20:57:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 20:57:42 +0200 (CEST) Subject: [Frugalware-git] gnometesting: vino-3.0.0-1-x86_64 Message-ID: <20110404185742.239491358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8c17c7cd7a1a754297f85bbce8055a00837f6f0a commit 8c17c7cd7a1a754297f85bbce8055a00837f6f0a Author: bouleetbil Date: Mon Apr 4 20:57:42 2011 +0200 vino-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/vino/FrugalBuild b/source/gnome/vino/FrugalBuild index 78a86a6..e8e205c 100644 --- a/source/gnome/vino/FrugalBuild +++ b/source/gnome/vino/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=vino -pkgver=2.99.5 +pkgver=3.0.0 pkgrel=1 pkgdesc="An integrated VNC server for GNOME" depends=('gnutls>=2.8' 'avahi-glib' 'libxtst' 'libxdamage' 'libnotify' 'gnome-keyring>=2.90.0' @@ -16,6 +16,6 @@ _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-http-server=yes --enable-session-support=yes --enable-avahi \ --enable-debug=no --enable-gnome-keyring=yes" -sha1sums=('d8872503890fa0319a0aa0540f4bff3b94e9b6a6') +sha1sums=('f7a80547f64c3d295abadf073130bc142b5507ac') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 21:02:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:02:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gedit-3.0.0-1-x86_64 Message-ID: <20110404190212.B09451358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=fee4ed24386eaf627129ff036b50fa23eae88d8f commit fee4ed24386eaf627129ff036b50fa23eae88d8f Author: bouleetbil Date: Mon Apr 4 21:02:11 2011 +0200 gedit-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gedit/FrugalBuild b/source/gnome/gedit/FrugalBuild index 1223977..510f356 100644 --- a/source/gnome/gedit/FrugalBuild +++ b/source/gnome/gedit/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=gedit -pkgver=2.91.11 +pkgver=3.0.0 pkgrel=1 pkgdesc="A text editor for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gtk+3>=2.99.3' 'rarian' 'desktop-file-utils' 'gtksourceview3' 'dbus-glib>=0.74' \ +depends=('libxml2>=2.7.8' 'gtk+3>=3.0.8' 'rarian' 'desktop-file-utils' 'gtksourceview3' 'dbus-glib>=0.74' \ 'enchant' 'iso-codes' 'python>=2.7' 'libpeas-gtk' 'gsettings-desktop-schemas' 'gvfs') makedepends=('intltool' 'gnome-doc-utils>=0.16.0' 'gobject-introspection' 'gtk-doc' 'gnome-common') groups=('gnome') @@ -15,7 +15,7 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('2f403f657b7ef8c822a2081acab702d8653cf2a7') +sha1sums=('df79aaafcbd28b44ef4c495282cf7d02fcac7d29') replaces=("$pkgname-python") build() { From vmiklos at frugalware.org Mon Apr 4 21:05:30 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 4 Apr 2011 21:05:30 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: uml_utilities-20060323-4-i686 Message-ID: <20110404190530.1038E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=776024c0c0e2a6600fb65b962e8924cbfd34af33 commit 776024c0c0e2a6600fb65b962e8924cbfd34af33 Author: Miklos Vajna Date: Mon Apr 4 20:53:02 2011 +0200 uml_utilities-20060323-4-i686 - added tmpfiles.d config diff --git a/source/apps-extra/uml_utilities/FrugalBuild b/source/apps-extra/uml_utilities/FrugalBuild index 9e14100..8754875 100644 --- a/source/apps-extra/uml_utilities/FrugalBuild +++ b/source/apps-extra/uml_utilities/FrugalBuild @@ -3,7 +3,7 @@ pkgname=uml_utilities pkgver=20060323 -pkgrel=3 +pkgrel=4 pkgdesc="User Mode Linux Utilities" url="http://user-mode-linux.sourceforge.net/" depends=('ncurses') @@ -26,8 +26,10 @@ build() [ "$CARCH" == "x86_64" ] && Fmv /usr/lib64 /usr/lib Frcd2 uml Ffile /etc/sysconfig/uml - Fmkdir /var/run/uml - chmod 0700 $Fdestdir/var/run/uml || Fdie + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/uml.conf << EOF +d $Flocalstatedir/run/uml 0700 root root - +EOF } # optimization OK From devil505linux at gmail.com Mon Apr 4 21:06:17 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 4 Apr 2011 21:06:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: enna-0.4.1-5-i686 * rebuilt with ecore 1.0.0 Message-ID: <20110404190617.56A991358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1fba3e50221f796267e02523b8c93358a1819b45 commit 1fba3e50221f796267e02523b8c93358a1819b45 Author: Devil505 Date: Mon Apr 4 22:04:21 2011 +0200 enna-0.4.1-5-i686 * rebuilt with ecore 1.0.0 diff --git a/source/xmultimedia-extra/enna/FrugalBuild b/source/xmultimedia-extra/enna/FrugalBuild index 4cc4d27..db970c8 100644 --- a/source/xmultimedia-extra/enna/FrugalBuild +++ b/source/xmultimedia-extra/enna/FrugalBuild @@ -3,9 +3,9 @@ pkgname=enna pkgver=0.4.1 -pkgrel=4 +pkgrel=5 pkgdesc="A Powerful and Open Media Center" -depends=('libplayer' 'libvalhalla>=2.0.0-2' 'dbus' 'eet' 'evas' 'ecore' 'embryo' \ +depends=('libplayer' 'libvalhalla>=2.0.0-2' 'dbus' 'eet' 'evas' 'ecore>=1.0.0' 'embryo' \ 'edje>=0.9.99.49898' 'elementary>=0.7.0.49898') url=http://enna.geexbox.org/ urldl=http://enna.geexbox.org/releases From bouleetbil at frogdev.info Mon Apr 4 21:08:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:08:55 +0200 (CEST) Subject: [Frugalware-git] gnometesting: evince-3.0.0-1-x86_64 Message-ID: <20110404190855.78CB31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f587382591a334c468bec67de49d7ed586ded46c commit f587382591a334c468bec67de49d7ed586ded46c Author: bouleetbil Date: Mon Apr 4 21:08:52 2011 +0200 evince-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/evince/FrugalBuild b/source/gnome/evince/FrugalBuild index f5331f6..c80131d 100644 --- a/source/gnome/evince/FrugalBuild +++ b/source/gnome/evince/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=evince -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="A document viewer for GNOME" depends=('gtk+3' 'poppler-glib>=0.16.0' 'rarian' 'desktop-file-utils' 'libxml2>=2.7.8' \ @@ -18,7 +18,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet url="http://www.gnome.org/projects/evince/" -sha1sums=('0469e75529f73ddc647d7f1ced362725ee68e490') +sha1sums=('4104245c1c3690d2df4a106181af49d8b531a525') subpkgs=('evince-nautilus') subdescs=('Evince plugin for Nautilus') From vmiklos at frugalware.org Mon Apr 4 21:15:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 4 Apr 2011 21:15:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: sane-backends-1.0.22-2-i686 Message-ID: <20110404191522.CD7581358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=091b2729b17e8662a69935894506d61361964e1c commit 091b2729b17e8662a69935894506d61361964e1c Author: Miklos Vajna Date: Mon Apr 4 21:03:04 2011 +0200 sane-backends-1.0.22-2-i686 - added tmpfiles.d config diff --git a/source/multimedia/sane-backends/FrugalBuild b/source/multimedia/sane-backends/FrugalBuild index 3a0231d..e2200a4 100644 --- a/source/multimedia/sane-backends/FrugalBuild +++ b/source/multimedia/sane-backends/FrugalBuild @@ -3,7 +3,7 @@ pkgname=sane-backends pkgver=1.0.22 -pkgrel=1 +pkgrel=2 pkgdesc="Scanner Access Now Easy" url="http://www.sane-project.org" depends=('libieee1284' 'libgphoto2>=2.4.8-2' 'libjpeg>=8a' 'libtool>=2.2.6a') @@ -24,6 +24,11 @@ build() { Ffilerel tools/udev/libsane.rules /lib/udev/rules.d/70-libsane.rules Fmv /usr/{doc,share} Fmv /usr/share/doc/sane{,-backends}-$pkgver + Frm /var/lock + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/sane.conf << EOF +d $Flocalstatedir/lock/sane 0775 root scanner - +EOF } # optimization OK From bouleetbil at frogdev.info Mon Apr 4 21:15:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:15:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-power-manager-3.0.0-1-x86_64 Message-ID: <20110404191559.3E8A51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=081875f6c3597081933105d2a4422a3f986fa26c commit 081875f6c3597081933105d2a4422a3f986fa26c Author: bouleetbil Date: Mon Apr 4 21:15:57 2011 +0200 gnome-power-manager-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-power-manager/FrugalBuild b/source/gnome/gnome-power-manager/FrugalBuild index a31a5bd..5c80322 100644 --- a/source/gnome/gnome-power-manager/FrugalBuild +++ b/source/gnome/gnome-power-manager/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: bouleetbil pkgname=gnome-power-manager -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME Power Management tool" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'libnotify>=0.7.0' 'hal>=0.5.11' 'dbus-glib>=0.80' 'xextproto' 'libgnome>=2.30.0' \ - 'libglade' 'libwnck>=2.90.0' 'gnome-keyring>=2.32.0' 'gstreamer' 'gnome-control-center>=2.90.0' \ + 'libglade' 'libwnck>=2.90.0' 'gnome-keyring>=3.0.0' 'gstreamer' 'gnome-control-center>=2.90.0' \ 'upower' 'udisks' 'gnome-policykit' 'libcanberra-gtk' 'unique' 'pm-utils') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome') @@ -18,7 +18,7 @@ _F_gnome_desktop=y _F_gnome_iconcache=y Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-keyring --enable-policykit" -sha1sums=('3d0176b4e1a85be2012eb2d379da484ef82ccd0f') +sha1sums=('7637b6a163302d07abeebb236fec9686c05341a4') build() { Fcd From bouleetbil at frogdev.info Mon Apr 4 21:18:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:18:55 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-utils-3.0.0-1-x86_64 Message-ID: <20110404191855.B41C31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3dc266ede965867a488f326202d7c9073b5f93ef commit 3dc266ede965867a488f326202d7c9073b5f93ef Author: bouleetbil Date: Mon Apr 4 21:18:52 2011 +0200 gnome-utils-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-utils/FrugalBuild b/source/gnome/gnome-utils/FrugalBuild index c93c635..82e0da0 100644 --- a/source/gnome/gnome-utils/FrugalBuild +++ b/source/gnome/gnome-utils/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-utils -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME utilities" url="http://www.gnome.org/" @@ -20,7 +20,7 @@ _F_gnome_iconcache="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-ipv6 --disable-gtk-doc" -sha1sums=('f65d5f4a573446f1dbd941cfc1643576bb2c3e89') +sha1sums=('29ff73ee5afae5aa6f46862e76111127112e0e49') build() { Fbuild From bouleetbil at frogdev.info Mon Apr 4 21:20:46 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:20:46 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gconf-editor-3.0.0-1-x86_64 Message-ID: <20110404192046.C76F41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=00fdc322438ca62b67c4d254e1c170fd4f73fe85 commit 00fdc322438ca62b67c4d254e1c170fd4f73fe85 Author: bouleetbil Date: Mon Apr 4 21:20:46 2011 +0200 gconf-editor-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gconf-editor/FrugalBuild b/source/gnome/gconf-editor/FrugalBuild index ed7e951..c316de8 100644 --- a/source/gnome/gconf-editor/FrugalBuild +++ b/source/gnome/gconf-editor/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Christian Hamar alias krix pkgname=gconf-editor -pkgver=2.91.91.1 +pkgver=3.0.0 pkgrel=1 pkgdesc="An editor for the GConf configuration system" url="http://www.gnome.org/" @@ -16,6 +16,6 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('8ad11b311bb781e3e87b69b63c18c7ec99f900f8') +sha1sums=('087f07b77a1dc07034401487035bb1f49b22351b') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 21:25:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:25:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: vinagre-3.0.0-1-x86_64 Message-ID: <20110404192511.50EDC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=29d0abd8422e2ede3bd8675dc4a896aad28baae6 commit 29d0abd8422e2ede3bd8675dc4a896aad28baae6 Author: bouleetbil Date: Mon Apr 4 21:25:10 2011 +0200 vinagre-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/vinagre/FrugalBuild b/source/gnome/vinagre/FrugalBuild index da57dfc..9c6c253 100644 --- a/source/gnome/vinagre/FrugalBuild +++ b/source/gnome/vinagre/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=vinagre -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="VNC Client for the GNOME Desktop" depends=('gtk3-vnc' 'gnutls' 'libgcrypt' 'libavahi-ui' 'atk' \ @@ -20,7 +20,7 @@ Finclude gnome gnome-scriptlet source=($source enable_rdp.diff) groups=('gnome') archs=('i686' 'ppc' 'x86_64') -sha1sums=('0757c31b8c1acb539870bf6204f654948d67755e' \ +sha1sums=('ab9c0fe0487f0c31c87e9302784e18ab1a7e749e' \ 'd5dfc2e9dab539d41ff2b2b1c39a97cf1a5764fe') unset MAKEFLAGS Fconfopts="$Fconfopts --enable-rdp --disable-ssh --disable-static --disable-applet" From bouleetbil at frogdev.info Mon Apr 4 21:29:15 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:29:15 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-screensaver-3.0.0-1-x86_64 Message-ID: <20110404192915.31FF01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=39956fba6756864d031e21562efdb1d711d3c141 commit 39956fba6756864d031e21562efdb1d711d3c141 Author: bouleetbil Date: Mon Apr 4 21:29:15 2011 +0200 gnome-screensaver-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-screensaver/FrugalBuild b/source/gnome/gnome-screensaver/FrugalBuild index 5f36541..6bbbcd1 100644 --- a/source/gnome/gnome-screensaver/FrugalBuild +++ b/source/gnome/gnome-screensaver/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-screensaver -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME screen saver and locker" url="http://live.gnome.org/GnomeScreensaver" @@ -16,7 +16,7 @@ _F_gnome_glib="y" _F_gnome_desktop="y" _F_gnome_scrollkeeper="y" _F_gnome_mime="y" -sha1sums=('8c4ed0f07fd96f9d6f1b2d8f457e2e5801c7c2b3') +sha1sums=('8070e916d66a381334be2ca11b4b8e4c378c0a08') build() { Fcd From devil505linux at gmail.com Mon Apr 4 21:29:44 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 4 Apr 2011 21:29:44 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: enna-0.4.1-5-i686 * added missing depend Message-ID: <20110404192944.9CF201358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7dfbdda0e7c3364be4b92c3965d0f05fa729f4e9 commit 7dfbdda0e7c3364be4b92c3965d0f05fa729f4e9 Author: Devil505 Date: Mon Apr 4 22:26:59 2011 +0200 enna-0.4.1-5-i686 * added missing depend diff --git a/source/xmultimedia-extra/enna/FrugalBuild b/source/xmultimedia-extra/enna/FrugalBuild index db970c8..18a0d0e 100644 --- a/source/xmultimedia-extra/enna/FrugalBuild +++ b/source/xmultimedia-extra/enna/FrugalBuild @@ -6,7 +6,7 @@ pkgver=0.4.1 pkgrel=5 pkgdesc="A Powerful and Open Media Center" depends=('libplayer' 'libvalhalla>=2.0.0-2' 'dbus' 'eet' 'evas' 'ecore>=1.0.0' 'embryo' \ - 'edje>=0.9.99.49898' 'elementary>=0.7.0.49898') + 'edje>=0.9.99.49898' 'elementary>=0.7.0.49898' 'eina') url=http://enna.geexbox.org/ urldl=http://enna.geexbox.org/releases replaces=('eclair' 'rage') From bouleetbil at frogdev.info Mon Apr 4 21:34:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:34:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-control-center-3.0.0-1-x86_64 Message-ID: <20110404193457.D84761358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=75c8c09dec12b97e3948540ebb0ad27aab9aa7ed commit 75c8c09dec12b97e3948540ebb0ad27aab9aa7ed Author: bouleetbil Date: Mon Apr 4 21:34:51 2011 +0200 gnome-control-center-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-control-center/FrugalBuild b/source/gnome/gnome-control-center/FrugalBuild index 4d12c18..c4bcbe7 100644 --- a/source/gnome/gnome-control-center/FrugalBuild +++ b/source/gnome/gnome-control-center/FrugalBuild @@ -5,12 +5,12 @@ USE_CHEESE=${USE_CHEESE:-"n"} #not yet ported to gnome3 pkgname=gnome-control-center -pkgver=2.91.93 -pkgrel=3 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME Control Center" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.90' 'mutter' 'libgnomekbd>=2.91.90' 'gnome-menus' \ 'nautilus>=2.91.90' 'gst-plugins-base>=0.10.19-2' 'desktop-file-utils' \ - 'evolution-data-server>=2.91.90' 'libxxf86misc' 'libxscrnsaver' 'xrdb' \ + 'evolution-data-server>=3.0.0' 'libxxf86misc' 'libxscrnsaver' 'xrdb' \ 'libkrb5' 'db>=4.7.25' 'libsocialweb>=0.25.7' 'gsettings-desktop-schemas' \ 'gnome-settings-daemon' 'libcanberra-gtk>=0.26-2' 'libcanberra-alsa' 'libcanberra-gst' 'upower' \ 'accountsservice' 'apg' 'cantarell-fonts' 'networkmanager>=0.8.995' 'glib-networking') @@ -31,7 +31,7 @@ if Fuse $USE_CHEESE; then export CFLAGS="$CFLAGS -I/usr/include/cheese -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2" depends=("${depends[@]}" "cheese") fi -sha1sums=('fc7411e5b0f8eb93b09a9c8f13e603e375ae04d3') +sha1sums=('8b8d8ffd1143fb28f2821b9e41af995d3c7b491c') replaces=('accountsdialog') build() { From bouleetbil at frogdev.info Mon Apr 4 21:38:41 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:38:41 +0200 (CEST) Subject: [Frugalware-git] gnometesting: networkmanager-0.8.3.999-1-x86_64 Message-ID: <20110404193841.9D8E41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=fda4ecbc54f37badbfd4a4317b6d324dc033bde5 commit fda4ecbc54f37badbfd4a4317b6d324dc033bde5 Author: bouleetbil Date: Mon Apr 4 21:38:40 2011 +0200 networkmanager-0.8.3.999-1-x86_64 *Version bump diff --git a/source/network/networkmanager/FrugalBuild b/source/network/networkmanager/FrugalBuild index 084a2dc..db0598a 100644 --- a/source/network/networkmanager/FrugalBuild +++ b/source/network/networkmanager/FrugalBuild @@ -3,8 +3,8 @@ pkgname=networkmanager _F_gnome_name=NetworkManager -pkgver=0.8.997 -pkgrel=2 +pkgver=0.8.3.999 +pkgrel=1 pkgdesc="Network Management daemon" depends=('wireless_tools' 'hal' 'iproute2' 'dhcpcd>=5.1.3' 'nss' 'libgcrypt' \ 'libnl' 'ppp' 'wpa_supplicant' 'iptables' 'polkit' 'libgudev' 'ca-certificates' \ @@ -17,7 +17,7 @@ options=('scriptlet') backup=('etc/NetworkManager/nm-system-settings.conf') source=($source \ nm-system-settings.conf) -sha1sums=('385b094f2806703edac2d9a5dfb38f1ad8bfbd8e' \ +sha1sums=('6df6c7296efc1b13072bf496b3793df5eeb271c0' \ '5a7c9957783a275692101e5471022056cff6f096') _F_cd_path=$_F_gnome_name-$pkgver From bouleetbil at frogdev.info Mon Apr 4 21:43:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:43:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libsocialweb-0.25.14-2-x86_64 *fix dep Message-ID: <20110404194359.D934D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4f2e6bb009b5a0b85cbb511af6954bd61c434b02 commit 4f2e6bb009b5a0b85cbb511af6954bd61c434b02 Author: bouleetbil Date: Mon Apr 4 21:43:55 2011 +0200 libsocialweb-0.25.14-2-x86_64 *fix dep diff --git a/source/gnome/libsocialweb/FrugalBuild b/source/gnome/libsocialweb/FrugalBuild index 9a732af..c71ff37 100644 --- a/source/gnome/libsocialweb/FrugalBuild +++ b/source/gnome/libsocialweb/FrugalBuild @@ -3,9 +3,9 @@ pkgname=libsocialweb pkgver=0.25.14 -pkgrel=1 +pkgrel=2 pkgdesc="socialweb library to fetch data from social service" -depends=('libxml2>=2.7.8' 'librest' 'json-glib' 'networkmanager>=0.8.995') +depends=('libxml2>=2.7.8' 'librest' 'json-glib' 'networkmanager>=0.8.3.999') makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'vala') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From devil505linux at gmail.com Mon Apr 4 21:45:42 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 4 Apr 2011 21:45:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: identicurse-0.6.4-1-i686 * new package * closes FS#4455 Message-ID: <20110404194542.72F581358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9f6b7f6a579617aad57d2dedf2619b2191a1a310 commit 9f6b7f6a579617aad57d2dedf2619b2191a1a310 Author: Devil505 Date: Mon Apr 4 22:43:55 2011 +0200 identicurse-0.6.4-1-i686 * new package * closes FS#4455 diff --git a/source/apps-extra/identicurse/FrugalBuild b/source/apps-extra/identicurse/FrugalBuild new file mode 100644 index 0000000..af77b22 --- /dev/null +++ b/source/apps-extra/identicurse/FrugalBuild @@ -0,0 +1,23 @@ +# Compiling Time: 0.01 SBU +# Maintainer: Devil505 + +pkgname=identicurse +pkgver=0.6.4 +pkgrel=1 +pkgdesc="Ncurses based identi.ca/status.net client." +url="http://identicurse.net" +depends=('python>=2.7' 'ncurses') +makedepends=('setuptools') +groups=('apps-extra') +archs=('i686' 'x86_64') +up2date="Flasttar $url" +Finclude python +source=($url/release/0.6/$pkgname-$pkgver.tar.gz) +sha1sums=('e189f44f460249ebea3eadc8ccac1f8abde2b9f0') + +build() { + + Fcd "$pkgname-0.6" + python setup.py install --prefix=/usr --install-data=/usr/share --root="$Fdestdir" || Fdie + Finstallrel 644 conf/config.json $_F_python_libdir/$pkgname/config.json +} From bouleetbil at frogdev.info Mon Apr 4 21:47:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:47:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Revert "networkmanager-0.8.3.999-1-x86_64" Message-ID: <20110404194738.ADB871358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=82f1912c2f0903a91da521f73b256014ee4704eb commit 82f1912c2f0903a91da521f73b256014ee4704eb Author: bouleetbil Date: Mon Apr 4 21:47:31 2011 +0200 Revert "networkmanager-0.8.3.999-1-x86_64" This reverts commit fda4ecbc54f37badbfd4a4317b6d324dc033bde5. diff --git a/source/network/networkmanager/FrugalBuild b/source/network/networkmanager/FrugalBuild index db0598a..084a2dc 100644 --- a/source/network/networkmanager/FrugalBuild +++ b/source/network/networkmanager/FrugalBuild @@ -3,8 +3,8 @@ pkgname=networkmanager _F_gnome_name=NetworkManager -pkgver=0.8.3.999 -pkgrel=1 +pkgver=0.8.997 +pkgrel=2 pkgdesc="Network Management daemon" depends=('wireless_tools' 'hal' 'iproute2' 'dhcpcd>=5.1.3' 'nss' 'libgcrypt' \ 'libnl' 'ppp' 'wpa_supplicant' 'iptables' 'polkit' 'libgudev' 'ca-certificates' \ @@ -17,7 +17,7 @@ options=('scriptlet') backup=('etc/NetworkManager/nm-system-settings.conf') source=($source \ nm-system-settings.conf) -sha1sums=('6df6c7296efc1b13072bf496b3793df5eeb271c0' \ +sha1sums=('385b094f2806703edac2d9a5dfb38f1ad8bfbd8e' \ '5a7c9957783a275692101e5471022056cff6f096') _F_cd_path=$_F_gnome_name-$pkgver From bouleetbil at frogdev.info Mon Apr 4 21:48:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:48:07 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Revert "libsocialweb-0.25.14-2-x86_64" Message-ID: <20110404194807.40FF31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a85cd76d94fc159a7b2b60b2af731c7ad974a941 commit a85cd76d94fc159a7b2b60b2af731c7ad974a941 Author: bouleetbil Date: Mon Apr 4 21:48:06 2011 +0200 Revert "libsocialweb-0.25.14-2-x86_64" This reverts commit 4f2e6bb009b5a0b85cbb511af6954bd61c434b02. diff --git a/source/gnome/libsocialweb/FrugalBuild b/source/gnome/libsocialweb/FrugalBuild index c71ff37..9a732af 100644 --- a/source/gnome/libsocialweb/FrugalBuild +++ b/source/gnome/libsocialweb/FrugalBuild @@ -3,9 +3,9 @@ pkgname=libsocialweb pkgver=0.25.14 -pkgrel=2 +pkgrel=1 pkgdesc="socialweb library to fetch data from social service" -depends=('libxml2>=2.7.8' 'librest' 'json-glib' 'networkmanager>=0.8.3.999') +depends=('libxml2>=2.7.8' 'librest' 'json-glib' 'networkmanager>=0.8.995') makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'vala') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Mon Apr 4 21:52:13 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:52:13 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libpeas-1.0.0-1-x86_64 Message-ID: <20110404195213.480F81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bb39e1279c2be424e8ead1daee7074f703f8c5e3 commit bb39e1279c2be424e8ead1daee7074f703f8c5e3 Author: bouleetbil Date: Mon Apr 4 21:52:11 2011 +0200 libpeas-1.0.0-1-x86_64 *Version bump diff --git a/source/gnome/libpeas/FrugalBuild b/source/gnome/libpeas/FrugalBuild index fcb3291..26115bb 100644 --- a/source/gnome/libpeas/FrugalBuild +++ b/source/gnome/libpeas/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=libpeas -pkgver=0.9.0 +pkgver=1.0.0 pkgrel=1 pkgdesc="libpeas is a gobject-based plugins engine" -depends=('glib2' 'pygobject' 'gobject-introspection>=0.10.1' 'seed>=2.91.90') +depends=('glib2' 'pygobject' 'gobject-introspection>=0.10.1' 'seed>=3.0.0') makedepends=('intltool' 'gtk-doc') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_devel="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('51818a57414432bd8a2c243c569244aa00b52722') +sha1sums=('f15caf0b7c4621979eff5bca06f567d2d4828443') subpkgs=('libpeas-gtk') subdescs=('libpeas GTK support') From bouleetbil at frogdev.info Mon Apr 4 21:58:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 21:58:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: clutter-1.6.12-1-x86_64 Message-ID: <20110404195854.EBA261358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=cf05dee667d45c04e0b91d16e1ffaf2595ccf3a6 commit cf05dee667d45c04e0b91d16e1ffaf2595ccf3a6 Author: bouleetbil Date: Mon Apr 4 21:58:54 2011 +0200 clutter-1.6.12-1-x86_64 *Version bump diff --git a/source/xlib/clutter/FrugalBuild b/source/xlib/clutter/FrugalBuild index 64b2837..e1535b4 100644 --- a/source/xlib/clutter/FrugalBuild +++ b/source/xlib/clutter/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Devil505 pkgname=clutter -pkgver=1.6.10 +pkgver=1.6.12 pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces." depends=('libxdamage' 'libxcomposite' 'libgl' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \ @@ -15,6 +15,6 @@ replaces=('clutter-cairo') provides=('clutter-cairo') unset MAKEFLAGS Fconfopts="$Fconfopts --with-imagebackend=gdk-pixbuf --enable-xinput" -sha1sums=('046951673654dff3f4fa7ee94430a211a2fdc72f') +sha1sums=('725774ad05012ffc80db8249e659bcec8eb28135') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 22:05:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:05:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: cantarell-fonts-0.0.6-1-x86_64 Message-ID: <20110404200534.14CD31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3b73e134369a3de611277c85d2f8b80444902292 commit 3b73e134369a3de611277c85d2f8b80444902292 Author: bouleetbil Date: Mon Apr 4 22:05:34 2011 +0200 cantarell-fonts-0.0.6-1-x86_64 *Version bump diff --git a/source/x11/cantarell-fonts/FrugalBuild b/source/x11/cantarell-fonts/FrugalBuild index e72b2cf..c18de43 100644 --- a/source/x11/cantarell-fonts/FrugalBuild +++ b/source/x11/cantarell-fonts/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=cantarell-fonts -pkgver=0.0.5 +pkgver=0.0.6 pkgrel=1 pkgdesc="Contemporary humanist sans-serif font" groups=('x11' 'xorg-core' 'xorg-fonts') @@ -11,7 +11,7 @@ _F_gnome_devel="y" _F_fonts_subdir="cantarell" Finclude gnome fonts makedepends=(${makedepends[@]} 'font-util') -sha1sums=('b406de6ea41cb310f0397f0db92985e42bc8942b') +sha1sums=('d99bc6123c1c91a68572587a6bd6ce5922889196') build() { cd $pkgname-$pkgver || Fdie From bouleetbil at frogdev.info Mon Apr 4 22:12:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:12:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: file-roller-3.0.0-1-x86_64 Message-ID: <20110404201202.A9A211358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b60c93801d7c172e333e0eb355f962ba7f544027 commit b60c93801d7c172e333e0eb355f962ba7f544027 Author: bouleetbil Date: Mon Apr 4 22:12:01 2011 +0200 file-roller-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/file-roller/FrugalBuild b/source/gnome/file-roller/FrugalBuild index 46e932b..c3b2015 100644 --- a/source/gnome/file-roller/FrugalBuild +++ b/source/gnome/file-roller/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Christian Hamar alias krix pkgname=file-roller -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Archive manager utility for GNOME" depends=('libxml2>=2.7.8' 'nautilus>=2.91.90' 'rarian' \ @@ -16,7 +16,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('e0455411eeda39bf70fe5c37b08af1bfa05d4804') +sha1sums=('efe9ed981db086432f6c3c8c5ec154bd3f2fb552') Fconfopts="$Fconfopts --disable-packagekit" build(){ From bouleetbil at frogdev.info Mon Apr 4 22:28:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:28:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-color-manager-3.0.0-1-x86_64 Message-ID: <20110404202854.5ACE31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2dc17ee038b4f697476091685fbe18df24eb8fec commit 2dc17ee038b4f697476091685fbe18df24eb8fec Author: bouleetbil Date: Mon Apr 4 22:28:52 2011 +0200 gnome-color-manager-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-color-manager/FrugalBuild b/source/gnome-extra/gnome-color-manager/FrugalBuild index 588bf0c..2c2de23 100644 --- a/source/gnome-extra/gnome-color-manager/FrugalBuild +++ b/source/gnome-extra/gnome-color-manager/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: bouleetbil pkgname=gnome-color-manager -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="$pkgname install and generate color profiles in the GNOME desktop" -depends=('gtk+3>=3.0.4' 'gnome-desktop' 'unique' 'vte' 'libgudev' 'lcms2' 'libcanberra-gtk' \ +depends=('gtk+3>=3.0.8' 'gnome-desktop' 'unique' 'vte' 'libgudev' 'lcms2' 'libcanberra-gtk' \ 'cups' 'libnotify>=0.7' 'sane-backends' 'gnome-settings-daemon' \ 'gnome-control-center' 'exiv2') makedepends=('intltool' 'gnome-doc-utils') @@ -16,6 +16,6 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet archs=('i686' 'x86_64') -sha1sums=('b1217cae7cb92898af98e5c7681c23aeef9cc54f') +sha1sums=('51d0efe15b33f144e054096c96eb006e5c616fba') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 22:35:35 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:35:35 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-games-3.0.0-1-x86_64 Message-ID: <20110404203535.9E7F51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=351566e6c337abcadc3fc4b4e8018e913c71735f commit 351566e6c337abcadc3fc4b4e8018e913c71735f Author: bouleetbil Date: Mon Apr 4 22:35:23 2011 +0200 gnome-games-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-games/FrugalBuild b/source/gnome-extra/gnome-games/FrugalBuild index cc54be7..79171b9 100644 --- a/source/gnome-extra/gnome-games/FrugalBuild +++ b/source/gnome-extra/gnome-games/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-games -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Games for GNOME" url="http://www.gnome.org/" @@ -30,7 +30,7 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-scores-group=users --with-scores-user=root" -sha1sums=('da0fe2d19177dda7503e3b36a575638a5afdc296') +sha1sums=('75d25e3721523681bc35af1d3eca63b9c4a585d7') conflicts=('glchess') replaces=('gnono') From bouleetbil at frogdev.info Mon Apr 4 22:41:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:41:20 +0200 (CEST) Subject: [Frugalware-git] gnometesting: mousetweaks-3.0.0-1-x86_64 Message-ID: <20110404204120.49C9F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ad5d6c40cdbf274cd3c6f88434e742a5b30b28ac commit ad5d6c40cdbf274cd3c6f88434e742a5b30b28ac Author: bouleetbil Date: Mon Apr 4 22:41:19 2011 +0200 mousetweaks-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/mousetweaks/FrugalBuild b/source/gnome-extra/mousetweaks/FrugalBuild index 0ca3377..39c8c69 100644 --- a/source/gnome-extra/mousetweaks/FrugalBuild +++ b/source/gnome-extra/mousetweaks/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=mousetweaks -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="The Mousetweaks package provides mouse accessibility enhancements for the GNOME desktop." url="http://www.gnome.org/" @@ -12,6 +12,6 @@ groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_glib="y" Finclude gnome -sha1sums=('08621c40866b0a2ae2a7aeb463f1ba74fa22e824') +sha1sums=('20e481b5f162b8185c7f9b1e29690579e41d0b7b') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 22:43:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:43:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gpsd-2.96-1-x86_64 Message-ID: <20110404204308.698A21358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=34af2b956eb845ce3843b2ff661fff37abf4b7d3 commit 34af2b956eb845ce3843b2ff661fff37abf4b7d3 Author: bouleetbil Date: Mon Apr 4 22:43:09 2011 +0200 gpsd-2.96-1-x86_64 *Version bump diff --git a/source/xlib-extra/gpsd/FrugalBuild b/source/xlib-extra/gpsd/FrugalBuild index 8bc6012..f2de0df 100644 --- a/source/xlib-extra/gpsd/FrugalBuild +++ b/source/xlib-extra/gpsd/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gpsd -pkgver=2.95 -pkgrel=4 +pkgver=2.96 +pkgrel=1 pkgdesc="GPS daemon and library to support USB/serial GPS devices" archs=('i686' 'x86_64' 'ppc') groups=('xlib-extra') @@ -11,7 +11,7 @@ Finclude berlios source=($source rc.gpsd gpsd) depends=('lesstif' 'libxaw>=1.0.5' 'python>=2.7') backup=('etc/sysconfig/gpsd') -sha1sums=('af1f575c8ec3a2db7a71c35f2296fd339a4a1ff3' \ +sha1sums=('a3674940e3325ccc1dc6d2890eb18d31a978425c' \ 'ec737984e550495119edf316d9efffc5770d2bba' \ '5ef21b7d58d4f7bf39feb4603ea90bc93d7293f0') From bouleetbil at frogdev.info Mon Apr 4 22:48:30 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:48:30 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgnomekbd-3.0.0-1-x86_64 Message-ID: <20110404204830.7455E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c356a812a4326e950430961dd04dc9f992797124 commit c356a812a4326e950430961dd04dc9f992797124 Author: bouleetbil Date: Mon Apr 4 22:48:30 2011 +0200 libgnomekbd-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/libgnomekbd/FrugalBuild b/source/gnome/libgnomekbd/FrugalBuild index 0181cf9..ccc9383 100644 --- a/source/gnome/libgnomekbd/FrugalBuild +++ b/source/gnome/libgnomekbd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libgnomekbd -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="Keyboard library for GNOME" url="http://www.gnome.org/" @@ -12,6 +12,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('8aea87551354fdf23f40b3bcceedbfe70a457529') +sha1sums=('bcfc476b0906dbd412b59e8ed70edde3b6a44cf2') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 22:50:13 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:50:13 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libsoup-2.34.0-1-x86_64 Message-ID: <20110404205013.5E6841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a4ad25e3bfd175a77f3ef842b0da3efaabd8f9b4 commit a4ad25e3bfd175a77f3ef842b0da3efaabd8f9b4 Author: bouleetbil Date: Mon Apr 4 22:50:11 2011 +0200 libsoup-2.34.0-1-x86_64 *Version bump diff --git a/source/lib/libsoup/FrugalBuild b/source/lib/libsoup/FrugalBuild index 342ed61..a0fd5fd 100644 --- a/source/lib/libsoup/FrugalBuild +++ b/source/lib/libsoup/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libsoup -pkgver=2.33.92 +pkgver=2.34.0 pkgrel=1 pkgdesc="An HTTP library implementation in C" url="http://www.gnome.org/" @@ -12,7 +12,7 @@ makedepends=('gobject-introspection>=0.9.0') groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('0573e1115ff700a70144cb692507eac8a56aa201') +sha1sums=('31e6d338739138b53410334d66cb8ffe999d0c02') subpkgs=("libsoup-gnome") subdescs=('libsoup with gconf support') From bouleetbil at frogdev.info Mon Apr 4 22:50:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:50:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glib-networking-2.28.5-1-x86_64 Message-ID: <20110404205037.E81D71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4a7cea9e688c99823451c83128e06655913888d0 commit 4a7cea9e688c99823451c83128e06655913888d0 Author: bouleetbil Date: Mon Apr 4 22:50:38 2011 +0200 glib-networking-2.28.5-1-x86_64 *Version bump diff --git a/source/lib/glib-networking/FrugalBuild b/source/lib/glib-networking/FrugalBuild index 27fd567..4d2087d 100644 --- a/source/lib/glib-networking/FrugalBuild +++ b/source/lib/glib-networking/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=glib-networking -pkgver=2.28.4 +pkgver=2.28.5 pkgrel=1 pkgdesc="Network extensions for GLib" depends=('glib2' 'gnutls' 'ca-certificates' 'libgcrypt') @@ -11,4 +11,4 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude gnome -sha1sums=('382efcc732675ed0dd5c411e2d1798fe1e09de46') +sha1sums=('b1477eed8596dca9e21b670bdddabac491391cef') From bouleetbil at frogdev.info Mon Apr 4 22:52:24 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:52:24 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgsf-1.14.20-1-x86_64 Message-ID: <20110404205224.C55FB1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=92dd85ff30ea0daf8b4416cecf1834ddad275c3a commit 92dd85ff30ea0daf8b4416cecf1834ddad275c3a Author: bouleetbil Date: Mon Apr 4 22:52:22 2011 +0200 libgsf-1.14.20-1-x86_64 *Version bump diff --git a/source/lib/libgsf/FrugalBuild b/source/lib/libgsf/FrugalBuild index 8866971..a512e6d 100644 --- a/source/lib/libgsf/FrugalBuild +++ b/source/lib/libgsf/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Miklos Nemeth pkgname=libgsf -pkgver=1.14.19 -pkgrel=2 +pkgver=1.14.20 +pkgrel=1 pkgdesc="A library for reading and writing structured files (eg MS OLE and Zip)" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'glib2' 'bzip2') @@ -12,7 +12,7 @@ makedepends=('intltool>=0.40.6' 'gtk-doc' 'perl-xml-parser' 'pygtk>=2.16.0' 'gvf groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome python -sha1sums=('125dac2939f9ecc8041c5cb5cbf74a00fd14b6ca') +sha1sums=('d172b454c1b98f9c111df11e000b1ced050bdac9') subpkgs=('libgsf-gnome') subdescs=('GNOME specific extensions to libgsf') From bouleetbil at frogdev.info Mon Apr 4 22:54:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:54:52 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gvfs-1.8.0-1-x86_64 Message-ID: <20110404205452.689AF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3facac44ae119e62d5ff2bf20101c64d2395dcc0 commit 3facac44ae119e62d5ff2bf20101c64d2395dcc0 Author: bouleetbil Date: Mon Apr 4 22:54:41 2011 +0200 gvfs-1.8.0-1-x86_64 *Version bump diff --git a/source/xapps/gvfs/FrugalBuild b/source/xapps/gvfs/FrugalBuild index ac09a63..911a057 100644 --- a/source/xapps/gvfs/FrugalBuild +++ b/source/xapps/gvfs/FrugalBuild @@ -4,8 +4,8 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=gvfs -pkgver=1.7.3 -pkgrel=5 +pkgver=1.8.0 +pkgrel=1 pkgdesc="gvfs is a userspace virtual filesystem designed to work with the i/o abstractions of gio." url="http://www.gnome.org/" @@ -22,7 +22,7 @@ provides=('gvfs-gconf' 'gnome-mount') _F_gnome_glib="y" Finclude gnome gnome-scriptlet source=($source gvfs-libsoup.diff) -sha1sums=('d9eb1cfcdc3958eb6bc7c64d1636aa67ca1f7977' \ +sha1sums=('84ef65332a58a5f8515f46769bb5f00bf6a87fde' \ '1eb9391f6bf3716ddc8fbf75340257e537c61199') subpkgs=("${subpkgs[@]}" "gvfs-apple") From bouleetbil at frogdev.info Mon Apr 4 22:55:26 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:55:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: librsvg-2.34.0-1-x86_64 Message-ID: <20110404205526.EA3021358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=83648fc35cded9d85da30e36520ba4b8b2d591a7 commit 83648fc35cded9d85da30e36520ba4b8b2d591a7 Author: bouleetbil Date: Mon Apr 4 22:55:26 2011 +0200 librsvg-2.34.0-1-x86_64 *Version bump diff --git a/source/xlib/librsvg/FrugalBuild b/source/xlib/librsvg/FrugalBuild index 2bb1473..feb2c8f 100644 --- a/source/xlib/librsvg/FrugalBuild +++ b/source/xlib/librsvg/FrugalBuild @@ -3,15 +3,15 @@ # Contributor: VMiklos pkgname=librsvg -pkgver=2.32.1 -pkgrel=9 +pkgver=2.34.0 +pkgrel=1 pkgdesc="A high performance SVG rendering library for GNOME" depends=('gtk+3>=2.99.3' 'gdk-pixbuf2' 'libxml2>=2.7.8' 'popt' 'libart_lgpl' 'libcroco>=0.6.1-4' 'libgsf>=1.14.8') makedepends=('gtk-doc') groups=('xlib') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('2762cfa3a4e9c9ee845c7f23a824dbd13583ebf0') +sha1sums=('59e01568a6b201fc45828a76b942f790859cddeb') Fconfopts="$Fconfopts --with-croco --disable-static \ --with-svgz --enable-gtk-theme" replaces=('libsvg-cairo') From bouleetbil at frogdev.info Mon Apr 4 22:57:19 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:57:19 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gobject-introspection-0.10.7-1-x86_64 Message-ID: <20110404205719.E810E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=44f5036d73d76f1d7819df559daf58474fcba845 commit 44f5036d73d76f1d7819df559daf58474fcba845 Author: bouleetbil Date: Mon Apr 4 22:57:19 2011 +0200 gobject-introspection-0.10.7-1-x86_64 *Version bump diff --git a/source/xlib/gobject-introspection/FrugalBuild b/source/xlib/gobject-introspection/FrugalBuild index f583222..a3be84f 100644 --- a/source/xlib/gobject-introspection/FrugalBuild +++ b/source/xlib/gobject-introspection/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gobject-introspection -pkgver=0.10.6 +pkgver=0.10.7 pkgrel=1 pkgdesc="Generate interface introspection data for GObject libraries." depends=('glib2' 'libffi' 'cairo>=1.8.10-2' 'libxft' 'python>=2.7') @@ -10,7 +10,7 @@ groups=('xlib') archs=('i686' 'x86_64' 'ppc') _F_gnome_devel="y" Finclude gnome -sha1sums=('df724aaa40f945c2519099a5594c66c91085e150') +sha1sums=('9b0feea4db5318a6f6b954180f20635149757993') replaces=('gir-repository') build() { From bouleetbil at frogdev.info Mon Apr 4 22:59:03 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 22:59:03 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-system-monitor-3.0.0-1-x86_64 Message-ID: <20110404205903.58DA41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=6ccf2c3ada16f0cdbbf812861602ab107ec70304 commit 6ccf2c3ada16f0cdbbf812861602ab107ec70304 Author: bouleetbil Date: Mon Apr 4 22:59:01 2011 +0200 gnome-system-monitor-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-system-monitor/FrugalBuild b/source/gnome-extra/gnome-system-monitor/FrugalBuild index 9f73f3c..96722d3 100644 --- a/source/gnome-extra/gnome-system-monitor/FrugalBuild +++ b/source/gnome-extra/gnome-system-monitor/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-system-monitor -pkgver=2.99.3 +pkgver=3.0.0 pkgrel=1 pkgdesc="A system monitor for GNOME" url="http://www.gnome.org/" @@ -15,6 +15,6 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('aa3526f25eca20ea713d96cec930b3b80c8ecd51') +sha1sums=('60f492eea26dc25c6891dbe7bcb63757341188e3') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 23:01:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:01:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gdl-3.0.0-1-x86_64 Message-ID: <20110404210104.076071358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7572a2ce82ed53d1ba96268dccdbd5c3b934a071 commit 7572a2ce82ed53d1ba96268dccdbd5c3b934a071 Author: bouleetbil Date: Mon Apr 4 23:01:04 2011 +0200 gdl-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gdl/FrugalBuild b/source/gnome-extra/gdl/FrugalBuild index 09b60af..8601c2d 100644 --- a/source/gnome-extra/gdl/FrugalBuild +++ b/source/gnome-extra/gdl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=gdl -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="Gnome Devtool Libraries." url="http://gnome.org" @@ -11,6 +11,6 @@ depends=('gtk+3' 'perl-xml-parser') groups=('gnome-extra') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('ac3393c7bf4b830c8ea058a82fcc5b388969dabe') +sha1sums=('07270f1e16ad626e4d8bf793b85fc48f1f7da897') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 23:05:06 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:05:06 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-user-share-3.0.0-1-x86_64 Message-ID: <20110404210506.4B7691358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5cf3b42ae3dcf7dc064a2118071f158a8a173a86 commit 5cf3b42ae3dcf7dc064a2118071f158a8a173a86 Author: bouleetbil Date: Mon Apr 4 23:05:06 2011 +0200 gnome-user-share-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-user-share/FrugalBuild b/source/gnome-extra/gnome-user-share/FrugalBuild index 3379b9c..c5fb20b 100644 --- a/source/gnome-extra/gnome-user-share/FrugalBuild +++ b/source/gnome-extra/gnome-user-share/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-user-share -pkgver=2.91.6 +pkgver=3.0.0 pkgrel=1 pkgdesc="a system for easy sharing of user files." options=('scriptlet') @@ -15,7 +15,7 @@ makedepends=('intltool' 'gnome-doc-utils') depends=('glib' 'gtk+2>=2.22.0' 'gconf>=2.32.0' 'dbus-glib' 'libnotify>=0.7' 'libcanberra-gtk2' 'dbus' 'gnome-bluetooth' 'nautilus' 'unique1') groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('f70fa77316600afb2903c436beae15cab59491d6') +sha1sums=('d2ef58bbced61cdd8387ee0f1b747578777e50b8') replaces=('nautilus-share') # optimization OK From bouleetbil at frogdev.info Mon Apr 4 23:07:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:07:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-desktop-3.0.0-1-x86_64 Message-ID: <20110404210749.DD8851358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=721421bd337e76fd473d5cd423a1152ec6ccd6e5 commit 721421bd337e76fd473d5cd423a1152ec6ccd6e5 Author: bouleetbil Date: Mon Apr 4 23:07:49 2011 +0200 gnome-desktop-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-desktop/FrugalBuild b/source/gnome/gnome-desktop/FrugalBuild index b0a657c..b358866 100644 --- a/source/gnome/gnome-desktop/FrugalBuild +++ b/source/gnome/gnome-desktop/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-desktop -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="The GNOME Desktop" url="http://www.gnome.org/" @@ -13,7 +13,7 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-gnome-distributor=Frugalware --enable-gtk-doc" -sha1sums=('5afb0e323f68dadf04ce1cdb06efe03a8d211240') +sha1sums=('aec7a70b20a221a557212b9f12d59bc25c86c793') replaces=('desktop-data-model' 'gnome-volume-manager' 'gnome-spell') provides=('gnome-volume-manager' 'gnome-spell') From bouleetbil at frogdev.info Mon Apr 4 23:11:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:11:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-3.0.0-1-x86_64 Message-ID: <20110404211134.EEF471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=692583ca6336967d266f70cef7d9733748f15429 commit 692583ca6336967d266f70cef7d9733748f15429 Author: bouleetbil Date: Mon Apr 4 23:11:33 2011 +0200 nautilus-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/nautilus/FrugalBuild b/source/gnome/nautilus/FrugalBuild index f9d237c..6514f2c 100644 --- a/source/gnome/nautilus/FrugalBuild +++ b/source/gnome/nautilus/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: bouleetbil pkgname=nautilus -pkgver=2.91.94 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="A file manager for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'librsvg>=2.26.2-2' 'libexif' 'eject' 'desktop-file-utils' 'libgnome>=2.32.0' 'gsettings-desktop-schemas' \ - 'exempi' 'unique>=2.90.0' 'gnome-desktop>=2.91.91' 'libnotify' \ + 'exempi' 'unique>=2.90.0' 'gnome-desktop>=3.0.0' 'libnotify' \ 'gvfs-gphoto2>=1.7.1-4' 'gvfs-smb>=1.7.1-4' 'gvfs>=1.7.1-4') rodepends=('nautilus-disk-utility') makedepends=('intltool') @@ -19,7 +19,7 @@ _F_gnome_mime="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --disable-packagekit" -sha1sums=('ce8195d84e0020c87c11ad8b6e7613eec3efe7c5') +sha1sums=('a9f54cc29a76cf31a8c75a12994988234b2e79a1') provides=('eel' 'nautilus-sendto') replaces=('eel' 'nautilus-wallpaper' 'nautilus-sendto' 'file-browser-applet' 'nautilus-image-converter') conflicts=('nautilus-sendto') From bouleetbil at frogdev.info Mon Apr 4 23:34:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:34:20 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-menus-3.0.0-1-x86_64 Message-ID: <20110404213420.8BC7E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b9bb42ce9ad33eef3f86ca1b7dded59c2b19740d commit b9bb42ce9ad33eef3f86ca1b7dded59c2b19740d Author: bouleetbil Date: Mon Apr 4 23:34:20 2011 +0200 gnome-menus-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-menus/FrugalBuild b/source/gnome/gnome-menus/FrugalBuild index 0e7c22f..a5d325d 100644 --- a/source/gnome/gnome-menus/FrugalBuild +++ b/source/gnome/gnome-menus/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-menus -pkgver=2.91.91 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME menus and menu editor" depends=('gamin>=0.1.9-3' 'python>=2.7') makedepends=('intltool') @@ -12,10 +12,9 @@ replaces=('gnome-main-menu') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --enable-python --enable-debug=yes" -source=(${source[@]} gnomemenu.sh ignoreKDE.diff controlcenter.diff) -sha1sums=('287b67cefc08cf7fad05455152a4a9540ad41f46' \ +source=(${source[@]} gnomemenu.sh controlcenter.diff) +sha1sums=('aea5e9024b6f097e4f5f49b4a3a50e6c44fe05fb' \ '7c71b08a5a7716a863be30e75d19ff82f8476e61' \ - 'a129b1bb220060fabd8701fa771c7ac9dcc5cbe2' \ '52d53d7ce162638b9750034bf1726b6cde4e3baf') build() { diff --git a/source/gnome/gnome-menus/ignoreKDE.diff b/source/gnome/gnome-menus/ignoreKDE.diff deleted file mode 100644 index 6dd75f5..0000000 --- a/source/gnome/gnome-menus/ignoreKDE.diff +++ /dev/null @@ -1,23 +0,0 @@ ---- layout/applications.menu.orig 2007-09-21 17:51:43.000000000 +0300 -+++ layout/applications.menu 2007-09-21 17:55:38.000000000 +0300 -@@ -146,6 +146,19 @@ - Core - Settings - Screensaver -+ X-KDE-settings-accessibility -+ X-KDE-settings-components -+ X-KDE-settings-desktop -+ X-KDE-settings-looknfeel -+ X-KDE-settings-network -+ X-KDE-settings-webbrowsing -+ X-KDE-settings-peripherals -+ X-KDE-settings-hardware -+ X-KDE-settings-power -+ X-KDE-settings-security -+ X-KDE-settings-sound -+ X-KDE-settings-system -+ X-KDE-information - - - - From bouleetbil at frogdev.info Mon Apr 4 23:35:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:35:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: yelp-xsl-3.0.0-1-x86_64 Message-ID: <20110404213538.DCCD81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a1405b768c082aa2fd1f6ff60c781f5416383351 commit a1405b768c082aa2fd1f6ff60c781f5416383351 Author: bouleetbil Date: Mon Apr 4 23:35:38 2011 +0200 yelp-xsl-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/yelp-xsl/FrugalBuild b/source/gnome/yelp-xsl/FrugalBuild index 26e1797..1c0626b 100644 --- a/source/gnome/yelp-xsl/FrugalBuild +++ b/source/gnome/yelp-xsl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=yelp-xsl -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="TXSL stylesheets for the yelp help browser" depends=('libxml2' 'libxslt') @@ -11,5 +11,5 @@ _F_gnome_devel="y" groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('b3c15e42816f979a29d187646f0c00174f26a59a') +sha1sums=('a387b4caa4603bd0bee90085e7338b4a76850f4b') From bouleetbil at frogdev.info Mon Apr 4 23:40:35 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:40:35 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-session-3.0.0-1-x86_64 Message-ID: <20110404214035.C84621358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=68b450e0716a8e89b22b22716eb6ea129e6f866a commit 68b450e0716a8e89b22b22716eb6ea129e6f866a Author: bouleetbil Date: Mon Apr 4 23:40:35 2011 +0200 gnome-session-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-session/FrugalBuild b/source/gnome/gnome-session/FrugalBuild index b1c0080..d0d18b0 100644 --- a/source/gnome/gnome-session/FrugalBuild +++ b/source/gnome/gnome-session/FrugalBuild @@ -4,11 +4,11 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=gnome-session -pkgver=2.91.94 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME session manager" -depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.91' 'polkit' 'upower' 'gconf-gtk' 'usermode' \ - 'dbus-glib>=0.76' 'gnome-control-center>=2.91.90' 'libnotify' 'gnome-keyring>=2.91.0' \ +depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'polkit' 'upower' 'gconf-gtk' 'usermode' \ + 'dbus-glib>=0.76' 'gnome-control-center>=3.0.0' 'libnotify' 'gnome-keyring>=3.0.0' \ 'metacity') makedepends=('intltool' 'gnome-common') #gnome-session start gnome-shell and if failed start gnome-panel @@ -20,7 +20,7 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-gtk=3.0" -sha1sums=('2ae1ab5f9afecb06eb9c913897b7b2fab51f5bbe') +sha1sums=('e00b3375dc998255903e3c046791e450c82eac38') build() { Fcd From bouleetbil at frogdev.info Mon Apr 4 23:49:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 4 Apr 2011 23:49:27 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgweather-3.0.0-1-x86_64 Message-ID: <20110404214927.E4B3F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=72263e9bd328a4f3a19a508a3295a12cfc166b59 commit 72263e9bd328a4f3a19a508a3295a12cfc166b59 Author: bouleetbil Date: Mon Apr 4 23:49:24 2011 +0200 libgweather-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/libgweather/FrugalBuild b/source/gnome/libgweather/FrugalBuild index 6046ee7..2837d5e 100644 --- a/source/gnome/libgweather/FrugalBuild +++ b/source/gnome/libgweather/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=libgweather -pkgver=2.91.6 -pkgrel=5 +pkgver=3.0.0 +pkgrel=1 pkgdesc="libgweather is a library to access weather information from online services for numerous locations." url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gtk+3>=2.99.2-5' 'gconf>=2.32.0' 'libsoup-gnome>=2.32.0') +depends=('libxml2>=2.7.8' 'gtk+3>=3.0.8' 'gconf>=2.32.0' 'libsoup-gnome>=2.34.0') makedepends=('perl-xml-parser' 'intltool' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/gweather.schemas') Finclude gnome gnome-scriptlet -sha1sums=('c23f5eb8cf3d687f5e31f597a5f48390987ebcba') +sha1sums=('d58e5dedfd1175ae5909a274d2db401c15f5af9a') unset MAKEFLAGS subpkgs=("${subpkgs[@]}" "python-gweather") From bouleetbil at frogdev.info Tue Apr 5 08:10:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 08:10:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: unique-3.0.0-1-x86_64 Message-ID: <20110405061057.6FA1B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f881c776224ade581b60b31cd0778b13433511eb commit f881c776224ade581b60b31cd0778b13433511eb Author: bouleetbil Date: Tue Apr 5 08:10:55 2011 +0200 unique-3.0.0-1-x86_64 *Version bump diff --git a/source/xlib/unique/FrugalBuild b/source/xlib/unique/FrugalBuild index d85eb7b..4204dd5 100644 --- a/source/xlib/unique/FrugalBuild +++ b/source/xlib/unique/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: bouleetbil pkgname=unique -pkgver=2.91.4 -pkgrel=4 +pkgver=3.0.0 +pkgrel=1 pkgdesc="a library for writing single instance application" -depends=('gtk+3>=3.0.0' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'dbus-glib' 'libxdamage>=1.1.1-3' 'libxext>=1.0.5-3') +depends=('gtk+3>=3.0.8' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'dbus-glib' 'libxdamage>=1.1.1-3' 'libxext>=1.0.5-3') makedepends=('perl-xml-parser' 'intltool' 'gnome-doc-utils' 'gobject-introspection') _F_gnome_name=libunique Finclude gnome @@ -13,7 +13,7 @@ url="http://live.gnome.org/LibUnique" options=('scriptlet') groups=('xlib') archs=('i686' 'x86_64' 'ppc') -sha1sums=('ecc6f357fbca0a26b800bce19e87628b8882aecf') +sha1sums=('6833fad7ef1ef15cf5c15a0fea6d9de3630e7381') _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --enable-bacon --enable-introspection" From bouleetbil at frogdev.info Tue Apr 5 08:19:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 08:19:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libwnck-3.0.0-1-x86_64 Message-ID: <20110405061909.ACC6F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=791bb57f2fe08e7f6d6b9ed58c2e54a6190cca40 commit 791bb57f2fe08e7f6d6b9ed58c2e54a6190cca40 Author: bouleetbil Date: Tue Apr 5 08:19:07 2011 +0200 libwnck-3.0.0-1-x86_64 *Version bump diff --git a/source/xlib/libwnck/FrugalBuild b/source/xlib/libwnck/FrugalBuild index 43f6466..f556d4f 100644 --- a/source/xlib/libwnck/FrugalBuild +++ b/source/xlib/libwnck/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=libwnck -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="Window Navigator Construction Kit" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gtk+3>=3.0.4' 'libsm>=1.1.0' 'libxres>=1.0.3-3' 'startup-notification>=0.10-2') +depends=('libxml2>=2.7.8' 'gtk+3>=3.0.8' 'libsm>=1.1.0' 'libxres>=1.0.3-3' 'startup-notification>=0.10-2') groups=('xlib') makedepends=('gtk-doc' 'perl-xml-parser' 'intltool' 'gobject-introspection') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('49c77e57d9995d6ad4a56b53bc49a261353f25e4') +sha1sums=('add9f12668d688808b882a37a7b24863cbf21581') export CFLAGS="$CFLAGS -fno-strict-aliasing" # optimization OK From bouleetbil at frogdev.info Tue Apr 5 08:20:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 08:20:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pango-1.28.4-1-x86_64 Message-ID: <20110405062057.9F9071358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f44cf1ad69976c2fa974683636359cf417b3441c commit f44cf1ad69976c2fa974683636359cf417b3441c Author: bouleetbil Date: Tue Apr 5 08:20:56 2011 +0200 pango-1.28.4-1-x86_64 *Version bump diff --git a/source/xlib/pango/FrugalBuild b/source/xlib/pango/FrugalBuild index d533c57..5c512ba 100644 --- a/source/xlib/pango/FrugalBuild +++ b/source/xlib/pango/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=pango -pkgver=1.28.3 -pkgrel=2 +pkgver=1.28.4 +pkgrel=1 pkgdesc="A library for layout and rendering of text" url="http://www.gtk.org/" depends=('libxml2>=2.7.8' 'cairo>=1.8.10-2' 'glib2>=2.24.0' 'libxft>=2.1.13-2' 'libxmu' 'libxi') @@ -12,6 +12,6 @@ makedepends=('gtk-doc' 'perl' 'gobject-introspection>=0.9.6' 'dri2proto') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc --enable-debug=minimum" -sha1sums=('e72887d6e147b9abf54628c003836e61d97767a1') +sha1sums=('e715954a5a3b358889d15b6235e1965303dbb622') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 08:33:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 08:33:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: anjuta-3.0.0.0-1-x86_64 Message-ID: <20110405063309.385D11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=eb2b01557bf2936e7bd4bde5573895040c2c74e8 commit eb2b01557bf2936e7bd4bde5573895040c2c74e8 Author: bouleetbil Date: Tue Apr 5 08:33:03 2011 +0200 anjuta-3.0.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/anjuta/FrugalBuild b/source/gnome-extra/anjuta/FrugalBuild index a7ff911..99ac1b2 100644 --- a/source/gnome-extra/anjuta/FrugalBuild +++ b/source/gnome-extra/anjuta/FrugalBuild @@ -3,14 +3,14 @@ # Contributor: AlexExtreme pkgname=anjuta -pkgver=2.91.92.0 +pkgver=3.0.0.0 pkgrel=1 pkgdesc="Anjuta is a versatile IDE for C and C++, written for GTK/GNOME." -depends=('gdl>=2.30.0' 'gnome-build>=2.24.1-5' 'guile>=1.8.2' 'autogen' 'graphviz>=2.14-2' \ +depends=('gdl>=3.0.0' 'gnome-build>=2.24.1-5' 'guile>=1.8.2' 'autogen' 'graphviz>=2.14-2' \ 'vte3' 'subversion' 'gtksourceview3' 'gnome-keyring>=2.32.0' 'libgnomecanvas>=2.30.1-2' 'libgnome' \ 'popt' 'avahi-glib' 'libxdmcp' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libxslt' \ 'ncurses' 'libxft' 'subversion' 'graphviz' 'binutils' 'glade3' 'nspr' \ - 'startup-notification' 'libxres' 'libgcc' 'libgda' 'devhelp>=2.30.0') + 'startup-notification' 'libxres' 'libgcc' 'libgda' 'devhelp>=3.0.0') makedepends=('perl-xml-parser' 'intltool' 'gnome-doc-utils' 'perl-gettext' 'krb5' 'vala' 'gobject-introspection') _F_gnome_desktop="y" _F_gnome_iconcache="y" @@ -20,7 +20,7 @@ options=('scriptlet') Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('a145f5b96bfdfcaaf7ed53d6e291ba52603ae61d') +sha1sums=('702788415b3f0c14d7a31fbcee440dbc2e0b6951') unset MAKEFLAGS Fconfopts="${Fconfopts[@]} --enable-compile-warnings=no" replaces=('vtg' 'valide' 'valencia') From bouleetbil at frogdev.info Tue Apr 5 09:31:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 09:31:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: zenity-3.0.0-1-x86_64 Message-ID: <20110405073137.C57CA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c7671cdb12f94c041a67f52aa695d2b20c76906f commit c7671cdb12f94c041a67f52aa695d2b20c76906f Author: bouleetbil Date: Tue Apr 5 09:31:34 2011 +0200 zenity-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/zenity/FrugalBuild b/source/gnome/zenity/FrugalBuild index 4b7a4bc..1bbcf7a 100644 --- a/source/gnome/zenity/FrugalBuild +++ b/source/gnome/zenity/FrugalBuild @@ -2,18 +2,18 @@ # Maintainer: bouleetbil pkgname=zenity -pkgver=2.91.90 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="A rewrite of gdialog" url="http://www.gnome.org/" rodepends=('notification-daemon') -depends=('libxml2>=2.7.8' 'gtk+3' 'rarian' 'libnotify>=0.4.4' 'dbus-glib>=0.71-2') +depends=('libxml2>=2.7.8' 'gtk+3' 'rarian' 'libnotify>=0.7' 'dbus-glib>=0.71-2') makedepends=('intltool' 'gnome-doc-utils>=0.10.3') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet -sha1sums=('3b6fa0d121d5aae79c6b3f5c0c54ee85f79e6b9d') +sha1sums=('0ca6e7ee43862e42922b5866805ade522ce7faf7') Fconfopts="$Fconfopts --with-gtk=3.0" # optimization OK From bouleetbil at frogdev.info Tue Apr 5 09:35:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 09:35:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-themes-3.0.0-1-x86_64 Message-ID: <20110405073538.D9C841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1d5824e007d6e5c4cfaf9942333ca19c9f1c5cd5 commit 1d5824e007d6e5c4cfaf9942333ca19c9f1c5cd5 Author: bouleetbil Date: Tue Apr 5 09:35:36 2011 +0200 gnome-themes-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-themes/FrugalBuild b/source/gnome/gnome-themes/FrugalBuild index a7a8561..8e90bb7 100644 --- a/source/gnome/gnome-themes/FrugalBuild +++ b/source/gnome/gnome-themes/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-themes -pkgver=2.91.90 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Default themes for GNOME" url="http://www.gnome.org/" depends=('gtk+3-engines') @@ -11,12 +11,12 @@ makedepends=('perl-xml-parser' 'icon-naming-utils' 'intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('8069577504f57f86884fbb4af54b3ad7dd848333') +sha1sums=('3e1cde45a1d9e8a92445e7646735e7c64137440a') build() { Fbuild - Frm usr/share/icons/HighContrast/index.theme - Frm usr/share/icons/HighContrastInverse/index.theme - Frm usr/share/themes/HighContrast/index.theme - Frm usr/share/themes/HighContrastInverse/index.theme + #Frm usr/share/icons/HighContrast/index.theme + #Frm usr/share/icons/HighContrastInverse/index.theme + #Frm usr/share/themes/HighContrast/index.theme + #Frm usr/share/themes/HighContrastInverse/index.theme } From bouleetbil at frogdev.info Tue Apr 5 09:40:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 09:40:55 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-panel-3.0.0-1-x86_64 Message-ID: <20110405074055.A82F61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4099d31a1246ecb894922de3f055fa626b7bbe11 commit 4099d31a1246ecb894922de3f055fa626b7bbe11 Author: bouleetbil Date: Tue Apr 5 09:40:53 2011 +0200 gnome-panel-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-panel/FrugalBuild b/source/gnome/gnome-panel/FrugalBuild index ac2fb95..b7d6ef2 100644 --- a/source/gnome/gnome-panel/FrugalBuild +++ b/source/gnome/gnome-panel/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: bouleetbil pkgname=gnome-panel -pkgver=2.91.94 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="GNOME panel and core applets" -depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.91' 'gnome-menus>=2.30.4' \ - 'libwnck>=2.90.0' 'rarian>=0.8.0' 'dbus-glib>=0.71' 'avahi-glib>=0.6.17' 'librsvg>=2.32.0' \ - 'libcanberra-gtk' 'libkrb5' 'openssl>=1.0.0-3' 'libgweather>=2.91.0' 'evolution-data-server' \ +depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'gnome-menus>=2.30.4' \ + 'libwnck>=3.0.0' 'rarian>=0.8.0' 'dbus-glib>=0.71' 'avahi-glib>=0.6.17' 'librsvg>=2.32.0' \ + 'libcanberra-gtk' 'libkrb5' 'openssl>=1.0.0-3' 'libgweather>=3.0.0' 'evolution-data-server' \ 'networkmanager' 'dconf' 'telepathy-glib') makedepends=('intltool' 'gtk-doc>=1.9' 'gnome-doc-utils>=0.14.0' 'krb5' 'gobject-introspection') groups=('gnome') @@ -18,7 +18,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('131ddd8823a6d5feb880c6a044b4e637a39f7bcd') +sha1sums=('0772e61bca6cdf1a3748a736bf7a236c217a72ce') replaces=('avant-window-navigator' 'awn-extras-applets') build() { From bouleetbil at frogdev.info Tue Apr 5 09:52:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 09:52:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: eog-3.0.0-1-x86_64 Message-ID: <20110405075237.A2B461358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ecf88fc91c1d007b92ecf7c925502f290a70085f commit ecf88fc91c1d007b92ecf7c925502f290a70085f Author: bouleetbil Date: Tue Apr 5 09:52:35 2011 +0200 eog-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/eog/FrugalBuild b/source/gnome/eog/FrugalBuild index 149d197..b6b04e2 100644 --- a/source/gnome/eog/FrugalBuild +++ b/source/gnome/eog/FrugalBuild @@ -3,11 +3,11 @@ # Contributor: Christian Hamar alias krix pkgname=eog -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="An image viewing and cataloging program for GNOME" depends=('libxml2>=2.7.8' 'libexif' 'rarian' 'desktop-file-utils' 'python>=2.7' \ - 'gnome-desktop>=2.91.0' 'lcms' 'libart_lgpl' 'libpeas-gtk') + 'gnome-desktop>=3.0.0' 'lcms' 'libart_lgpl' 'libpeas-gtk') makedepends=('intltool' 'gnome-doc-utils>=0.16.0') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -16,6 +16,6 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('757fd480bf737ab9d268d3c78948315c10d750fc') +sha1sums=('2c7afe19fd5bd251b4322fc1231b0ccc1758c269') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 10:07:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:07:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: brasero-3.0.0-1-x86_64 Message-ID: <20110405080737.F1C6F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f8e0c6b6eeedd2882a20eb281fc25f816ebc8fdd commit f8e0c6b6eeedd2882a20eb281fc25f816ebc8fdd Author: bouleetbil Date: Tue Apr 5 10:07:32 2011 +0200 brasero-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/brasero/FrugalBuild b/source/gnome/brasero/FrugalBuild index 0276c8a..75d857a 100644 --- a/source/gnome/brasero/FrugalBuild +++ b/source/gnome/brasero/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: bouleetbil pkgname=brasero -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="A CD/DVD Burning application for the GNOME desktop." url="http://www.gnome.org/projects/brasero/" makedepends=('intltool' 'gnome-doc-utils') -depends=('gtk+3>=3.0.2' 'libisofs' 'libburn' \ +depends=('gtk+3>=3.0.8' 'libisofs' 'libburn' \ 'gstreamer' 'gst-plugins-base' 'gst-plugins-good' \ - 'hal>=0.5.11' 'libxml2' 'totem>=2.91.7' 'perl-xml-parser' 'dbus-glib>=0.80' \ + 'hal>=0.5.11' 'libxml2' 'totem>=3.0.0' 'perl-xml-parser' 'dbus-glib>=0.80' \ 'libbeagle' 'popt' 'libdvdcss' 'libcanberra-gtk') makedepends=('gnome-doc-utils' 'intltool' 'gobject-introspection') groups=('gnome') @@ -34,7 +34,7 @@ _F_gnome_mime="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-search --enable-playlist --enable-preview --enable-inotify --enable-libnotify --disable-schemas-install \ --enable-caches=no --enable-introspection=yes" -sha1sums=('ac363f58f812c48f01ff206dcae0d74c1bda6021') +sha1sums=('f8091b835aa9260a68de41c3b8f8bc47e9bea9de') build(){ Fbuild From bouleetbil at frogdev.info Tue Apr 5 10:11:36 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:11:36 +0200 (CEST) Subject: [Frugalware-git] gnometesting: cheese-3.0.0-1-x86_64 Message-ID: <20110405081136.985741358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=af1b0bdcffb32eb783398ca288e9f7cb0bcd6978 commit af1b0bdcffb32eb783398ca288e9f7cb0bcd6978 Author: bouleetbil Date: Tue Apr 5 10:11:27 2011 +0200 cheese-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/cheese/FrugalBuild b/source/gnome/cheese/FrugalBuild index 0dffb0f..718523b 100644 --- a/source/gnome/cheese/FrugalBuild +++ b/source/gnome/cheese/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: bouleetbil pkgname=cheese -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Cheese is a Photobooth-inspired GNOME application for taking pictures and videos from a webcam." url="http://www.gnome.org/projects/cheese" depends=('librsvg>=2.26.0-2' 'gst-plugins-good>=0.10.16-3' 'gst-plugins-base>=0.10.24-1' 'gst-plugins-base-pango' \ - 'xf86vidmodeproto' 'evolution-data-server>=2.91.0' 'dbus' 'hal' 'gnome-video-effects' \ + 'xf86vidmodeproto' 'evolution-data-server>=3.0.0' 'dbus' 'hal' 'gnome-video-effects' \ 'gst-plugins-good-video4linux2' 'db>=4.7.25-2' 'gnome-desktop>=2.91.0' \ 'gst-plugins-bad-mpeg2enc' 'gst-plugins-base-ogg' 'gst-plugins-base-theora' 'gst-plugins-base-vorbis' 'gst-plugins-good-gconf' \ 'libgudev' 'libcanberra-gtk' 'clutter-gst' 'libgee' 'clutter-gtk' 'mx') @@ -18,6 +18,6 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('3b8e3ae8679b85193713836242223bf5243e01db') +sha1sums=('6a4f55475cd01e317ad384ae30ba1ff3ebf6da02') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 10:17:17 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:17:17 +0200 (CEST) Subject: [Frugalware-git] gnometesting: epiphany-3.0.0-1-x86_64 Message-ID: <20110405081717.64AE51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=28c844fa9bd0cff149ff068555eae5b3dbb02baa commit 28c844fa9bd0cff149ff068555eae5b3dbb02baa Author: bouleetbil Date: Tue Apr 5 10:17:13 2011 +0200 epiphany-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/epiphany/FrugalBuild b/source/gnome/epiphany/FrugalBuild index 1d8a33e..f084fb9 100644 --- a/source/gnome/epiphany/FrugalBuild +++ b/source/gnome/epiphany/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=epiphany -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="GNOME webbrowser based on the WebKit rendering engine" url="http://www.gnome.org/projects/epiphany/" -depends=('libstdc++' 'dbus-x11' 'atk' 'libxslt' 'gnome-desktop>=2.90.90' 'startup-notification' \ +depends=('libstdc++' 'dbus-x11' 'atk' 'libxslt' 'gnome-desktop>=3.0.0' 'startup-notification' \ 'webkit-gtk3' 'docbook-xsl' 'libsoup-gnome' 'seed>=2.30.0' 'ca-certificates') makedepends=('gtk-doc>=1.9' 'perl-xml-parser' 'python>=2.7' 'gobject-introspection' \ 'iso-codes' 'gnome-doc-utils>=0.16.0' 'intltool') @@ -20,7 +20,7 @@ archs=('x86_64' 'i686' 'ppc') Fconfopts="$Fconfopts --enable-seed --enable-introspection --disable-nss --disable-tests \ --enable-python --disable-gtk-doc --with-distributor-name=Frugalware" source=($source homepage.diff) -sha1sums=('bbf81b33da8d189f5f5dfdebc1f4b7c0a11fbbef' \ +sha1sums=('503d645d036133305385199875821ce1c291a358' \ '482ab8be71909eba927a0f866989f916f74f0b4c') replaces=('galeon') From bouleetbil at frogdev.info Tue Apr 5 10:25:03 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:25:03 +0200 (CEST) Subject: [Frugalware-git] gnometesting: yelp-3.0.0-1-x86_64 Message-ID: <20110405082503.D12521358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=027af8fb7429eddcf0e1fca4b81a6f7ae818cad7 commit 027af8fb7429eddcf0e1fca4b81a6f7ae818cad7 Author: bouleetbil Date: Tue Apr 5 10:25:02 2011 +0200 yelp-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/yelp/FrugalBuild b/source/gnome/yelp/FrugalBuild index a22c146..8d3fe98 100644 --- a/source/gnome/yelp/FrugalBuild +++ b/source/gnome/yelp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=yelp -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="The default help browser for GNOME" url="http://www.gnome.org/" @@ -15,6 +15,6 @@ _F_gnome_glib="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet unset MAKEFLAGS -sha1sums=('92c8c490a4a0dcd1a380d0abc031d56e95f82ae3') +sha1sums=('b71667ea90b13e350e5544d3afc34749a81b874a') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 10:36:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:36:49 +0200 (CEST) Subject: [Frugalware-git] gnometesting: metacity-2.34.0-1-x86_64 *version bump Message-ID: <20110405083649.672EB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=35aa0d5c43e4041e3fd7d6e37ad75b1fd77f72fa commit 35aa0d5c43e4041e3fd7d6e37ad75b1fd77f72fa Author: bouleetbil Date: Tue Apr 5 10:36:37 2011 +0200 metacity-2.34.0-1-x86_64 *version bump diff --git a/source/gnome/metacity/FrugalBuild b/source/gnome/metacity/FrugalBuild index bd3c655..0323b97 100644 --- a/source/gnome/metacity/FrugalBuild +++ b/source/gnome/metacity/FrugalBuild @@ -2,21 +2,20 @@ # Maintainer: bouleetbil pkgname=metacity -pkgver=2.30.3 -pkgrel=9 +pkgver=2.34.0 +pkgrel=1 pkgdesc="A window manager for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'startup-notification' 'gconf>=2.32.0' 'gnome-themes>=2.30.0' 'libcm' 'gnome-frugalware>=0.7.2' \ - 'zenity>=2.91.0' 'libcanberra-gtk2') + 'zenity>=3.0.0' 'libcanberra-gtk2') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/metacity.schemas') Finclude gnome gnome-scriptlet -source=(${source[@]} $pkgname-2.20.0-frugalware_defaults.patch DisableUselessAlert.diff) +source=(${source[@]} DisableUselessAlert.diff) Fconfopts="$Fconfopts --enable-compositor" -sha1sums=('32848d34473375ca27ef12be9f41e924d8af177d' \ - '1d3929afd1bff03b2bde12c1de1f926cbace683b' \ +sha1sums=('b25add2c1fb0c05babb341bd631c180fd82e7039' \ '7c76fd762b76fc4b4425e87af6f645d4b18b6175') build() { diff --git a/source/gnome/metacity/metacity-2.20.0-frugalware_defaults.patch b/source/gnome/metacity/metacity-2.20.0-frugalware_defaults.patch deleted file mode 100644 index cb08c17..0000000 --- a/source/gnome/metacity/metacity-2.20.0-frugalware_defaults.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff -urN metacity-2.20.0.orig/src/metacity.schemas metacity-2.20.0/src/metacity.schemas ---- metacity-2.20.0.orig/src/metacity.schemas 2007-10-04 22:28:50.000000000 +0100 -+++ metacity-2.20.0/src/metacity.schemas 2007-10-04 22:29:35.000000000 +0100 -@@ -212,7 +212,7 @@ - /apps/metacity/general/theme - metacity - string -- Clearlooks -+ Inverted - - Current theme - -@@ -243,7 +243,7 @@ - /apps/metacity/general/titlebar_font - metacity - string -- Sans Bold 10 -+ DejaVu Sans Bold 13 - - Window title font - -diff -urN metacity-2.20.0.orig/src/metacity.schemas.in metacity-2.20.0/src/metacity.schemas.in ---- metacity-2.20.0.orig/src/metacity.schemas.in 2007-10-04 22:28:50.000000000 +0100 -+++ metacity-2.20.0/src/metacity.schemas.in 2007-10-04 22:29:28.000000000 +0100 -@@ -212,7 +212,7 @@ - /apps/metacity/general/theme - metacity - string -- Clearlooks -+ Inverted - - Current theme - -@@ -243,7 +243,7 @@ - /apps/metacity/general/titlebar_font - metacity - string -- Sans Bold 10 -+ DejaVu Sans Bold 13 - - Window title font - ---- metacity-2.24.0old/src/core/prefs.c 2008-08-18 14:29:06.000000000 +0200 -+++ metacity-2.24.0/src/core/prefs.c 2008-09-29 21:54:35.000000000 +0200 -@@ -1038,8 +1038,8 @@ - * elsewhere that will do everything possible to fallback to an existing theme - * if the one here does not exist. - */ -- titlebar_font = pango_font_description_from_string ("Sans Bold 10"); -- current_theme = g_strdup ("Atlanta"); -+ titlebar_font = pango_font_description_from_string ("DejaVu Sans Bold 13"); -+ current_theme = g_strdup ("Inverted"); - - init_button_layout(); - #endif /* HAVE_GCONF */ -@@ -1365,7 +1365,7 @@ - { - /* Fallback crackrock */ - if (string_value == NULL) -- current_theme = g_strdup ("Atlanta"); -+ current_theme = g_strdup ("Inverted"); - else - current_theme = g_strdup (string_value); - } - From bouleetbil at frogdev.info Tue Apr 5 10:39:41 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:39:41 +0200 (CEST) Subject: [Frugalware-git] gnometesting: mutter-3.0.0-1-x86_64 Message-ID: <20110405083941.B98431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4f282ca6eb27a68f591add76653e29494da6881b commit 4f282ca6eb27a68f591add76653e29494da6881b Author: bouleetbil Date: Tue Apr 5 10:39:39 2011 +0200 mutter-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/mutter/FrugalBuild b/source/gnome/mutter/FrugalBuild index 0b357d2..390b6ac 100644 --- a/source/gnome/mutter/FrugalBuild +++ b/source/gnome/mutter/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: bouleetbil pkgname=mutter -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="A window manager for GNOME (new metacity for gnome3)" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'startup-notification' 'gconf>=2.32.0' 'gnome-themes>=2.32.0' 'libcm' 'gnome-frugalware>=0.7.2' \ - 'zenity>=2.91.90' 'clutter>=1.5.4' 'libcanberra-gtk') + 'zenity>=3.0.0' 'clutter>=1.6.12' 'libcanberra-gtk') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -15,4 +15,4 @@ _F_gnome_schemas=('/etc/gconf/schemas/mutter.schemas') _F_gnome_devel="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-clutter --disable-static --with-gtk=3.0" -sha1sums=('00b1b69673386b833e27da0cc9cba9b73d5167d0') +sha1sums=('60f425c7cae4f54927aec18436b18f3fe7a91948') From bouleetbil at frogdev.info Tue Apr 5 10:49:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:49:27 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-themes-3.0.0-2-x86_64 *fix conflicts Message-ID: <20110405084927.C71D71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=adc99ade5ce7d88f649750d3b4d178e639f2f6c4 commit adc99ade5ce7d88f649750d3b4d178e639f2f6c4 Author: bouleetbil Date: Tue Apr 5 10:49:11 2011 +0200 gnome-themes-3.0.0-2-x86_64 *fix conflicts diff --git a/source/gnome/gnome-themes/FrugalBuild b/source/gnome/gnome-themes/FrugalBuild index 8e90bb7..9afdfd5 100644 --- a/source/gnome/gnome-themes/FrugalBuild +++ b/source/gnome/gnome-themes/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-themes pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Default themes for GNOME" url="http://www.gnome.org/" depends=('gtk+3-engines') @@ -15,8 +15,8 @@ sha1sums=('3e1cde45a1d9e8a92445e7646735e7c64137440a') build() { Fbuild - #Frm usr/share/icons/HighContrast/index.theme - #Frm usr/share/icons/HighContrastInverse/index.theme - #Frm usr/share/themes/HighContrast/index.theme - #Frm usr/share/themes/HighContrastInverse/index.theme + Frm usr/share/icons/HighContrast/index.theme + Frm usr/share/icons/HighContrastInverse/index.theme + Frm usr/share/themes/HighContrast/index.theme + Frm usr/share/themes/HighContrastInverse/index.theme } From bouleetbil at frogdev.info Tue Apr 5 10:57:10 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 10:57:10 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-3.0.0-1-x86_64 Message-ID: <20110405085710.C3D561358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=aab9be9ef4f3d54d1f3757ae700d776db744fcd6 commit aab9be9ef4f3d54d1f3757ae700d776db744fcd6 Author: bouleetbil Date: Tue Apr 5 10:57:08 2011 +0200 gnome-shell-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-shell/FrugalBuild b/source/gnome/gnome-shell/FrugalBuild index ce0624b..1ee9e0f 100644 --- a/source/gnome/gnome-shell/FrugalBuild +++ b/source/gnome/gnome-shell/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: bouleetbil pkgname=gnome-shell -pkgver=2.91.93 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Window management and application launching for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'mutter>=2.91.93' 'gnome-desktop' 'gjs>=0.7' \ +depends=('libxml2>=2.7.8' 'mutter>=3.0.0' 'gnome-desktop' 'gjs>=0.7' \ 'gnome-menus' 'librsvg' 'evolution-data-server' 'gconf' \ 'xulrunner' 'gst-plugins-base' 'pulseaudio' 'gnome-themes-standard' \ - 'gnome-bluetooth' 'gtk+3>=3.0.2' 'telepathy-glib' 'nm-applet' \ + 'gnome-bluetooth' 'gtk+3>=3.0.8' 'telepathy-glib' 'nm-applet' \ 'telepathy-logger>=0.2.8') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ 'gobject-introspection' 'krb5') @@ -24,7 +24,7 @@ Finclude gnome gnome-scriptlet sha1sums=('5d1ae9f3388fbcf347b93f93b03584f226fa1b30') export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/xulrunner/ replaces=('byzanz') -sha1sums=('83cfccc674b13deaccd3a42cb35b8ef2a637beee') +sha1sums=('08cf4943da2335d2130aa1d36261924a1c7da989') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi From bouleetbil at frogdev.info Tue Apr 5 12:02:13 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 12:02:13 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-extensions-2.91.93-2-x86_64 Message-ID: <20110405100213.B13DA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c7a5c99061fd78ea0a8944815259185c0d2e8bfb commit c7a5c99061fd78ea0a8944815259185c0d2e8bfb Author: bouleetbil Date: Tue Apr 5 12:02:12 2011 +0200 gnome-shell-extensions-2.91.93-2-x86_64 *Version bump diff --git a/source/gnome/gnome-shell-extensions/FrugalBuild b/source/gnome/gnome-shell-extensions/FrugalBuild index 382d3c2..19b581e 100644 --- a/source/gnome/gnome-shell-extensions/FrugalBuild +++ b/source/gnome/gnome-shell-extensions/FrugalBuild @@ -3,15 +3,17 @@ pkgname=gnome-shell-extensions pkgver=2.91.93 -pkgrel=1 +pkgrel=2 pkgdesc="Modify and extend GNOME Shell functionality and behavior" -depends=('gnome-shell>=2.91.93') +depends=('gnome-shell>=3.0.0') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ 'gobject-introspection' 'krb5') groups=('gnome') archs=('i686' 'x86_64' 'ppc') -_F_gnome_git="y" +_F_gnome_git="n" Finclude gnome +source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2) +sha1sums=('9301462615f32ffbd52368651e607de49cc3771b') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi @@ -22,6 +24,9 @@ build() { Funpack_scm Fcd $pkgname sh ./autogen.sh + else + Fcd + sh ./autogen.sh fi Fbuild } From bouleetbil at frogdev.info Tue Apr 5 12:24:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 12:24:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: banshee-1.9.6-2-x86_64 *replace broken banshee-community-extensions Message-ID: <20110405102458.00E5B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a619255697a4fd34d972dac729804979e923e7b5 commit a619255697a4fd34d972dac729804979e923e7b5 Author: bouleetbil Date: Tue Apr 5 12:24:50 2011 +0200 banshee-1.9.6-2-x86_64 *replace broken banshee-community-extensions diff --git a/source/gnome-extra/banshee/FrugalBuild b/source/gnome-extra/banshee/FrugalBuild index 87db690..c8a71ba 100644 --- a/source/gnome-extra/banshee/FrugalBuild +++ b/source/gnome-extra/banshee/FrugalBuild @@ -7,7 +7,7 @@ USE_DEVEL=${USE_DEVEL:-"y"} pkgname=banshee _F_archive_name=$pkgname-1 pkgver=1.9.6 -pkgrel=1 +pkgrel=2 pkgdesc="Banshee is a Mono based media player for Gnome" url="http://banshee-project.org" depends=('libxml2>=2.7.8' 'gnome-sharp>=2.24.2' 'ipod-sharp>=0.8.5' 'libgpod-sharp' 'sqlite3' 'hal' 'libmusicbrainz' 'brasero' \ @@ -17,7 +17,7 @@ depends=('libxml2>=2.7.8' 'gnome-sharp>=2.24.2' 'ipod-sharp>=0.8.5' 'libgpod-sha 'gnome-desktop-sharp>=2.24.0-1' 'webkit-sharp' 'gdata-sharp' 'notify-sharp') conflicts=('banshee-official-plugins') provides=('banshee-official-plugins') -replaces=('banshee-official-plugins' 'muine') +replaces=('banshee-official-plugins' 'muine' 'banshee-community-extensions') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Tue Apr 5 12:29:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 12:29:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-applets-2.91.3-7-x86_64 Message-ID: <20110405102937.211191358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b4d2bd9d36b1147c8e36ad8b6181cfb7c5e7b816 commit b4d2bd9d36b1147c8e36ad8b6181cfb7c5e7b816 Author: bouleetbil Date: Tue Apr 5 12:29:31 2011 +0200 gnome-applets-2.91.3-7-x86_64 *Version bump diff --git a/source/gnome/gnome-applets/FrugalBuild b/source/gnome/gnome-applets/FrugalBuild index be036ba..baad373 100644 --- a/source/gnome/gnome-applets/FrugalBuild +++ b/source/gnome/gnome-applets/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-applets pkgver=2.91.3 -pkgrel=6 +pkgrel=7 pkgdesc="Applets for use with the GNOME panel" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gnome-panel>=2.91.0' 'libgtop>=2.28.0' 'libxklavier>=5.0' 'libwnck>=2.28.0' \ @@ -11,7 +11,7 @@ depends=('libxml2>=2.7.8' 'gnome-panel>=2.91.0' 'libgtop>=2.28.0' 'libxklavier>= 'libgnomekbd>=2.32.0' 'gnome-settings-daemon' \ 'libgweather>=2.30.0-2' 'networkmanager') rodepends=('notification-daemon>=0.4.0') -makedepends=('intltool' 'gnome-doc-utils' 'git') +makedepends=('intltool' 'gnome-doc-utils' 'git' 'gnome-common') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/battstat.schemas' @@ -23,11 +23,11 @@ _F_gnome_schemas=('/etc/gconf/schemas/battstat.schemas' '/etc/gconf/schemas/stickynotes.schemas') _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" -_F_gnome_git="y" +_F_gnome_git="n" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-flags --enable-ipv6 --enable-stickynotes --disable-mixer-applet" -source=(${source[@]} README.Frugalware) -sha1sums=('2c0d0245a0e40bd956bebf3c13e644c7548ade44' \ +source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2 README.Frugalware) +sha1sums=('e2bd790ceefc85a6051b40f23231145eaf6fcabe' \ 'c0774a7e94736eeb18aee8cba06bb52fc8a9f144') if [ "$_F_gnome_git" != "n" ]; then @@ -39,6 +39,9 @@ build() { Funpack_scm Fcd $pkgname sh ./autogen.sh + else + Fcd + sh ./autogen.sh fi Fbuild_slice_scrollkeeper Fcd From bouleetbil at frogdev.info Tue Apr 5 14:04:40 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 14:04:40 +0200 (CEST) Subject: [Frugalware-git] gnometesting: rhythmbox-0.13.3-8-x86_64 Message-ID: <20110405120440.C71411358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c7d9be8034982da4a29081b31070756d5e76eac9 commit c7d9be8034982da4a29081b31070756d5e76eac9 Author: bouleetbil Date: Tue Apr 5 14:04:34 2011 +0200 rhythmbox-0.13.3-8-x86_64 *Version bump diff --git a/source/gnome/rhythmbox/FrugalBuild b/source/gnome/rhythmbox/FrugalBuild index b3b33af..f72238e 100644 --- a/source/gnome/rhythmbox/FrugalBuild +++ b/source/gnome/rhythmbox/FrugalBuild @@ -4,14 +4,14 @@ pkgname=rhythmbox pkgver=0.13.3 -pkgrel=7 +pkgrel=8 pkgdesc="A music management application for GNOME" url="http://www.rhythmbox.org/" depends=('nautilus-brasero' 'rarian' 'desktop-file-utils' \ 'totem>=2.90.0' 'gst-plugins-base-oil' 'avahi-glib' 'libnotify' 'libsexy' \ 'libsoup-gnome>=2.32.0' 'gnome-media>=2.90.0' 'dbus-glib>=0.74' 'python>=2.7' \ 'evolution-data-server>=2.90.0' 'gnutls>=2.8' 'libgudev' 'libdmapsharing' 'webkit-gtk3' 'json-glib') -makedepends=('intltool' 'gnome-doc-utils' 'gst-python' 'libgpod>=0.6.0' 'vala' 'gtk-doc') +makedepends=('intltool' 'gnome-doc-utils' 'gst-python' 'libgpod>=0.6.0' 'vala' 'gtk-doc' 'gnome-common') rodepends=('notification-daemon') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -20,14 +20,15 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_devel="y" -_F_gnome_git="y" +_F_gnome_git="n" Finclude gnome-scriptlet gnome +source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2) unset MAKEFLAGS Fconfopts="$Fconfopts --enable-mdns=avahi --with-playback=gstreamer-0-10 --enable-daap --enable-audioscrobbler --enable-python --without-hal \ --disable-vala" #vala support is broken -sha1sums=('1c6e83972dcd7de8fc1a71586843e29092a0c706') +sha1sums=('609c4eb69a03bf39c0c80692e9daf64583127343') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi @@ -47,7 +48,9 @@ build() { sh ./autogen.sh else Fcd + sh ./autogen.sh fi + Fsed "-Werror" "" configure Fbuild Fsplit $pkgname-plugins usr/lib/rhythmbox/plugins Fbuild_gnome_scriptlet From bouleetbil at frogdev.info Tue Apr 5 14:08:03 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 14:08:03 +0200 (CEST) Subject: [Frugalware-git] gnometesting: shotwell-0.9.1-1-x86_64 Message-ID: <20110405120803.B848E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ce0659cb1997c67592100aab25fcc06e077063de commit ce0659cb1997c67592100aab25fcc06e077063de Author: bouleetbil Date: Tue Apr 5 14:08:00 2011 +0200 shotwell-0.9.1-1-x86_64 *Version bump diff --git a/source/gnome-extra/shotwell/FrugalBuild b/source/gnome-extra/shotwell/FrugalBuild index ba7d155..4d65a58 100644 --- a/source/gnome-extra/shotwell/FrugalBuild +++ b/source/gnome-extra/shotwell/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=shotwell -pkgver=0.9.0 +pkgver=0.9.1 pkgrel=1 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" url="http://yorba.org/shotwell/" @@ -17,7 +17,7 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/install/" source=(http://yorba.org/download/shotwell/0.9/$pkgname-$pkgver.tar.bz2) -sha1sums=('640db487296709b1404690a2083346c1e68384d9') +sha1sums=('e3d1b4e175352184a2c46da08f7a6ce53939b534') build() { Fbuild ---with-gconf-schema-file-dir=/etc/schemas From bouleetbil at frogdev.info Tue Apr 5 14:27:32 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 14:27:32 +0200 (CEST) Subject: [Frugalware-git] gnometesting: tomboy-1.6.0-1-x86_64 Message-ID: <20110405122732.AF1521358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9b6465e40d15bff37f5b2c805db4097d9062cefb commit 9b6465e40d15bff37f5b2c805db4097d9062cefb Author: bouleetbil Date: Tue Apr 5 14:27:28 2011 +0200 tomboy-1.6.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/tomboy/FrugalBuild b/source/gnome-extra/tomboy/FrugalBuild index af34451..6028030 100644 --- a/source/gnome-extra/tomboy/FrugalBuild +++ b/source/gnome-extra/tomboy/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=tomboy -pkgver=1.5.2 +pkgver=1.6.0 pkgrel=1 pkgdesc="A Wiki style desktop note-taking application" url="http://www.beatniksoftware.com/tomboy" @@ -18,11 +18,12 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_devel="y" Finclude gnome gnome-scriptlet mono -sha1sums=('da9f6197b6e016e5e0a7b5fd742855309b14556d') +sha1sums=('0785b621af5510e36ddb04ca338ad7d000992d9a') build() { Fmonoexport Fcd + mkdir -p bin || Fdie Fsed 'ndesk-dbus' 'dbus-sharp' configure Fsed 'ndesk-dbus-glib' 'dbus-sharp-glib' configure find Tomboy/ -exec sed -i "s/NDesk.DBus/DBus/g" {} \; From bouleetbil at frogdev.info Tue Apr 5 15:04:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 15:04:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pyclutter-1.3.2-1-x86_64 Message-ID: <20110405130459.977191358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8c42498740be47f2bcaacf7063eb79eebaa9c910 commit 8c42498740be47f2bcaacf7063eb79eebaa9c910 Author: bouleetbil Date: Tue Apr 5 15:04:57 2011 +0200 pyclutter-1.3.2-1-x86_64 *Version bump diff --git a/source/xlib-extra/pyclutter/FrugalBuild b/source/xlib-extra/pyclutter/FrugalBuild index 96da1fa..ac5da1a 100644 --- a/source/xlib-extra/pyclutter/FrugalBuild +++ b/source/xlib-extra/pyclutter/FrugalBuild @@ -2,19 +2,13 @@ # Maintainer: bouleetbil pkgname=pyclutter -pkgver=1.0.2.1 -pkgrel=2 +pkgver=1.3.2 +pkgrel=1 pkgdesc="python bindings for the clutter framework." -depends=('libxml2>=2.7.8' 'clutter>=1.4.0' 'pygtk>=2.16.0-5') +depends=('libxml2>=2.7.8' 'clutter>=1.6.12' 'pygtk>=2.16.0-5') Finclude clutter -source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2) -sha1sums=('b398c9eccf5d08d7dbb6ad3a0ba702bdd6629b57') +sha1sums=('cd78e53a673933d018d0bb9d89acc44789cd9541') Fconfopts="${Fconfopts[@]} --disable-docs" - -build() { - Fcd - sh ./autogen.sh - Fbuild -} +unset MAKEFLAGS # optimization OK From bouleetbil at frogdev.info Tue Apr 5 15:06:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 15:06:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glade3-3.7.3-4-x86_64 *move subkpg to extra Message-ID: <20110405130611.E86361358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f9771690c5e23449a735e68739d20487bce715c1 commit f9771690c5e23449a735e68739d20487bce715c1 Author: bouleetbil Date: Tue Apr 5 15:05:42 2011 +0200 glade3-3.7.3-4-x86_64 *move subkpg to extra diff --git a/source/gnome-extra/glade3/FrugalBuild b/source/gnome-extra/glade3/FrugalBuild index 57848d2..878c702 100644 --- a/source/gnome-extra/glade3/FrugalBuild +++ b/source/gnome-extra/glade3/FrugalBuild @@ -3,7 +3,7 @@ pkgname=glade3 pkgver=3.7.3 -pkgrel=3 +pkgrel=4 pkgdesc="Glade is a GUI builder for GTK+ and Gnome. (VERSION 3)" url="http://glade.gnome.org/" depends=("devhelp>=0.23" "libxml2>=2.7.8") @@ -22,14 +22,14 @@ subpkgs=("${subpkgs[@]}" "libglade3-gnome") subdescs=("${subdescs[@]}" "Widget library gnome for Glade3") subdepends=("${subdepends[@]}" "atk>=1.26.0 libgnomeui>=2.24.1-2 pango>=1.24.4") subrodepends=("${subrodepends[@]}" "libglade3") -subgroups=("${subgroups[@]}" 'gnome') +subgroups=("${subgroups[@]}" 'gnome-extra') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') subpkgs=("${subpkgs[@]}" "libglade3") subdescs=("${subdescs[@]}" "Widget library for Glade3") subdepends=("${subdepends[@]}" "atk>=1.26.0 pango>=1.28.0-2") subrodepends=("${subrodepends[@]}" "") -subgroups=("${subgroups[@]}" 'xlib') +subgroups=("${subgroups[@]}" 'xlib-extra') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') subpkgs=("${subpkgs[@]}" "glade3-doc") From bouleetbil at frogdev.info Tue Apr 5 16:09:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 16:09:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: monodevelop-boo *merged into monodevelop Message-ID: <20110405140937.AE36B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=498f7760bd91fcde878b37f078f829fb7c45d92b commit 498f7760bd91fcde878b37f078f829fb7c45d92b Author: bouleetbil Date: Tue Apr 5 16:09:21 2011 +0200 monodevelop-boo *merged into monodevelop diff --git a/source/gnome-extra/monodevelop-boo/FrugalBuild b/source/gnome-extra/monodevelop-boo/FrugalBuild deleted file mode 100644 index 83a2f16..0000000 --- a/source/gnome-extra/monodevelop-boo/FrugalBuild +++ /dev/null @@ -1,19 +0,0 @@ -# Compiling time: 0.04 SBU -# Maintainer: bouleetbil - -pkgname=monodevelop-boo -pkgver=2.4 -pkgrel=1 -pkgdesc="Boo Extension for MonoDevelop" -url="http://www.mono-project.com/" -depends=('monodevelop>=2.2' 'boo' 'gtksourceview-sharp') -makedepends=('intltool' 'perl-xml-parser') -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -up2date="Flasttar http://www.go-mono.com/sources-stable/" -source=(http://ftp.novell.com/pub/mono/sources/$pkgname/$pkgname-$pkgver.tar.bz2) -options=('scriptlet') -_F_mono_aot=0 -Finclude mono -sha1sums=('18aa5f4f1eca6415593b0275bebcaa960a096e71') -Fconfopts="$Fconfopts --config=RELEASE --prefix=/usr" From bouleetbil at frogdev.info Tue Apr 5 16:12:10 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 16:12:10 +0200 (CEST) Subject: [Frugalware-git] gnometesting: atk-2.0.0-1-x86_64 Message-ID: <20110405141210.BD9F21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7c323b191dc8b46551f80214fd3ebb5a716628b3 commit 7c323b191dc8b46551f80214fd3ebb5a716628b3 Author: bouleetbil Date: Tue Apr 5 16:12:08 2011 +0200 atk-2.0.0-1-x86_64 *Version bump diff --git a/source/lib/atk/FrugalBuild b/source/lib/atk/FrugalBuild index 2d85fd9..40de7d9 100644 --- a/source/lib/atk/FrugalBuild +++ b/source/lib/atk/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: bouleetbil pkgname=atk -pkgver=1.91.92 +pkgver=2.0.0 pkgrel=1 pkgdesc="A library of accessibility functions" url='http://www.gtk.org/' -depends=('glib2>=2.26.0') +depends=('glib2>=2.28.0') makedepends=('gobject-introspection>=0.9.6') groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('3fa2eb9d9259e96e8f79f307ec170b593303e908') +sha1sums=('a11205c094ce68cbe3ee7dd92163e08e00c34cce') Fconfopts="$Fconfopts --disable-gtk-doc" # optimization OK From bouleetbil at frogdev.info Tue Apr 5 16:24:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 16:24:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: at-spi2-core-2.0.0-1-x86_64 *new package Message-ID: <20110405142422.C2E4D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=fac730a62951c8b1b363ec0f3e845f87814d0e14 commit fac730a62951c8b1b363ec0f3e845f87814d0e14 Author: bouleetbil Date: Tue Apr 5 16:24:16 2011 +0200 at-spi2-core-2.0.0-1-x86_64 *new package diff --git a/source/gnome-extra/at-spi2-core/FrugalBuild b/source/gnome-extra/at-spi2-core/FrugalBuild new file mode 100644 index 0000000..3560cca --- /dev/null +++ b/source/gnome-extra/at-spi2-core/FrugalBuild @@ -0,0 +1,16 @@ +# Compiling Time: 0.52 SBU +# Maintainer: bouleetbil + +pkgname=at-spi2-core +pkgver=2.0.0 +pkgrel=1 +pkgdesc="Gnome Accessibility Toolkit" +depends=('atk' 'dbus-glib' 'gtk+2') +makedepends=('perl-xml-parser' 'intltool' 'libxtst') +groups=('gnome-extra') +archs=('i686' 'x86_64' 'ppc') +Finclude gnome +Fconfopts="$Fconfopts --disable-gtk-doc" +sha1sums=('db735c2fddc5e943cc02dc0aa755fe7930018c01') + +# optimization OK From bouleetbil at frogdev.info Tue Apr 5 16:33:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 16:33:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: at-spi2-atk-2.0.0-1-x86_64 Message-ID: <20110405143308.1E8E91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ed7c4a7d66ef3fedc0606b23bd6449b5ca65f1ae commit ed7c4a7d66ef3fedc0606b23bd6449b5ca65f1ae Author: bouleetbil Date: Tue Apr 5 16:33:06 2011 +0200 at-spi2-atk-2.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/at-spi2-atk/FrugalBuild b/source/gnome-extra/at-spi2-atk/FrugalBuild index b8f22cb..a01f347 100644 --- a/source/gnome-extra/at-spi2-atk/FrugalBuild +++ b/source/gnome-extra/at-spi2-atk/FrugalBuild @@ -2,23 +2,15 @@ # Maintainer: bouleetbil pkgname=at-spi2-atk -pkgver=1.91.91 +pkgver=2.0.0 pkgrel=1 pkgdesc="Gnome Accessibility Toolkit" -depends=('atk' 'dbus-glib' 'gconf' 'gtk+3>=3.0.3') +depends=('atk' 'dbus-glib' 'at-spi2-core') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -_F_gnome_schemas=('/etc/gconf/schemas/at-spi2.schemas') -Finclude gnome gnome-scriptlet +Finclude gnome Fconfopts="$Fconfopts --disable-gtk-doc" -sha1sums=('abb164587abac414c41d85d9d9d5d910a2a95071') - -build() { - Fbuild - #provided by at-spi for gtk+2 - Frm usr/lib/gtk-2.0 - Fbuild_gnome_scriptlet -} +sha1sums=('101157bc83c67a20d41d68210967d1bd588d3ca3') # optimization OK From devil505linux at gmail.com Tue Apr 5 18:13:31 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 5 Apr 2011 18:13:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bilboplanet-1.0.5-1-i686 * version bump Message-ID: <20110405161331.199181358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9ff630e1eede91e56ebde949042d6be9ad5809a5 commit 9ff630e1eede91e56ebde949042d6be9ad5809a5 Author: Devil505 Date: Tue Apr 5 18:13:10 2011 +0200 bilboplanet-1.0.5-1-i686 * version bump diff --git a/source/network-extra/bilboplanet/FrugalBuild b/source/network-extra/bilboplanet/FrugalBuild index 08b0487..5005be1 100644 --- a/source/network-extra/bilboplanet/FrugalBuild +++ b/source/network-extra/bilboplanet/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=bilboplanet -pkgver=1.0.4 +pkgver=1.0.5 pkgrel=1 pkgdesc="BilboPlanet's project is A Rss feed agregator free software write in PHP." url="http://www.bilboplanet.com" @@ -11,7 +11,7 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/downloads/" source=($url/downloads/$pkgname-$pkgver.tar.bz2) -sha1sums=('5de02b29c54c101c10457749c2aa41d5f80bead2') +sha1sums=('a5d156eab35bf46c7bea392827a89abcc3b1d77d') build() { From lorddarthfener at gmail.com Tue Apr 5 19:37:43 2011 From: lorddarthfener at gmail.com (Melko) Date: Tue, 5 Apr 2011 19:37:43 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kaffeine-1.2.1-1-i686 Message-ID: <20110405173743.406341358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7133b67c6e0e85987a236348485f9a638e83bfe1 commit 7133b67c6e0e85987a236348485f9a638e83bfe1 Author: Melko Date: Tue Apr 5 19:37:00 2011 +0200 kaffeine-1.2.1-1-i686 * version bump diff --git a/source/kde/kaffeine/FrugalBuild b/source/kde/kaffeine/FrugalBuild index 1326369..97d0d69 100644 --- a/source/kde/kaffeine/FrugalBuild +++ b/source/kde/kaffeine/FrugalBuild @@ -1,9 +1,9 @@ -# Compiling Time: 0.34 SBU +# Compiling Time: 0.40 SBU # Maintainer: Melko # Contributor: VMiklos pkgname=kaffeine -pkgver=1.1 +pkgver=1.2.1 pkgrel=1 pkgdesc="Kaffeine is full featured Media Player for KDE4." Finclude sourceforge kde @@ -13,6 +13,6 @@ groups=('kde') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') _F_sourceforge_ext=".tar.gz" -sha1sums=('8c07f5f0a9bf6ede0e8997d93153a924e2407b71') +sha1sums=('8545690a7e7217946169eaea265ee1a008200f10') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 20:03:58 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 20:03:58 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-extensions-3.0.0-1-x86_64 Message-ID: <20110405180358.5769F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=6b4eb92e991a2f0b5785f3f2eaef41f225c42c2d commit 6b4eb92e991a2f0b5785f3f2eaef41f225c42c2d Author: bouleetbil Date: Tue Apr 5 20:03:53 2011 +0200 gnome-shell-extensions-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-shell-extensions/FrugalBuild b/source/gnome/gnome-shell-extensions/FrugalBuild index 19b581e..486a0b7 100644 --- a/source/gnome/gnome-shell-extensions/FrugalBuild +++ b/source/gnome/gnome-shell-extensions/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-shell-extensions -pkgver=2.91.93 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="Modify and extend GNOME Shell functionality and behavior" depends=('gnome-shell>=3.0.0') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ @@ -13,7 +13,7 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_git="n" Finclude gnome source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2) -sha1sums=('9301462615f32ffbd52368651e607de49cc3771b') +sha1sums=('37fa75992e4a1de934e04877272774916810dcc3') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi From bouleetbil at frogdev.info Tue Apr 5 20:24:10 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 20:24:10 +0200 (CEST) Subject: [Frugalware-git] gnometesting: at-spi *replace by at-spi2-atk Message-ID: <20110405182410.A39A31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bc15e4ec42c27b0ab6dd9125596b4d430c005654 commit bc15e4ec42c27b0ab6dd9125596b4d430c005654 Author: bouleetbil Date: Tue Apr 5 20:16:52 2011 +0200 at-spi *replace by at-spi2-atk diff --git a/source/gnome-extra/at-spi/FrugalBuild b/source/gnome-extra/at-spi/FrugalBuild deleted file mode 100644 index 50fe4f4..0000000 --- a/source/gnome-extra/at-spi/FrugalBuild +++ /dev/null @@ -1,18 +0,0 @@ -# Compiling Time: 0.52 SBU -# Maintainer: bouleetbil -# Contributor: Christian Hamar alias krix - -pkgname=at-spi -pkgver=1.32.0 -pkgrel=3 -pkgdesc="The Gnome Accessibility Toolkit" -depends=('libxml2>=2.7.8' 'gtk+2>=2.22.0' 'gail' 'libbonobo>=2.22.0' 'libxtst' 'libxevie' 'gconf') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -Finclude gnome -url="http://developer.gnome.org/projects/gap/" -Fconfopts="$Fconfopts --disable-gtk-doc" -sha1sums=('0cc1403dde2f62f7254b32ff305984ed091cc9c7') - -# optimization OK From bouleetbil at frogdev.info Tue Apr 5 20:24:10 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 20:24:10 +0200 (CEST) Subject: [Frugalware-git] gnometesting: at-spi2-atk-2.0.0-2-x86_64 *replace at-spi Message-ID: <20110405182410.B535F1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e46ac40096ce62a63caad021441af7de713da9b7 commit e46ac40096ce62a63caad021441af7de713da9b7 Author: bouleetbil Date: Tue Apr 5 20:23:52 2011 +0200 at-spi2-atk-2.0.0-2-x86_64 *replace at-spi diff --git a/source/gnome-extra/at-spi2-atk/FrugalBuild b/source/gnome-extra/at-spi2-atk/FrugalBuild index a01f347..ef81c3a 100644 --- a/source/gnome-extra/at-spi2-atk/FrugalBuild +++ b/source/gnome-extra/at-spi2-atk/FrugalBuild @@ -3,7 +3,7 @@ pkgname=at-spi2-atk pkgver=2.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Gnome Accessibility Toolkit" depends=('atk' 'dbus-glib' 'at-spi2-core') makedepends=('perl-xml-parser' 'intltool') @@ -12,5 +12,8 @@ archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --disable-gtk-doc" sha1sums=('101157bc83c67a20d41d68210967d1bd588d3ca3') +replaces=('at-spi') +provides=('at-spi') +conflicts=('at-spi') # optimization OK From bouleetbil at frogdev.info Tue Apr 5 21:14:06 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 5 Apr 2011 21:14:06 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+2-engines-equinox-1.30-3-x86_64 *fix checksum Message-ID: <20110405191406.40F271358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=28cf057964fc1bc478fb11a781809e211b546941 commit 28cf057964fc1bc478fb11a781809e211b546941 Author: bouleetbil Date: Tue Apr 5 21:13:53 2011 +0200 gtk+2-engines-equinox-1.30-3-x86_64 *fix checksum diff --git a/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild b/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild index 359d319..1adbc15 100644 --- a/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild +++ b/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild @@ -13,7 +13,7 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_look_id="121881" Finclude gnome-look source=(http://gnome-look.org/CONTENT/content-files/$_F_gnome_look_id-equinox-${pkgver}.tar.bz2) -sha1sums=('4dd568b5f9bf55f1760081e1534dcb0c9fe9a82c') +sha1sums=('3256ffaf3e0770029bbc0cd7806ad34dab1bb4fe') build() { tar xzf equinox-gtk-engine.tar.gz || Fdie From achevaux at gmail.com Tue Apr 5 21:28:36 2011 From: achevaux at gmail.com (centuri0) Date: Tue, 5 Apr 2011 21:28:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: choqok-1.1-1-i686 Message-ID: <20110405192836.239721358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=890698caeda044aaa9113ba803389b14866a030b commit 890698caeda044aaa9113ba803389b14866a030b Author: centuri0 Date: Tue Apr 5 21:28:14 2011 +0200 choqok-1.1-1-i686 * version bump * fixed source (Finclude sourceforge) diff --git a/source/kde-extra/choqok/FrugalBuild b/source/kde-extra/choqok/FrugalBuild index 990c8bf..1fa4ebb 100644 --- a/source/kde-extra/choqok/FrugalBuild +++ b/source/kde-extra/choqok/FrugalBuild @@ -1,21 +1,21 @@ -# Compiling Time: 0.98 SBU +# Compiling Time: 0.70 SBU # Maintainer: exceed pkgname=choqok -pkgver=1.0 +pkgver=1.1 pkgrel=1 pkgdesc="A Twitter/identi.ca/laconica client for KDE 4." url="http://choqok.gnufolks.org" -depends=('kdelibs>=$_F_kde_ver' 'kdelibs-compiletime>=$_F_kde_ver' \ - 'libqtdbus>=$_F_qt_ver' 'libqtgui>=$_F_qt_ver' 'libgcc' 'libice' \ +_F_sourceforge_ext=".tar.bz2" +depends=("kdelibs>=$_F_kde_ver" "kdelibs-compiletime>=$_F_kde_ver" \ + "libqtdbus>=$_F_qt_ver" "libqtgui>=$_F_qt_ver" 'libgcc' 'libice' \ 'libxext' 'libxrender' 'util-linux-ng' 'qca-ossl' 'qjson' 'qoauth') -makedepends=('automoc4' 'docbook-xsl' 'libdbusmenu-qt>=0.7.0') -Finclude kde +makedepends=('automoc4' 'docbook-xsl' "libdbusmenu-qt>=0.7.0") +Finclude kde sourceforge groups=('kde-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download/|grep -m1 '.tar.bz2'| sed 's/.*${pkgname}.//;s/.tar.bz2//;s/ \[.*//;'" -source=(http://choqok.gnufolks.org/pkgs/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('f50345142525a182dc081b23617551ed6c44fea2') +sha1sums=('e29c22279a861546b688539eb30de35edf66e29f') build() { CMake_build From vmiklos at frugalware.org Tue Apr 5 23:34:26 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:34:26 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: iptraf-3.0.0-3-i686 Message-ID: <20110405213426.539251358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=73d52e4587a29be9e7e375e7c4f3a59159c21c9d commit 73d52e4587a29be9e7e375e7c4f3a59159c21c9d Author: Miklos Vajna Date: Tue Apr 5 23:21:12 2011 +0200 iptraf-3.0.0-3-i686 - added tmpfiles.d config diff --git a/source/network/iptraf/FrugalBuild b/source/network/iptraf/FrugalBuild index abaaa03..fd40c3d 100644 --- a/source/network/iptraf/FrugalBuild +++ b/source/network/iptraf/FrugalBuild @@ -3,7 +3,7 @@ pkgname=iptraf pkgver=3.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="Interactive Colorful IP LAN Monitor" url="http://iptraf.seul.org/" depends=('glibc') @@ -30,7 +30,10 @@ build() { Fmkdir /etc/iptraf Fmkdir /var/log/iptraf - Fmkdir /var/run/iptraf + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/iptraf.conf << EOF +d $Flocalstatedir/run/iptraf 0755 root root - +EOF Fmkdir /usr/sbin /usr/man/man8 Fmkdir /usr/share/pixmaps Fmkdir /usr/share/doc/$pkgname-$pkgver/html From vmiklos at frugalware.org Tue Apr 5 23:38:00 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:38:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: lastfmsubmitd-1.0.6-3-i686 Message-ID: <20110405213800.EEB7A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff1c6192ce6b241e660da30a2fcfdf487577c16d commit ff1c6192ce6b241e660da30a2fcfdf487577c16d Author: Miklos Vajna Date: Tue Apr 5 23:25:34 2011 +0200 lastfmsubmitd-1.0.6-3-i686 - added tmpfiles.d config diff --git a/source/multimedia-extra/lastfmsubmitd/FrugalBuild b/source/multimedia-extra/lastfmsubmitd/FrugalBuild index 253cb8f..8aecc13 100644 --- a/source/multimedia-extra/lastfmsubmitd/FrugalBuild +++ b/source/multimedia-extra/lastfmsubmitd/FrugalBuild @@ -3,7 +3,7 @@ pkgname=lastfmsubmitd pkgver=1.0.6 -pkgrel=2 +pkgrel=3 pkgdesc="A Last.fm client for MPD, implemented in Python." url="http://www.red-bean.com/decklin/lastfmsubmitd/" rodepends=('procps') @@ -34,7 +34,10 @@ build() Frcd2 Frcd2 lastmp Fmkdir var/log/lastfm - Fmkdir var/run/lastfm + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/lastfm.conf << EOF +d $Flocalstatedir/run/lastfm 0755 root root - +EOF Fmkdir var/spool/lastfm touch $Fdestdir/var/log/lastfm/lastfm.log From vmiklos at frugalware.org Tue Apr 5 23:44:45 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:44:45 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libinfinity-0.5.0-2-i686 Message-ID: <20110405214445.53D671358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a8f537625351f3ef15a4733cf2ed123b0218f7c commit 8a8f537625351f3ef15a4733cf2ed123b0218f7c Author: Miklos Vajna Date: Tue Apr 5 23:32:10 2011 +0200 libinfinity-0.5.0-2-i686 - added tmpfiles.d config diff --git a/source/lib-extra/libinfinity/FrugalBuild b/source/lib-extra/libinfinity/FrugalBuild index 43a93d7..211481c 100644 --- a/source/lib-extra/libinfinity/FrugalBuild +++ b/source/lib-extra/libinfinity/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libinfinity pkgver=0.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="libinfinity is an implementation of the Infinote protocol written in GObject-based C" url="http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity" depends=('glib2' 'libgsasl>=1.6.0' 'libxml' 'gnutls') @@ -14,4 +14,14 @@ up2date="lynx -dump http://releases.0x539.de/libinfinity/ | Flasttar" source=(http://releases.0x539.de/libinfinity/$pkgname-$pkgver.tar.gz) sha1sums=('f048aa9e71274ad5907c5441a08ce8e214b078c2') +build() +{ + Fbuild + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/$pkgname.conf << EOF +d $Flocalstatedir/run/infinoted-${pkgver%%.?} 0755 root root - +EOF +} + # optimization OK From vmiklos at frugalware.org Tue Apr 5 23:48:51 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:48:51 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: logcheck-1.2.45-2-i686 Message-ID: <20110405214851.91CE61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b9a237722229f224cefff3b621fb7afb6e23c126 commit b9a237722229f224cefff3b621fb7afb6e23c126 Author: Miklos Vajna Date: Tue Apr 5 23:36:25 2011 +0200 logcheck-1.2.45-2-i686 - added tmpfiles.d config diff --git a/source/apps-extra/logcheck/FrugalBuild b/source/apps-extra/logcheck/FrugalBuild index 04b3440..f3df8a4 100644 --- a/source/apps-extra/logcheck/FrugalBuild +++ b/source/apps-extra/logcheck/FrugalBuild @@ -3,7 +3,7 @@ pkgname=logcheck pkgver=1.2.45 -pkgrel=1 +pkgrel=2 pkgdesc="allow a system administrator to view the logfiles under their control" url="http://logcheck.org/" groups=('apps-extra') @@ -16,6 +16,11 @@ build() { Fcd DESTDIR=$Fdestdir make install - chown -R 113 $Fdestdir/{etc,var/l{ock,ib}}/logcheck + chown -R 113 $Fdestdir/{etc,var/lib}/logcheck + Frm /var/lock + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/logcheck.conf << EOF +d $Flocalstatedir/lock/logcheck 0755 logcheck root - +EOF } sha1sums=('9a5dd3ca84f03bb8827e1332ceb3d0cbdf47b475') From vmiklos at frugalware.org Tue Apr 5 23:50:49 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:50:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: openct-0.6.20-2-i686 Message-ID: <20110405215049.D1F3A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ae641177818ae36d00b898332064e1979e517076 commit ae641177818ae36d00b898332064e1979e517076 Author: Miklos Vajna Date: Tue Apr 5 23:38:20 2011 +0200 openct-0.6.20-2-i686 - added tmpfiles.d config diff --git a/source/apps-extra/openct/FrugalBuild b/source/apps-extra/openct/FrugalBuild index 06a4971..f321170 100644 --- a/source/apps-extra/openct/FrugalBuild +++ b/source/apps-extra/openct/FrugalBuild @@ -3,7 +3,7 @@ pkgname=openct pkgver=0.6.20 -pkgrel=1 +pkgrel=2 pkgdesc="Library and tools for accessing smart card terminals." url="http://www.opensc-project.org/openct/wiki/WikiStart" depends=('libtool' 'glibc>=2.8-4' 'libusb' 'udev') # hal if found @@ -25,8 +25,11 @@ build() Ffilerel etc/openct.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-openct.fdi Fexerel etc/openct.hald /usr/bin/hald-addon-openct Ffilerel etc/openct.conf /etc/openct.conf.sample - Fmkdir var/run/openct Frcd2 + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/openct.conf << EOF +d $Flocalstatedir/run/openct 0755 root root - +EOF } # optimization OK From vmiklos at frugalware.org Tue Apr 5 23:53:37 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 5 Apr 2011 23:53:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: p3scan-2.3.2-3-i686 Message-ID: <20110405215337.4007B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0093df701fbf1219c9e24f2fa96db36b9a1be3a7 commit 0093df701fbf1219c9e24f2fa96db36b9a1be3a7 Author: Miklos Vajna Date: Tue Apr 5 23:41:05 2011 +0200 p3scan-2.3.2-3-i686 - added tmpfiles.d config diff --git a/source/network-extra/p3scan/FrugalBuild b/source/network-extra/p3scan/FrugalBuild index f3ab446..707a80a 100644 --- a/source/network-extra/p3scan/FrugalBuild +++ b/source/network-extra/p3scan/FrugalBuild @@ -3,7 +3,7 @@ pkgname=p3scan pkgver=2.3.2 -pkgrel=2 +pkgrel=3 pkgdesc="This is a full-transparent proxy-server for email clients" Finclude sourceforge url="http://p3scan.sourceforge.net/" @@ -27,6 +27,11 @@ build() Fln p3scan-en.mail /etc/p3scan/p3scan.mail Fdoc README.frugalware Frcd2 + Frm /var/run + Fmkdir /etc/tmpfiles.d + cat > $Fdestdir/etc/tmpfiles.d/p3scan.conf << EOF +d $Flocalstatedir/run/p3scan 0755 mail mail - +EOF } # optimization OK From vmiklos at frugalware.org Wed Apr 6 00:11:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 00:11:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: systemd-23-1-i686 Message-ID: <20110405221115.9AE511358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=078b11fdb8ed53e364173a494441b56fbe7a9d9a commit 078b11fdb8ed53e364173a494441b56fbe7a9d9a Author: Miklos Vajna Date: Tue Apr 5 23:58:10 2011 +0200 systemd-23-1-i686 - version bump - prefdm.service is now in upstream - introducing the /run tmpfs as a replacement for /var/run (which can be now mounted before /var is ready) diff --git a/source/base/systemd/FrugalBuild b/source/base/systemd/FrugalBuild index d38324e..45433a8 100644 --- a/source/base/systemd/FrugalBuild +++ b/source/base/systemd/FrugalBuild @@ -7,8 +7,8 @@ USE_TCP=${USE_TCP:-"n"} USE_GUI=${USE_GUI:-"y"} pkgname=systemd -pkgver=20 -pkgrel=2 +pkgver=23 +pkgrel=1 pkgdesc="A System and Service Manager" url="http://www.freedesktop.org/wiki/Software/systemd" depends=('dbus' 'udev' 'pam' 'coreutils' 'libcap' 'sysvinit-initscripts' 'sysvinit-tools') @@ -16,10 +16,9 @@ makedepends=('vala' 'docbook-xsl>=1.73.0-2' 'docbook-xml') options=('scriptlet') up2date="Flasttar http://www.freedesktop.org/software/$pkgname" source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.bz2 \ - console.conf prefdm.service) -sha1sums=('89ebb9c96e8451b0e52ec0d20291aefd51d85f6f' \ - 'abaa5c83d5adf2c5be188ce0de488bfa2b5a4505' \ - 'fdb7dc79f5a0d120e722c152f956a841667fe011') + console.conf) +sha1sums=('43942b27c26ae1f4424f6645de9f49d936488438' \ + 'abaa5c83d5adf2c5be188ce0de488bfa2b5a4505') if Fuse $USE_CRYPTSETUP; then depends=("${depends[@]}" 'cryptsetup-luks') @@ -79,9 +78,6 @@ build() Fsed '"quiet"' '"nosystemd"' src/main.c # we don't have auditd Fsed 'auditd.service ' '' units/systemd-update-utmp-{runlevel,shutdown}.service.in - # our syslog implementations provide an lsb header, so this is - # not needed - Fsed '\(After=@SPECIAL_SYSLOG_SERVICE@\)' '#\1' units/syslog.target.in Fpatchall Fautoreconf # force rebuild of vala files with our libnotify @@ -111,11 +107,6 @@ build() Frm etc/systemd/system/*.target.wants - #don't have tmpfs on /var/run, /var/lock and /media - Frm lib/systemd/system/local-fs.target.wants/var-run.mount - Frm lib/systemd/system/local-fs.target.wants/var-lock.mount - Frm lib/systemd/system/local-fs.target.wants/media.mount - # support for this is disabled in the kernel Frm /lib/systemd/system/dev-hugepages.automount Frm /lib/systemd/system/dev-hugepages.mount @@ -130,9 +121,7 @@ build() Fsed " getty.target.wants/getty at tty6.service" "$s" $Fdestdir/lib/systemd/system/getty at .service # /etc/sysconfig/desktop compatibility - Ffile /lib/systemd/system/prefdm.service - Fln prefdm.service /lib/systemd/system/display-manager.service - Fln ../prefdm.service /lib/systemd/system/graphical.target.wants/prefdm.service + Fln ../display-manager.service /lib/systemd/system/graphical.target.wants/display-manager.service # we have runlevel 4 as the x11 target, not 5 Fln multi-user.target /lib/systemd/system/runlevel5.target diff --git a/source/base/systemd/prefdm.service b/source/base/systemd/prefdm.service deleted file mode 100644 index 849506c..0000000 --- a/source/base/systemd/prefdm.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Display Manager -After=syslog.target local.service systemd-user-sessions.service - -Conflicts=splashy-quit.service -After=splashy-quit.service - -[Service] -ExecStart=/etc/rc.d/rc.4 -Restart=always -RestartSec=0 From vmiklos at frugalware.org Wed Apr 6 00:38:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 00:38:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: util-linux-2.19-3-i686 Message-ID: <20110405223858.7EA111358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=23771fe539345062a33798a4a4683a3c43a2fef6 commit 23771fe539345062a33798a4a4683a3c43a2fef6 Author: Miklos Vajna Date: Wed Apr 6 00:25:21 2011 +0200 util-linux-2.19-3-i686 - drop no longer necessary rc.bootclean diff --git a/source/base/util-linux/FrugalBuild b/source/base/util-linux/FrugalBuild index d96c4bd..3bb0aa0 100644 --- a/source/base/util-linux/FrugalBuild +++ b/source/base/util-linux/FrugalBuild @@ -3,7 +3,7 @@ pkgname=util-linux pkgver=2.19 -pkgrel=2 +pkgrel=3 pkgdesc="Miscellaneous system utilities for Linux" url="http://www.kernel.org/pub/linux/utils/util-linux" backup=('etc/sysconfig/console' 'etc/sysconfig/numlock') @@ -17,11 +17,11 @@ archs=('i686' 'x86_64' 'ppc' 'arm') up2date="lynx -dump 'http://git.kernel.org/?p=utils/util-linux/util-linux.git' |grep 'release v'|sed 's/.* .*v\(.*\) .*release .*/\1/'|grep -m1 -v 'rc'" # see bzr for more description on ${pkgver%%.?} source=($url/v${pkgver%%.?}/util-linux-$pkgver.tar.bz2 \ - frugalwaregetty numlock rc.{bootclean,console,mount,rmount,swap,time} \ - rc.bootclean-{de,hu}.po rc.mount-{de,hu}.po rc.rmount-{de,hu}.po \ + frugalwaregetty numlock rc.{console,mount,rmount,swap,time} \ + rc.mount-{de,hu}.po rc.rmount-{de,hu}.po \ rc.swap-{de,hu}.po rc.time-{de,hu}.po \ README.Frugalware) -signatures=($source.sign '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '') +signatures=($source.sign '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '') subpkgs=("${subpkgs[@]}" "libblkid") subdescs=("${subdescs[@]}" 'Block device id library') @@ -60,7 +60,7 @@ build() { Fmv /sbin/raw /usr/bin/raw # Init scripts. - for i in bootclean mount rmount swap + for i in mount rmount swap do Frcd2 $i done diff --git a/source/base/util-linux/pot/rc.bootclean.pot b/source/base/util-linux/pot/rc.bootclean.pot deleted file mode 100644 index 8442311..0000000 --- a/source/base/util-linux/pot/rc.bootclean.pot +++ /dev/null @@ -1,21 +0,0 @@ -# rc.bootclean. -# Copyright (C) YEAR THE rc.bootclean'S COPYRIGHT HOLDER -# This file is distributed under the same license as the rc.bootclean package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: rc.bootclean\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-14 19:25+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: rc.bootclean:18 -msgid "Cleaning /tmp, /var/lock, /var/run" -msgstr "" diff --git a/source/base/util-linux/rc.bootclean b/source/base/util-linux/rc.bootclean deleted file mode 100644 index 7b1c04c..0000000 --- a/source/base/util-linux/rc.bootclean +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash -### BEGIN INIT INFO -# Default-Start: S -### END INIT INFO - -# (c) 2005 Marcus Habermehl -# (c) 2005 Laszlo Dvornik -# rc.bootclean for Frugalware -# distributed under GPL License - -# chkconfig: - 00 00 -# description: Clean /tmp, /var/run and /var/lock. - -source /lib/initscripts/functions -TEXTDOMAIN=bootclean -TEXTDOMAINDIR=/lib/initscripts/messages - -actions=(start stop) - -rc_start() -{ - msg $"Cleaning /tmp, /var/lock, /var/run" - if grep -q 'tmpfs /tmp' /proc/mounts; then - # /tmp is tmpfs, then we need to create two special dirs for X - install -d -m1777 /tmp/.ICE-unix - install -d -m1777 /tmp/.X11-unix - else - EXCEPT='! -name . - ! ( -path ./lost+found -uid 0 ) - ! ( -path ./quota.user -uid 0 ) - ! ( -path ./aquota.user -uid 0 ) - ! ( -path ./quota.group -uid 0 ) - ! ( -path ./aquota.group -uid 0 ) - ! ( -path ./.journal -uid 0 ) - ! ( -path ./.clean -uid 0 ) - ! ( -path ./.ICE-unix -uid 0 ) - ! ( -path ./.X11-unix -uid 0 ) - ! ( -path './...security*' -uid 0 )' - - ( if cd /tmp && [ "`find . -maxdepth 0 -perm -002`" = "." ]; then - # First remove all old files. - find . -depth -xdev $EXCEPT \ - ! -type d -print0 | xargs -0r rm -f - # And then all empty directories. - find . -depth -xdev $EXCEPT \ - -type d -empty -exec rmdir \{\} \; - rm -f .X*-lock - fi ) - fi - - ( cd /var/lock && find . ! -type d -exec rm -f -- {} \; ) - - ( cd /var/run && \ - find . ! -type d ! -name utmp ! -name innd.pid \ - -exec rm -f -- {} \; ) - ok $? -} - -rc_stop() -{ - /bin/true -} - -rc_exec $1 - -# vim: ft=sh diff --git a/source/base/util-linux/rc.bootclean-de.po b/source/base/util-linux/rc.bootclean-de.po deleted file mode 100644 index 56fb468..0000000 --- a/source/base/util-linux/rc.bootclean-de.po +++ /dev/null @@ -1,21 +0,0 @@ -# rc.bootclean. -# Copyright (C) 2005 THE rc.bootclean'S COPYRIGHT HOLDER -# This file is distributed under the same license as the rc.bootclean package. -# Marcus Habermehl , 2005. -# -msgid "" -msgstr "" -"Project-Id-Version: rc.bootclean\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-14 19:25+0100\n" -"PO-Revision-Date: 2005-11-14 19:28+0100\n" -"Last-Translator: Marcus Habermehl \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: rc.bootclean:18 -msgid "Cleaning /tmp, /var/lock, /var/run" -msgstr "Leere /tmp, /var/lock und /var/run" diff --git a/source/base/util-linux/rc.bootclean-hu.po b/source/base/util-linux/rc.bootclean-hu.po deleted file mode 100644 index 288c8ff..0000000 --- a/source/base/util-linux/rc.bootclean-hu.po +++ /dev/null @@ -1,21 +0,0 @@ -# rc.bootclean. -# Copyright (C) 2005 THE rc.bootclean'S COPYRIGHT HOLDER -# This file is distributed under the same license as the rc.bootclean package. -# Marcus Habermehl , 2005. -# -msgid "" -msgstr "" -"Project-Id-Version: rc.bootclean\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-14 19:25+0100\n" -"PO-Revision-Date: 2005-11-14 19:28+0100\n" -"Last-Translator: Marcus Habermehl \n" -"Language-Team: Hungarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-2\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: rc.bootclean:18 -msgid "Cleaning /tmp, /var/lock, /var/run" -msgstr "A /tmp, /var/lock, /var/run tiszt?t?sa" diff --git a/source/base/util-linux/util-linux.install b/source/base/util-linux/util-linux.install index 89bd4dd..07252f3 100644 --- a/source/base/util-linux/util-linux.install +++ b/source/base/util-linux/util-linux.install @@ -4,7 +4,6 @@ post_install() { ln -sf ../rc.mount S16rc.mount ln -sf ../rc.swap S17rc.swap [ "`uname -m`" != "ppc" ] && ln -sf ../rc.time S18rc.time - ln -sf ../rc.bootclean S19rc.bootclean [ "`type -p chkconfig`" ] && chkconfig --add rc.console [ "`type -p chkconfig`" ] && chkconfig --add rc.rmount [ "`type -p chkconfig`" ] && chkconfig --add rc.swap @@ -19,6 +18,7 @@ post_upgrade() { echo -n "generating the top-level Info node... " mkinfodir /usr/share/info > /usr/share/info/dir 2> /dev/null echo "done." + rm -f /etc/rc.d/rcS.d/S19rc.bootclean } pre_remove() { From bouleetbil at frogdev.info Wed Apr 6 08:13:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 08:13:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-extensions-3.0.0-2-i686 *enable all extensions Message-ID: <20110406061311.ECE7B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=269a162dadc156c3b03ac9a2a5ba58cac5e35718 commit 269a162dadc156c3b03ac9a2a5ba58cac5e35718 Author: bouleetbil Date: Wed Apr 6 08:12:45 2011 +0200 gnome-shell-extensions-3.0.0-2-i686 *enable all extensions diff --git a/source/gnome/gnome-shell-extensions/FrugalBuild b/source/gnome/gnome-shell-extensions/FrugalBuild index 486a0b7..e3a6684 100644 --- a/source/gnome/gnome-shell-extensions/FrugalBuild +++ b/source/gnome/gnome-shell-extensions/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-shell-extensions pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Modify and extend GNOME Shell functionality and behavior" depends=('gnome-shell>=3.0.0') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ @@ -11,7 +11,8 @@ makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_git="n" -Finclude gnome +_F_gnome_glib="y" +Finclude gnome gnome-scriptlet source=(http://ftp.frugalware.org/pub/other/people/bouleetbil/sources/$pkgname-$pkgver.tar.bz2) sha1sums=('37fa75992e4a1de934e04877272774916810dcc3') if [ "$_F_gnome_git" != "n" ]; then @@ -28,7 +29,8 @@ build() { Fcd sh ./autogen.sh fi - Fbuild + Fbuild --enable-extensions=all + Fbuild_gnome_scriptlet } # optimization OK From bouleetbil at frogdev.info Wed Apr 6 08:18:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 08:18:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: librapi2-0.15.2-1-x86_64 Message-ID: <20110406061809.DC72C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=fddf78f87c5aa0bc5a23f807339370a4b0f79e9b commit fddf78f87c5aa0bc5a23f807339370a4b0f79e9b Author: bouleetbil Date: Wed Apr 6 08:17:59 2011 +0200 librapi2-0.15.2-1-x86_64 *Version bump diff --git a/source/lib-extra/librapi2/FrugalBuild b/source/lib-extra/librapi2/FrugalBuild index edcd389..2241faa 100644 --- a/source/lib-extra/librapi2/FrugalBuild +++ b/source/lib-extra/librapi2/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=librapi2 -pkgver=0.15 -pkgrel=2 +pkgver=0.15.2 +pkgrel=1 pkgdesc="SynCE - RAPI communication library" groups=('lib-extra') archs=('i686' 'x86_64') @@ -11,7 +11,7 @@ depends=('libsynce>=0.15' 'check') _F_sourceforge_dirname="synce" _F_sourceforge_realname="SynCE" Finclude sourceforge python -sha1sums=('6473dcf11b4ff05bfed25fb93e4f8eed1d81adc1') +sha1sums=('9092689a077df7250da56d24f97cd0ef1cbfb596') subpkgs=("librapi2-python") subdescs=('python bindings for librapi2') subrodepends=("librapi2=$pkgver") From bouleetbil at frogdev.info Wed Apr 6 08:20:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 08:20:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glibmm-2.28.0-1-x86_64 Message-ID: <20110406062057.774281358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=51a6cfda217951b03938795495224b86669bba0c commit 51a6cfda217951b03938795495224b86669bba0c Author: bouleetbil Date: Wed Apr 6 08:20:48 2011 +0200 glibmm-2.28.0-1-x86_64 *Version bump diff --git a/source/lib/glibmm/FrugalBuild b/source/lib/glibmm/FrugalBuild index f50a2d1..52a0d1d 100644 --- a/source/lib/glibmm/FrugalBuild +++ b/source/lib/glibmm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=glibmm -pkgver=2.27.99.2 +pkgver=2.28.0 pkgrel=1 pkgdesc="C++ interface for glib2" url="http://www.gnome.org/" @@ -10,7 +10,7 @@ depends=('libsigc++2' 'glib2>=2.28.3' 'mm-common') groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('f40dc7c49bc020b2b45abf64343184d6283e45fc') +sha1sums=('ba9b40224a6543911ffbfd7268aa9a9172613a73') subpkgs=("$pkgname-docs") subdescs=("Glibmm Documentation") From bouleetbil at frogdev.info Wed Apr 6 08:23:26 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 08:23:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: telepathy-mission-control-5.7.9-1-x86_64 Message-ID: <20110406062326.91D591358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0a4989e923f81976d4edf30f699fa901e2879783 commit 0a4989e923f81976d4edf30f699fa901e2879783 Author: bouleetbil Date: Wed Apr 6 08:23:22 2011 +0200 telepathy-mission-control-5.7.9-1-x86_64 *Version bump diff --git a/source/lib/telepathy-mission-control/FrugalBuild b/source/lib/telepathy-mission-control/FrugalBuild index 3664edd..9c07da3 100644 --- a/source/lib/telepathy-mission-control/FrugalBuild +++ b/source/lib/telepathy-mission-control/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-mission-control -pkgver=5.7.7 +pkgver=5.7.9 pkgrel=1 pkgdesc="Mission Control, or MC, is a telepathy (chat and voip framework) component" depends=('glibc' 'telepathy-glib' 'libtelepathy') @@ -11,7 +11,7 @@ url="http://telepathy.freedesktop.org/releases/$pkgname" up2date="Flasttar http://telepathy.freedesktop.org/releases/telepathy-mission-control/" source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz") archs=('i686' 'x86_64' 'ppc') -sha1sums=('25bc9fb152b94120414a60203f75ddf69f290c18') +sha1sums=('0eeb7b98ffd26277e5930322db7a30015af58dca') Fconfopts="${Fconfopts[@]} --enable-server" # optimization OK From bouleetbil at frogdev.info Wed Apr 6 10:00:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 10:00:34 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-3.0.0.1-1-x86_64 *version bump Message-ID: <20110406080034.7B6DE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a8f1c82de3e698cb30d500e10c1dca5006b8c29f commit a8f1c82de3e698cb30d500e10c1dca5006b8c29f Author: bouleetbil Date: Wed Apr 6 10:00:18 2011 +0200 gnome-shell-3.0.0.1-1-x86_64 *version bump diff --git a/source/gnome/gnome-shell/FrugalBuild b/source/gnome/gnome-shell/FrugalBuild index 1ee9e0f..a5eff36 100644 --- a/source/gnome/gnome-shell/FrugalBuild +++ b/source/gnome/gnome-shell/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-shell -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="Window management and application launching for GNOME" url="http://www.gnome.org/" @@ -21,10 +21,11 @@ _F_gnome_devel="y" _F_gnome_glib="y" _F_gnome_git="n" Finclude gnome gnome-scriptlet -sha1sums=('5d1ae9f3388fbcf347b93f93b03584f226fa1b30') export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/xulrunner/ replaces=('byzanz') -sha1sums=('08cf4943da2335d2130aa1d36261924a1c7da989') +source=($source extensions.diff) +sha1sums=('3862fa3e086a1ff0f0707f4ddd7a4b18d44dee10' \ + '1c0a4e4818e0aa64fdd5440c6d2ca054cbad3dd9') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi diff --git a/source/gnome/gnome-shell/extensions.diff b/source/gnome/gnome-shell/extensions.diff new file mode 100644 index 0000000..6e7f349 --- /dev/null +++ b/source/gnome/gnome-shell/extensions.diff @@ -0,0 +1,26 @@ +From cbb8bdd48f2b05f8718448b596c4c2da2f34e54b Mon Sep 17 00:00:00 2001 +From: Maxim Ermilov +Date: Tue, 5 Apr 2011 05:20:44 +0400 +Subject: [PATCH] extensionSystem: add missing import + +https://bugzilla.gnome.org/show_bug.cgi?id=646333 +--- + js/ui/extensionSystem.js | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/js/ui/extensionSystem.js b/js/ui/extensionSystem.js +index eb82bc3..9dd3a47 100644 +--- a/js/ui/extensionSystem.js ++++ b/js/ui/extensionSystem.js +@@ -3,6 +3,7 @@ + const GLib = imports.gi.GLib; + const Gio = imports.gi.Gio; + const St = imports.gi.St; ++const Shell = imports.gi.Shell; + + const Config = imports.misc.config; + +-- +1.7.4.2 + + From bouleetbil at frogdev.info Wed Apr 6 10:17:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 10:17:07 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-icon-theme-symbolic-3.0.0-1-x86_64 Message-ID: <20110406081707.1C7941358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b034597a9158045a0f631135264381a6fcbd521b commit b034597a9158045a0f631135264381a6fcbd521b Author: bouleetbil Date: Wed Apr 6 10:17:02 2011 +0200 gnome-icon-theme-symbolic-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-icon-theme-symbolic/FrugalBuild b/source/gnome/gnome-icon-theme-symbolic/FrugalBuild index ee9e646..3c905ed 100644 --- a/source/gnome/gnome-icon-theme-symbolic/FrugalBuild +++ b/source/gnome/gnome-icon-theme-symbolic/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-icon-theme-symbolic -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Symbolic GNOME icons" url="http://www.gnome.org/" @@ -11,4 +11,4 @@ makedepends=('perl-xml-parser' 'icon-naming-utils>=0.8.2' 'intltool' 'gtk+2-tool groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('aab6769ecfe3f45d5ed5f5543fc14ed341af2657') +sha1sums=('deb0f26a75c01de89820083f2093c34fbb4c485a') From bouleetbil at frogdev.info Wed Apr 6 10:20:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 10:20:27 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-icon-theme-3.0.0-1-x86_64 Message-ID: <20110406082027.1833F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bb614490e8745a6622dd04b209064d8cb6803662 commit bb614490e8745a6622dd04b209064d8cb6803662 Author: bouleetbil Date: Wed Apr 6 10:20:14 2011 +0200 gnome-icon-theme-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome/gnome-icon-theme/FrugalBuild b/source/gnome/gnome-icon-theme/FrugalBuild index 0d3c8d2..ce65085 100644 --- a/source/gnome/gnome-icon-theme/FrugalBuild +++ b/source/gnome/gnome-icon-theme/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-icon-theme -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Default icon theme for GNOME" url="http://www.gnome.org/" @@ -11,4 +11,4 @@ makedepends=('perl-xml-parser' 'icon-naming-utils>=0.8.2' 'intltool' 'gtk+2-tool groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('819d22e9cc0b1f6e01d30b85109924803cb54391') +sha1sums=('6184f450c2d5b4892bb6dd4192c2174770f6fc95') From bouleetbil at frogdev.info Wed Apr 6 10:26:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 10:26:29 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgnomekbd-3.0.0.1-1-x86_64 Message-ID: <20110406082629.26F561358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=43a83d8d4d92e9b3460a4347055715c1e4073318 commit 43a83d8d4d92e9b3460a4347055715c1e4073318 Author: bouleetbil Date: Wed Apr 6 10:26:23 2011 +0200 libgnomekbd-3.0.0.1-1-x86_64 *Version bump diff --git a/source/gnome/libgnomekbd/FrugalBuild b/source/gnome/libgnomekbd/FrugalBuild index ccc9383..58ef312 100644 --- a/source/gnome/libgnomekbd/FrugalBuild +++ b/source/gnome/libgnomekbd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=libgnomekbd -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="Keyboard library for GNOME" url="http://www.gnome.org/" @@ -12,6 +12,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('bcfc476b0906dbd412b59e8ed70edde3b6a44cf2') +sha1sums=('c9b52a4136a32fbef8d226f1d86ba2b9313f162c') # optimization OK From vmiklos at frugalware.org Wed Apr 6 10:49:23 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 10:49:23 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: swig-2.0.3-1-i686 Message-ID: <20110406084924.008BF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b17d2b9284b67ec1d02d016d8b1a46162de8f7a8 commit b17d2b9284b67ec1d02d016d8b1a46162de8f7a8 Author: Miklos Vajna Date: Wed Apr 6 10:33:33 2011 +0200 swig-2.0.3-1-i686 - version bump diff --git a/source/devel-extra/swig/FrugalBuild b/source/devel-extra/swig/FrugalBuild index 023659f..5f25140 100644 --- a/source/devel-extra/swig/FrugalBuild +++ b/source/devel-extra/swig/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Miklos Nemeth pkgname=swig -pkgver=2.0.2 +pkgver=2.0.3 pkgrel=1 pkgdesc="SWIG interface compiler" archs=('i686' 'x86_64' 'ppc' 'arm') @@ -12,6 +12,6 @@ groups=('devel-extra') Finclude sourceforge url="http://www.swig.org" up2date="lynx -dump http://www.swig.org/download.html|grep -m1 '.tar.gz'|sed 's/.*-\(.*\).t.*/\1/'" -sha1sums=('1fc5a7b42ae41c51772d7268ba0f987e9514d110') +sha1sums=('da09610f0b925fae40b40186d262c46e3e1f2bf0') # optimization OK From bouleetbil at frogdev.info Wed Apr 6 11:03:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 11:03:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110406090338.22D471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d1e9126da1d3108864f317f5d7a88fd3cd35e0dc commit d1e9126da1d3108864f317f5d7a88fd3cd35e0dc Merge: 43a83d8 b17d2b9 Author: bouleetbil Date: Wed Apr 6 11:03:33 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Conflicts: source/base/systemd/FrugalBuild diff --cc source/base/systemd/FrugalBuild index 3c5ba71,45433a8..a185780 --- a/source/base/systemd/FrugalBuild +++ b/source/base/systemd/FrugalBuild @@@ -7,8 -7,8 +7,8 @@@ USE_TCP=${USE_TCP:-"n" USE_GUI=${USE_GUI:-"y"} pkgname=systemd - pkgver=20 - pkgrel=3 + pkgver=23 -pkgrel=1 ++pkgrel=2 pkgdesc="A System and Service Manager" url="http://www.freedesktop.org/wiki/Software/systemd" depends=('dbus' 'udev' 'pam' 'coreutils' 'libcap' 'sysvinit-initscripts' 'sysvinit-tools') diff --cc source/lib-extra/libinfinity/FrugalBuild index 2e8fe92,211481c..841c3ed --- a/source/lib-extra/libinfinity/FrugalBuild +++ b/source/lib-extra/libinfinity/FrugalBuild @@@ -3,10 -3,10 +3,10 @@@ pkgname=libinfinity pkgver=0.5.0 - pkgrel=1 + pkgrel=2 pkgdesc="libinfinity is an implementation of the Infinote protocol written in GObject-based C" url="http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity" -depends=('glib2' 'libgsasl>=1.6.0' 'libxml' 'gnutls') +depends=('libxml2>=2.7.8' 'glib2' 'libgsasl>=1.6.0' 'libxml' 'gnutls') makedepends=('avahi' 'gtk-doc' 'pkgconfig' 'gtk+2>=2.20.0-2') groups=('lib-extra') archs=('i686' 'x86_64') From vmiklos at frugalware.org Wed Apr 6 11:07:25 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 11:07:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: git-1.7.4.3-1-i686 Message-ID: <20110406090725.B7C941358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9240e05e9c2fcdbd7c7546bdc8e3005fb19a7edd commit 9240e05e9c2fcdbd7c7546bdc8e3005fb19a7edd Author: Miklos Vajna Date: Wed Apr 6 10:54:44 2011 +0200 git-1.7.4.3-1-i686 - version bump diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 14ff8ce..7732ab1 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -8,7 +8,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} USE_HTMLMAN=${USE_HTMLMAN:-"y"} pkgname=git -pkgver=1.7.4.2 +pkgver=1.7.4.3 Fuse $USE_DEVEL && pkgver=1.6.1.87.g1562445 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." From bouleetbil at frogdev.info Wed Apr 6 11:16:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 11:16:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome.sh *switch to stable version Message-ID: <20110406091608.55C211358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1a2dfdacc2d538106977e9247b24d51baf061ebb commit 1a2dfdacc2d538106977e9247b24d51baf061ebb Author: bouleetbil Date: Wed Apr 6 11:15:50 2011 +0200 gnome.sh *switch to stable version diff --git a/source/include/gnome.sh b/source/include/gnome.sh index 15621d8..d107158 100644 --- a/source/include/gnome.sh +++ b/source/include/gnome.sh @@ -39,7 +39,7 @@ if [ -z "$_F_gnome_name" ]; then fi if [ -z "$_F_gnome_devel" ]; then - _F_gnome_devel="y" + _F_gnome_devel="n" fi if [ -z "$_F_gnome_git" ]; then From bouleetbil at frogdev.info Wed Apr 6 13:04:26 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 13:04:26 +0200 (CEST) Subject: [Frugalware-git] gnometesting: clutter-1.6.14-1-x86_64 Message-ID: <20110406110426.87C791358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3b11c09c2151f64ad0b9f430e6238a923ef5e455 commit 3b11c09c2151f64ad0b9f430e6238a923ef5e455 Author: bouleetbil Date: Wed Apr 6 13:04:16 2011 +0200 clutter-1.6.14-1-x86_64 *Version bump diff --git a/source/xlib/clutter/FrugalBuild b/source/xlib/clutter/FrugalBuild index e1535b4..3d35aef 100644 --- a/source/xlib/clutter/FrugalBuild +++ b/source/xlib/clutter/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Devil505 pkgname=clutter -pkgver=1.6.12 +pkgver=1.6.14 pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces." depends=('libxdamage' 'libxcomposite' 'libgl' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \ @@ -15,6 +15,6 @@ replaces=('clutter-cairo') provides=('clutter-cairo') unset MAKEFLAGS Fconfopts="$Fconfopts --with-imagebackend=gdk-pixbuf --enable-xinput" -sha1sums=('725774ad05012ffc80db8249e659bcec8eb28135') +sha1sums=('a6039a1d48bc90a387e54a99788786abc3043c05') # optimization OK From bouleetbil at frogdev.info Wed Apr 6 13:35:15 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 13:35:15 +0200 (CEST) Subject: [Frugalware-git] gnometesting: clutter-gst-1.3.8-1-x86_64 Message-ID: <20110406113515.2B9751358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=143948eea8fa4763519c772a4900064e03dfa13d commit 143948eea8fa4763519c772a4900064e03dfa13d Author: bouleetbil Date: Wed Apr 6 13:35:10 2011 +0200 clutter-gst-1.3.8-1-x86_64 *Version bump diff --git a/source/xlib-extra/clutter-gst/FrugalBuild b/source/xlib-extra/clutter-gst/FrugalBuild index 112a9bb..86dda0f 100644 --- a/source/xlib-extra/clutter-gst/FrugalBuild +++ b/source/xlib-extra/clutter-gst/FrugalBuild @@ -3,13 +3,13 @@ # Contributor: Devil505 pkgname=clutter-gst -pkgver=1.3.4 -pkgrel=2 +pkgver=1.3.8 +pkgrel=1 pkgdesc="Gstreamer bindings for the clutter framework." -depends=('clutter>=1.5.0' 'pango' 'zlib' 'gst-plugins-base' 'libxfixes' 'libxi' 'libxxf86vm' 'libdrm') +depends=('clutter>=1.6.14' 'pango' 'zlib' 'gst-plugins-base' 'libxfixes' 'libxi' 'libxxf86vm' 'libdrm') Finclude clutter makedepends=('gobject-introspection') -sha1sums=('0a370ccd2de19f91721f1df3202b29bebb566a15') +sha1sums=('ce25529ad1c12ea42cbd0e48ffc2106a139161d7') # optimization OK From hermier at frugalware.org Wed Apr 6 14:28:22 2011 From: hermier at frugalware.org (Michel Hermier) Date: Wed, 6 Apr 2011 14:28:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: t/srcmissing Message-ID: <20110406122822.855141358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a35782eff0a22b4e86d3872caa8e165f1d2b8975 commit a35782eff0a22b4e86d3872caa8e165f1d2b8975 Author: Michel Hermier Date: Wed Apr 6 14:27:11 2011 +0200 t/srcmissing * Fpkgversep needs to be reseted to it's default value on each loop. diff --git a/t/srcmissing b/t/srcmissing index a5171a5..7277917 100755 --- a/t/srcmissing +++ b/t/srcmissing @@ -23,6 +23,7 @@ for i in `find source -maxdepth 5 -name FrugalBuild` do cd `dirname $i` || continue unset pkgver pkgextraver nobuild options archs + Fpkgversep='-' export startdir=`pwd` . ./FrugalBuild || echo "errors parsing the FrugalBuild" if [ ! -z "$pkgname" -a ! "$nobuild" -a ! "`check_option NOBUILD`" -a ! "`check_option NOMIRROR`" ]; then From bouleetbil at frogdev.info Wed Apr 6 15:33:14 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 15:33:14 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-settings-daemon-3.0.0.1-1-x86_64 Message-ID: <20110406133314.C31841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=67a3e0141a58a6bbea129008f1e07c23028f0f28 commit 67a3e0141a58a6bbea129008f1e07c23028f0f28 Author: bouleetbil Date: Wed Apr 6 15:33:05 2011 +0200 gnome-settings-daemon-3.0.0.1-1-x86_64 *Version bump diff --git a/source/gnome/gnome-settings-daemon/FrugalBuild b/source/gnome/gnome-settings-daemon/FrugalBuild index 6a2683c..c564701 100644 --- a/source/gnome/gnome-settings-daemon/FrugalBuild +++ b/source/gnome/gnome-settings-daemon/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=gnome-settings-daemon -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="Utility library for accessing gnome-settings-daemon over DBUS" depends=('libxml2>=2.7.8' 'libgnomekbd>=2.91.90' 'esd' 'gst-plugins-base>=0.10.22-2' 'libxxf86misc' \ - 'gnome-desktop>=2.91.0' 'alsa-lib' 'pulseaudio' 'gsettings-desktop-schemas' 'libxtst' 'libnotify' \ + 'gnome-desktop>=3.0.0' 'alsa-lib' 'pulseaudio' 'gsettings-desktop-schemas' 'libxtst' 'libnotify' \ 'gnome-icon-theme-symbolic' 'gnome-icon-theme' 'gnome-themes-standard' 'libcups') makedepends=('intltool' 'gtk-doc>=1.11' 'gnome-doc-utils>=0.14.0' 'cups') rodepends=('xkbcomp') @@ -16,7 +16,7 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('aaecac4e707ee20711cd1ab599b0213ebe41f962') +sha1sums=('d127d29a0d8b299b6eec506a7b2957d5682b03dd') Fconfopts="${Fconfopts[@]} --disable-static" build() { From achevaux at gmail.com Wed Apr 6 15:39:30 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 15:39:30 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bluedevil-1.0.4-1-i686 Message-ID: <20110406133930.85E321358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9ba68e1c42d14f3f99701f2f4ae4d027f5fd2a9 commit c9ba68e1c42d14f3f99701f2f4ae4d027f5fd2a9 Author: centuri0 Date: Wed Apr 6 15:25:09 2011 +0200 bluedevil-1.0.4-1-i686 * version bump diff --git a/source/kde-extra/bluedevil/FrugalBuild b/source/kde-extra/bluedevil/FrugalBuild index 22043f9..5ea2ded 100644 --- a/source/kde-extra/bluedevil/FrugalBuild +++ b/source/kde-extra/bluedevil/FrugalBuild @@ -1,9 +1,9 @@ -# Compiling Time: 0.51 SBU +# Compiling Time: 0.60 SBU # Maintainer: centuri0 # Contributor: Kapolnasi Tamas pkgname=bluedevil -pkgver=1.0.3 +pkgver=1.0.4 pkgrel=1 pkgdesc="KDE Bluetooth Framework" groups=('kde-extra') @@ -16,6 +16,6 @@ Finclude kde url="http://www.afiestas.org/" depends=('libkfile' 'libbluedevil' 'libnepomuk' 'attica' 'phonon' 'obex-data-server' 'obexftp') makedepends=(${makedepends[@]} "kdelibs-compiletime>=$_F_kde_ver") -sha1sums=('a0375505d42776510e3efd005e250a7494c2f9d1') +sha1sums=('c60515ec500ee03669203eefea9d6f00de8e391f') # optimization OK From achevaux at gmail.com Wed Apr 6 15:39:30 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 15:39:30 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qbittorrent-2.7.2-1-i686 Message-ID: <20110406133930.8D265BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d172a4d3257a987120873ce83cb7a157ee72b2d5 commit d172a4d3257a987120873ce83cb7a157ee72b2d5 Author: centuri0 Date: Wed Apr 6 15:39:14 2011 +0200 qbittorrent-2.7.2-1-i686 * version bump diff --git a/source/xapps-extra/qbittorrent/FrugalBuild b/source/xapps-extra/qbittorrent/FrugalBuild index 536ce95..9ce8848 100644 --- a/source/xapps-extra/qbittorrent/FrugalBuild +++ b/source/xapps-extra/qbittorrent/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling Time: 1.24 SBU +# Compiling Time: 1.26 SBU # Maintainer: centuri0 pkgname=qbittorrent -pkgver=2.7.1 +pkgver=2.7.2 pkgrel=1 pkgdesc="A Bittorrent client." depends=('libtorrent-rasterbar>=0.15.1' 'libqtgui>=4.7.1' 'libqtnetwork>=4.7.1' 'libqtxml>=4.6.1' 'libqtdbus>=4.7.1'\ @@ -12,10 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge url="http://www.qbittorrent.org/" -sha1sums=('e81ae73fb42b9141995ebf5b93d1ecf66e6a1d31') -Fconfopts="${Fconfopts[@]} --disable-libnotify --with-libboost-inc=/usr/include \ - --qtdir=/usr \ - --verbose" +sha1sums=('fdfec52385187d9895981aeb68b9081b6789362f') build() { Fconf From bouleetbil at frogdev.info Wed Apr 6 15:43:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 15:43:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-panel-3.0.0.1-1-x86_64 Message-ID: <20110406134354.777431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c300d9e55e031ddaed0c681fe5b2ddfe0a98e60a commit c300d9e55e031ddaed0c681fe5b2ddfe0a98e60a Author: bouleetbil Date: Wed Apr 6 15:43:45 2011 +0200 gnome-panel-3.0.0.1-1-x86_64 *Version bump diff --git a/source/gnome/gnome-panel/FrugalBuild b/source/gnome/gnome-panel/FrugalBuild index b7d6ef2..5073669 100644 --- a/source/gnome/gnome-panel/FrugalBuild +++ b/source/gnome/gnome-panel/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-panel -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="GNOME panel and core applets" depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'gnome-menus>=2.30.4' \ @@ -18,7 +18,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('0772e61bca6cdf1a3748a736bf7a236c217a72ce') +sha1sums=('d092cc3c14b29c3c98bb067345b50a6891da1d11') replaces=('avant-window-navigator' 'awn-extras-applets') build() { From achevaux at gmail.com Wed Apr 6 15:56:16 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 15:56:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: aria2-1.11.1-1-i686 Message-ID: <20110406135616.613B21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d9eb5089d14e70cdb9559f6f2f431576971ce78c commit d9eb5089d14e70cdb9559f6f2f431576971ce78c Author: centuri0 Date: Wed Apr 6 15:56:06 2011 +0200 aria2-1.11.1-1-i686 * version bump diff --git a/source/network-extra/aria2/FrugalBuild b/source/network-extra/aria2/FrugalBuild index 396fe4f..50a2a8d 100644 --- a/source/network-extra/aria2/FrugalBuild +++ b/source/network-extra/aria2/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling Time: 0.43 SBU -# Maintainer: crazy +# Compiling Time: 1.12 SBU +# Maintainer: centuri0 pkgname=aria2 -pkgver=1.10.9 +pkgver=1.11.1 pkgrel=1 pkgdesc="aria2 is an utility for downloading files." depends=('openssl>=1.0.0' 'libxml2' 'c-ares' 'sqlite3' 'libstdc++') @@ -12,6 +12,7 @@ groups=('network-extra') archs=('i686' 'x86_64') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -sha1sums=('49f647fb31622619d7c0b7786615986fb0fafb5b') +sha1sums=('b3b37cc7363305d55e86dcd74a73dc493ecfa530') Fconfopts="$Fconfopts --without-gnutls" + # optimization OK From achevaux at gmail.com Wed Apr 6 16:02:08 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 16:02:08 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libgadu-1.10.1-3-i686 Message-ID: <20110406140208.8F62F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c72470edba4e4f77061dda18dfd2e9a551b27e62 commit c72470edba4e4f77061dda18dfd2e9a551b27e62 Author: centuri0 Date: Wed Apr 6 16:02:03 2011 +0200 libgadu-1.10.1-3-i686 * version bump diff --git a/source/lib/libgadu/FrugalBuild b/source/lib/libgadu/FrugalBuild index 93fd2a9..516bcaf 100644 --- a/source/lib/libgadu/FrugalBuild +++ b/source/lib/libgadu/FrugalBuild @@ -1,8 +1,8 @@ # Maintainer: DeX77 -# Compiling Time: 0.17 SBU +# Compiling Time: 0.12 SBU pkgname=libgadu -pkgver=1.8.2 +pkgver=1.10.1 pkgrel=3 pkgdesc="Gadu-Gadu protocol libraries" archs=('i686' 'x86_64' 'ppc') @@ -12,6 +12,6 @@ license=('GPL') depends=('openssl>=1.0.0') up2date="Flasttar $url" source=(http://toxygen.net/libgadu/files/$pkgname-$pkgver.tar.gz) -sha1sums=('83871c4ec841b276a8da3d31c88c416274bcd71a') +sha1sums=('ec3058b42e910cde174cb7cf0f5eecb4ff303517') # optimization OK From bouleetbil at frogdev.info Wed Apr 6 17:27:05 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 17:27:05 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtkmm-3.0.0-1-x86_64 Message-ID: <20110406152705.B75351358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a1d1fbdf36e8e6f38dd7b9bd4bd90860677f1dc5 commit a1d1fbdf36e8e6f38dd7b9bd4bd90860677f1dc5 Author: bouleetbil Date: Wed Apr 6 17:26:50 2011 +0200 gtkmm-3.0.0-1-x86_64 *Version bump diff --git a/source/xlib/gtkmm/FrugalBuild b/source/xlib/gtkmm/FrugalBuild index 1ef9901..0a6d2ef 100644 --- a/source/xlib/gtkmm/FrugalBuild +++ b/source/xlib/gtkmm/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=gtkmm -pkgver=2.99.8 +pkgver=3.0.0 pkgrel=1 pkgdesc="C++ interface for GTK+3" -depends=('libxml2>=2.7.8' 'glibmm>=2.24.0' 'gtk+3>=3.0.1' 'cairomm>=1.8.0' 'pangomm>=2.26.2' 'atkmm') +depends=('libxml2>=2.7.8' 'glibmm>=2.24.0' 'gtk+3>=3.0.8' 'cairomm>=1.8.0' 'pangomm>=2.26.2' 'atkmm') groups=('xlib') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --disable-examples --disable-demos" -sha1sums=('e221a93230e0f8ffd1864c6bad07d94fb6ba900f') +sha1sums=('8ebc7e4c945687b8c70f6c4832f1dc6252685281') export CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" From hermier at frugalware.org Wed Apr 6 17:48:06 2011 From: hermier at frugalware.org (Michel Hermier) Date: Wed, 6 Apr 2011 17:48:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: t/srcjunk Message-ID: <20110406154806.B35961358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2a4e8b76344931ef03a17107ee9f778d54addfc5 commit 2a4e8b76344931ef03a17107ee9f778d54addfc5 Author: Michel Hermier Date: Wed Apr 6 17:47:13 2011 +0200 t/srcjunk * Fpkgversep needs to be reseted to it's default value on each loop. diff --git a/t/srcjunk b/t/srcjunk index 8810d6f..6fa5aa0 100755 --- a/t/srcjunk +++ b/t/srcjunk @@ -31,6 +31,7 @@ do cd `dirname $i` || continue startdir=`pwd` unset pkgver nobuild options archs + Fpkgversep='-' . ./FrugalBuild || echo "errors parsing the FrugalBuild" if [ ! -z "$pkgname" -a ! "$nobuild" -a ! "`check_option NOBUILD`" ]; then for j in ${archs[@]} From elentir at frugalware.org Wed Apr 6 17:48:23 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 6 Apr 2011 17:48:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: uevt-2.2-1-x86_64 Message-ID: <20110406154823.AC6C31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=04433ae8985739ecd14d2fdf6cbb9eaa2b2072bd commit 04433ae8985739ecd14d2fdf6cbb9eaa2b2072bd Author: Elentir Date: Wed Apr 6 17:46:56 2011 +0200 uevt-2.2-1-x86_64 * version bump diff --git a/source/xapps-extra/uevt/FrugalBuild b/source/xapps-extra/uevt/FrugalBuild index 728a0a2..26b37b6 100644 --- a/source/xapps-extra/uevt/FrugalBuild +++ b/source/xapps-extra/uevt/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Elentir pkgname=uevt -pkgver=2.1 +pkgver=2.2 pkgrel=1 pkgdesc="A lightweight power and disk manager" -depends=('gtk+2-libs' 'libnotify' 'upower' 'udisks') +depends=('gtk+2' 'libnotify' 'upower' 'udisks') makedepends=('intltool' 'vala') groups=('xapps-extra') archs=('i686' 'x86_64' 'ppc') url="http://elentir.sleipnir.fr/" source=(http://ftp.sleipnir.fr/$pkgname/$pkgname-$pkgver.tar.bz2) up2date="Flasttar http://ftp.sleipnir.fr/$pkgname/" -sha1sums=('59ef6b48d6308fbe0acf2e4825578ba3ccb1e32c') +sha1sums=('4d65c16fbb8db5716902d0afe09f85b99636d2a1') # optimization OK From kikadf.01 at gmail.com Wed Apr 6 18:16:27 2011 From: kikadf.01 at gmail.com (kikadf) Date: Wed, 6 Apr 2011 18:16:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: unetbootin-549-1-i686 *Version bump Message-ID: <20110406161627.7FA091358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0de30ec04b1c241522e634a13f5d45df4416b6bf commit 0de30ec04b1c241522e634a13f5d45df4416b6bf Author: kikadf Date: Wed Apr 6 18:16:12 2011 +0200 unetbootin-549-1-i686 *Version bump diff --git a/source/xapps-extra/unetbootin/FrugalBuild b/source/xapps-extra/unetbootin/FrugalBuild index e0a2084..6deac64 100644 --- a/source/xapps-extra/unetbootin/FrugalBuild +++ b/source/xapps-extra/unetbootin/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: kikadf pkgname=unetbootin -pkgver=527 +pkgver=549 pkgrel=1 pkgdesc="UNetbootin loads utilities or installs Linux/BSD to a partition or USB drive without a CD." _F_cd_path="/" @@ -16,7 +16,7 @@ makedepends=('qt4-linguist') Finclude sourceforge groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('3f064ab350f68aa83272d1e6268a6ecf822b5894') +sha1sums=('b25a37af50cb285ba5c99c8aea7a71bc850c0ac6') build() { @@ -32,3 +32,5 @@ build() + +# optimization OK From devil505linux at gmail.com Wed Apr 6 18:26:08 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 6 Apr 2011 18:26:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gwibber-3.0.0-1-i686 * version bump Message-ID: <20110406162608.E4D161358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=32ea9d34fc34254a5fe74e337680d3e8b50fdfeb commit 32ea9d34fc34254a5fe74e337680d3e8b50fdfeb Author: Devil505 Date: Wed Apr 6 18:25:27 2011 +0200 gwibber-3.0.0-1-i686 * version bump diff --git a/source/gnome-extra/gwibber/FrugalBuild b/source/gnome-extra/gwibber/FrugalBuild index e2098c5..e52e1a3 100644 --- a/source/gnome-extra/gwibber/FrugalBuild +++ b/source/gnome-extra/gwibber/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gwibber -pkgver=2.91.93 +pkgver=3.0.0 pkgrel=1 pkgdesc="Open Source microblogging client for GNOME, with webkit" depends=('python-simplejson' 'pygtk' 'dbus-python' 'pywebkitgtk>=1.1.6-2' 'gnome-python-desktop-wnck' \ @@ -15,6 +15,7 @@ groups=('gnome-extra') _F_gnome_desktop="y" _F_launchpad_branch="3.0" Finclude gnome-scriptlet launchpad +source=($url/$_F_launchpad_branch/$_F_launchpad_branch/+download/$pkgname-$pkgver.tar.gz) archs=('i686' 'x86_64') -sha1sums=('bac2afe76ce54c83a344fdc0e024e0cb5084a670') +sha1sums=('69983e5f8e0bc9a48489ab62d4c6dd99caecfa21') replaces=('twitux') From devil505linux at gmail.com Wed Apr 6 18:38:38 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 6 Apr 2011 18:38:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-sound-0.6.6.1-1-i686 * version bump Message-ID: <20110406163838.111021358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2a9688526f2f1c9abfed7534641527626655dd46 commit 2a9688526f2f1c9abfed7534641527626655dd46 Author: Devil505 Date: Wed Apr 6 18:38:25 2011 +0200 indicator-sound-0.6.6.1-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-sound/FrugalBuild b/source/ayatana-extra/indicator-sound/FrugalBuild index 28164ed..8e8d0ee 100644 --- a/source/ayatana-extra/indicator-sound/FrugalBuild +++ b/source/ayatana-extra/indicator-sound/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-sound -pkgver=0.6.5.1 +pkgver=0.6.6.1 pkgrel=1 pkgdesc="A unified sound menu" url="http://launchpad.net/indicator-sound" @@ -14,8 +14,8 @@ archs=('i686' 'x86_64') _F_gnome_glib="y" Finclude gnome-scriptlet up2date="Flasttar $url" -source=($url/third/0.6.5/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('0ffe87d556e5e048c20206d3f7baf6c10e5896b1') +source=($url/third/0.6.6/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('6f00bca6f2f5576c2ef9782f265d259cb4526348') build() { Fcd From vmiklos at frugalware.org Wed Apr 6 18:45:25 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 18:45:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: uzbl-2010.04.03-3-i686 Message-ID: <20110406164525.BBD011358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2b0e2b4655228f0b20b47f6fcb4fecdc5d1b8b1d commit 2b0e2b4655228f0b20b47f6fcb4fecdc5d1b8b1d Author: Miklos Vajna Date: Wed Apr 6 18:32:23 2011 +0200 uzbl-2010.04.03-3-i686 - add missing rodep - reported by feherke on IRC diff --git a/source/xapps-extra/uzbl/FrugalBuild b/source/xapps-extra/uzbl/FrugalBuild index 308e2b8..f586943 100644 --- a/source/xapps-extra/uzbl/FrugalBuild +++ b/source/xapps-extra/uzbl/FrugalBuild @@ -3,7 +3,7 @@ pkgname=uzbl pkgver=2010.04.03 -pkgrel=2 +pkgrel=3 pkgdesc="Uzbl - web interface tools which adhere to the unix philosophy." url="http://www.uzbl.org/" depends=('webkit>=1.3.4') @@ -18,7 +18,7 @@ sha1sums=('7da3199fc25635ea8635ac7cfbd6aec3170c9d78') subpkgs=('uzbl-tabbed') subdescs=('Uzbl with tabs') subdepends=() -subrodepends=('pygtk') +subrodepends=("pygtk uzbl=$pkgver-$pkgrel") subarchs=('i686') subgroups=('xapps-extra') From vmiklos at frugalware.org Wed Apr 6 18:55:43 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 18:55:43 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: thunar-vfs-1.2.0-3-i686 Message-ID: <20110406165543.245E61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3dbd34ac5028fe2e9e45e2cbadc8676a8db85fa7 commit 3dbd34ac5028fe2e9e45e2cbadc8676a8db85fa7 Author: Miklos Vajna Date: Wed Apr 6 18:42:56 2011 +0200 thunar-vfs-1.2.0-3-i686 - drop pointless fam dependency, gamin is already there diff --git a/source/xfce4-extra/thunar-vfs/FrugalBuild b/source/xfce4-extra/thunar-vfs/FrugalBuild index 10bc5de..d03c28c 100644 --- a/source/xfce4-extra/thunar-vfs/FrugalBuild +++ b/source/xfce4-extra/thunar-vfs/FrugalBuild @@ -3,9 +3,9 @@ pkgname=thunar-vfs pkgver=1.2.0 -pkgrel=2 +pkgrel=3 pkgdesc="Separate package for (old) Thunar VFS libraries" -depends=('libexo>=0.6.0' 'gamin' 'startup-notification' 'hal' 'fam') +depends=('libexo>=0.6.0' 'gamin' 'startup-notification' 'hal') makedepends=('pkgconfig' 'intltool') groups=('xfce4-extra') Finclude xfce4 From vmiklos at frugalware.org Wed Apr 6 18:56:06 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 18:56:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fam-2.7.0-4-i686 Message-ID: <20110406165606.C5C411358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a331418224fc189e52d79bf1a979590a6ad2700f commit a331418224fc189e52d79bf1a979590a6ad2700f Author: Miklos Vajna Date: Wed Apr 6 18:43:24 2011 +0200 fam-2.7.0-4-i686 - bin, replaced by gamin diff --git a/source/apps-extra/fam/FrugalBuild b/source/apps-extra/fam/FrugalBuild deleted file mode 100644 index 616bb8e..0000000 --- a/source/apps-extra/fam/FrugalBuild +++ /dev/null @@ -1,30 +0,0 @@ -# Compiling Time: 0.08 SBU -# Maintainer: Miklos Vajna - -pkgname=fam -pkgver=2.7.0 -pkgrel=4 -pkgdesc="File Alteration Monitor - used by KDE, GNOME and others" -url="http://oss.sgi.com/projects/fam/" -backup=(etc/fam.conf etc/fam/fam.conf) -depends=('libstdc++') -groups=('apps-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump http://oss.sgi.com/projects/fam/news.html|grep released|sed -n '1 p'|tr -s ' '|cut -d ' ' -f 4" -source=(ftp://oss.sgi.com/projects/fam/download/$pkgname-latest.tar.gz fam-headers-fix.patch rc.fam) -sha1sums=('6c2316f02acf89a41c42ffc3d7fd9cf5eada83a8' \ - 'b8f70caad21b3440a9006f89391e5ecc2798c1c5' \ - '5077be9e2e1c9469cf2d5bb5a9c6746d131624e4') - -build() { - Fcd - Fpatchall - for i in `find . -type f` ; do Fsed "aclocal-1.6" "aclocal" $i ; done - Fmake --sysconfdir=/etc - Fmakeinstall sysconfdir=$Fdestdir/etc - Frcd2 -} - -# optimization OK - - diff --git a/source/apps-extra/fam/fam-headers-fix.patch b/source/apps-extra/fam/fam-headers-fix.patch deleted file mode 100644 index 1d13703..0000000 --- a/source/apps-extra/fam/fam-headers-fix.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff -Naur fam-2.7.0/include/BTree.h fam-2.7.0.new/include/BTree.h ---- fam-2.7.0/include/BTree.h 2003-01-20 09:52:30.000000000 +0530 -+++ fam-2.7.0.new/include/BTree.h 2009-02-15 11:24:40.000000000 +0530 -@@ -22,7 +22,7 @@ - - #ifndef BTree_included - #define BTree_included -- -+#include - #include "Boolean.h" - - // This is an in-core B-Tree implementation. -diff -Naur fam-2.7.0/lib/Client.c++ fam-2.7.0.new/lib/Client.c++ ---- fam-2.7.0/lib/Client.c++ 2003-01-18 19:48:12.000000000 +0530 -+++ fam-2.7.0.new/lib/Client.c++ 2009-02-15 11:12:48.000000000 +0530 -@@ -34,7 +34,7 @@ - #include - #include - --#include -+#include - - #include "fam.h" - #include "Client.h" -diff -Naur fam-2.7.0/src/IMon.c++ fam-2.7.0.new/src/IMon.c++ ---- fam-2.7.0/src/IMon.c++ 2003-01-18 19:48:12.000000000 +0530 -+++ fam-2.7.0.new/src/IMon.c++ 2009-02-15 11:23:11.000000000 +0530 -@@ -40,7 +40,6 @@ - #include "Interest.h" - #include "Log.h" - #include "Scheduler.h" --#include "alloc.h" - - int IMon::imonfd = -2; - IMon::EventHandler IMon::ehandler = NULL; -diff -Naur fam-2.7.0/src/Interest.h fam-2.7.0.new/src/Interest.h ---- fam-2.7.0/src/Interest.h 2003-01-18 19:48:12.000000000 +0530 -+++ fam-2.7.0.new/src/Interest.h 2009-02-15 11:17:49.000000000 +0530 -@@ -23,6 +23,7 @@ - #ifndef Interest_included - #define Interest_included - -+#include - #include - #include - #include diff --git a/source/apps-extra/fam/rc.fam b/source/apps-extra/fam/rc.fam deleted file mode 100644 index af2490b..0000000 --- a/source/apps-extra/fam/rc.fam +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# (c) 2005 Marcus Habermehl -# (c) 2003 Vajna Miklos -# rc.fam for FrugalWare -# distributed under GPL License - -source /lib/initscripts/functions -TEXTDOMAIN=fam - -actions=(restart start status stop) -daemon=$"File Alteration Monitor" - -pid="pidof famd 2> /dev/null" - -rc_start() -{ - start_msg - if [ -z "$(eval $pid)" ] ; then - /usr/sbin/famd - ok $? - else - ok 999 - fi -} - -rc_stop() -{ - stop_msg - if [ ! -z "$(eval $pid)" ] ; then - killall famd - ok $? - else - ok 999 - fi -} - -rc_exec $1 - -# vim: ft=sh From bouleetbil at frogdev.info Wed Apr 6 18:56:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 18:56:29 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-extensions-3.0.0-3-i686 *disable some useless extension Message-ID: <20110406165629.A16EE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0a2ed971d6e12170ec0bc47a46f5eace8e7e4a59 commit 0a2ed971d6e12170ec0bc47a46f5eace8e7e4a59 Author: bouleetbil Date: Wed Apr 6 18:53:43 2011 +0200 gnome-shell-extensions-3.0.0-3-i686 *disable some useless extension diff --git a/source/gnome/gnome-shell-extensions/FrugalBuild b/source/gnome/gnome-shell-extensions/FrugalBuild index e3a6684..7f56ea4 100644 --- a/source/gnome/gnome-shell-extensions/FrugalBuild +++ b/source/gnome/gnome-shell-extensions/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-shell-extensions pkgver=3.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="Modify and extend GNOME Shell functionality and behavior" depends=('gnome-shell>=3.0.0') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ @@ -30,6 +30,10 @@ build() { sh ./autogen.sh fi Fbuild --enable-extensions=all + #hello world + Frm usr/share/gnome-shell/extensions/example at gnome-shell-extensions.gnome.org + #break default theme + Frm usr/share/gnome-shell/extensions/user-theme at gnome-shell-extensions.gnome.org Fbuild_gnome_scriptlet } From bouleetbil at frogdev.info Wed Apr 6 18:58:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 18:58:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-session-3.0.0-2-i686 *don't force to use gnome-shell-extensions if user wouldn't use it Message-ID: <20110406165809.AB2041358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=40da54548017186547f5bcb39b7a35417bf16e54 commit 40da54548017186547f5bcb39b7a35417bf16e54 Author: bouleetbil Date: Wed Apr 6 18:57:43 2011 +0200 gnome-session-3.0.0-2-i686 *don't force to use gnome-shell-extensions if user wouldn't use it diff --git a/source/gnome/gnome-session/FrugalBuild b/source/gnome/gnome-session/FrugalBuild index d0d18b0..58fcfe4 100644 --- a/source/gnome/gnome-session/FrugalBuild +++ b/source/gnome/gnome-session/FrugalBuild @@ -5,14 +5,14 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=gnome-session pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME session manager" depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'polkit' 'upower' 'gconf-gtk' 'usermode' \ 'dbus-glib>=0.76' 'gnome-control-center>=3.0.0' 'libnotify' 'gnome-keyring>=3.0.0' \ 'metacity') makedepends=('intltool' 'gnome-common') #gnome-session start gnome-shell and if failed start gnome-panel -rodepends=('consolekit-x11' 'gnome-shell-extensions' 'gnome-panel' 'dconf') +rodepends=('consolekit-x11' 'gnome-shell' 'gnome-panel' 'dconf') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_glib="y" From achevaux at gmail.com Wed Apr 6 19:31:52 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 19:31:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: orc-0.4.11-1-i686 Message-ID: <20110406173152.086751358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a17773d6284568fbfbfa261aa1da39f764b78e45 commit a17773d6284568fbfbfa261aa1da39f764b78e45 Author: centuri0 Date: Wed Apr 6 19:31:17 2011 +0200 orc-0.4.11-1-i686 * new package diff --git a/source/lib-extra/orc/FrugalBuild b/source/lib-extra/orc/FrugalBuild new file mode 100755 index 0000000..6f2d6e2 --- /dev/null +++ b/source/lib-extra/orc/FrugalBuild @@ -0,0 +1,16 @@ +# Compiling Time: 0.20 SBU +# Maintainer: centuri0 + +pkgname=orc +pkgver=0.4.11 +pkgrel=1 +pkgdesc="The Oil Runtime Compiler." +url="http://code.entropywave.com/projects/$pkgname" +depends=('glibc') +groups=(lib-extra) +archs=('i686') +up2date="Flasttar http://code.entropywave.com/download/$pkgname/" +source=(http://code.entropywave.com/download/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('e99f684fc551c2bb3a5cdefe6fa5165174508a5f') + +# optimization OK From bouleetbil at frogdev.info Wed Apr 6 20:10:03 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 20:10:03 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-session-3.0.0-2-i686 *fix use var Message-ID: <20110406181003.915531358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e2bbfcfab9f8afc5fdbd4868de1d4c4274e201ea commit e2bbfcfab9f8afc5fdbd4868de1d4c4274e201ea Author: bouleetbil Date: Wed Apr 6 20:09:54 2011 +0200 gnome-session-3.0.0-2-i686 *fix use var diff --git a/source/gnome/gnome-session/FrugalBuild b/source/gnome/gnome-session/FrugalBuild index 58fcfe4..a924c82 100644 --- a/source/gnome/gnome-session/FrugalBuild +++ b/source/gnome/gnome-session/FrugalBuild @@ -1,7 +1,7 @@ # Compiling time: 0.38 SBU # Maintainer: bouleetbil -USE_DEVEL=${USE_DEVEL:-"n"} +USE_DEVEL=${USE_DEBUG:-"n"} pkgname=gnome-session pkgver=3.0.0 @@ -24,7 +24,7 @@ sha1sums=('e00b3375dc998255903e3c046791e450c82eac38') build() { Fcd - if Fuse $USE_DEVEL; then + if Fuse $USE_DEBUG; then Fsed "static gboolean debug = FALSE" \ "static gboolean debug = TRUE" \ gnome-session/main.c From bouleetbil at frogdev.info Wed Apr 6 20:44:56 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 20:44:56 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-control-center-3.0.0.1-1-x86_64 Message-ID: <20110406184456.C45351358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7e82d4e802aadc86efcdbbed609667a96b9f868a commit 7e82d4e802aadc86efcdbbed609667a96b9f868a Author: bouleetbil Date: Wed Apr 6 20:44:33 2011 +0200 gnome-control-center-3.0.0.1-1-x86_64 *Version bump diff --git a/source/gnome/gnome-control-center/FrugalBuild b/source/gnome/gnome-control-center/FrugalBuild index c4bcbe7..876086f 100644 --- a/source/gnome/gnome-control-center/FrugalBuild +++ b/source/gnome/gnome-control-center/FrugalBuild @@ -5,7 +5,7 @@ USE_CHEESE=${USE_CHEESE:-"n"} #not yet ported to gnome3 pkgname=gnome-control-center -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="GNOME Control Center" depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.90' 'mutter' 'libgnomekbd>=2.91.90' 'gnome-menus' \ @@ -13,7 +13,7 @@ depends=('libxml2>=2.7.8' 'gnome-desktop>=2.91.90' 'mutter' 'libgnomekbd>=2.91.9 'evolution-data-server>=3.0.0' 'libxxf86misc' 'libxscrnsaver' 'xrdb' \ 'libkrb5' 'db>=4.7.25' 'libsocialweb>=0.25.7' 'gsettings-desktop-schemas' \ 'gnome-settings-daemon' 'libcanberra-gtk>=0.26-2' 'libcanberra-alsa' 'libcanberra-gst' 'upower' \ - 'accountsservice' 'apg' 'cantarell-fonts' 'networkmanager>=0.8.995' 'glib-networking') + 'accountsservice' 'apg' 'cantarell-fonts' 'networkmanager>=0.8.3.999' 'glib-networking') makedepends=('intltool' 'gnome-doc-utils>=0.14.0' 'gnome-common>=2.28.0' 'krb5' 'gtk-doc' 'cups' 'libgtop') rodepends=('gst-plugins-base-alsa>=0.10.19-2' 'sound-theme-freedesktop') groups=('gnome') @@ -31,7 +31,7 @@ if Fuse $USE_CHEESE; then export CFLAGS="$CFLAGS -I/usr/include/cheese -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2" depends=("${depends[@]}" "cheese") fi -sha1sums=('8b8d8ffd1143fb28f2821b9e41af995d3c7b491c') +sha1sums=('d60c590d81035a1a956b7f18cbe531a02d392cf0') replaces=('accountsdialog') build() { From bouleetbil at frogdev.info Wed Apr 6 21:04:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:04:12 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtksourceviewmm-3.0.0-1-x86_64 Message-ID: <20110406190412.19E8D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=248356ad6bb8df08f4a526e25c835fae86cedcf6 commit 248356ad6bb8df08f4a526e25c835fae86cedcf6 Author: bouleetbil Date: Wed Apr 6 21:04:06 2011 +0200 gtksourceviewmm-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gtksourceviewmm/FrugalBuild b/source/gnome-extra/gtksourceviewmm/FrugalBuild index 43e8bb6..c35de93 100644 --- a/source/gnome-extra/gtksourceviewmm/FrugalBuild +++ b/source/gnome-extra/gtksourceviewmm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gtksourceviewmm -pkgver=2.91.9 +pkgver=3.0.0 pkgrel=1 pkgdesc="gtksourceviewmm is C++ API for gtksourceview" depends=('gtksourceview3' 'gtkmm') @@ -10,7 +10,7 @@ groups=('gnome-extra') options=('scriptlet') Finclude gnome archs=('i686' 'x86_64') -sha1sums=('c952840ac05e5fb5ba2b7ae6c9ffc32c72b88505') +sha1sums=('203b5b80b9b8de41811445f3cdc926c597a26f97') replaces=('libgtksourceviewmm') conflicts=('libgtksourceviewmm') provides=('libgtksourceviewmm') From bouleetbil at frogdev.info Wed Apr 6 21:06:39 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:06:39 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gedit-plugins-3.0.0-1-x86_64 Message-ID: <20110406190639.A5C541358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d0f2746735dbabd30ea980552f4780279583e419 commit d0f2746735dbabd30ea980552f4780279583e419 Author: bouleetbil Date: Wed Apr 6 21:06:33 2011 +0200 gedit-plugins-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gedit-plugins/FrugalBuild b/source/gnome-extra/gedit-plugins/FrugalBuild index d240264..112c425 100644 --- a/source/gnome-extra/gedit-plugins/FrugalBuild +++ b/source/gnome-extra/gedit-plugins/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: bouleetbil pkgname=gedit-plugins -pkgver=2.91.1 +pkgver=3.0.0 pkgrel=1 pkgdesc="Plugins for gedit" -depends=('gedit>=2.91.0' 'gucharmap') +depends=('gedit>=3.0.0' 'gucharmap') makedepends=('intltool' 'gnome-doc-utils>=0.16.0' 'gtk-doc') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_desktop="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('13eb764ce951f9fd8015f1b0fb8084f878fdbe6c') +sha1sums=('69da081749e34da5af343535c44aeb5c797f9de1') From bouleetbil at frogdev.info Wed Apr 6 21:08:15 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:08:15 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnomeartng *dead pkg Message-ID: <20110406190815.23B561358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=50877459e6196d55c7d58b4cbee94fa29e9c4601 commit 50877459e6196d55c7d58b4cbee94fa29e9c4601 Author: bouleetbil Date: Wed Apr 6 21:07:19 2011 +0200 gnomeartng *dead pkg diff --git a/source/gnome-extra/gnomeartng/Fix_FwDistribution.diff b/source/gnome-extra/gnomeartng/Fix_FwDistribution.diff deleted file mode 100644 index 4e6c0f0..0000000 --- a/source/gnome-extra/gnomeartng/Fix_FwDistribution.diff +++ /dev/null @@ -1,33 +0,0 @@ ---- gnomeartng-0.7.0/src/CConfiguration.cs 2009-07-16 17:56:09.000000000 +0200 -+++ gnomeartng-0.7.0new/src/CConfiguration.cs 2009-07-17 10:48:03.000000000 +0200 -@@ -76,6 +76,7 @@ - Suse, - Fedora, - PcLinuxOs, -+ Frugalware, - Unknown - } - -@@ -319,6 +320,11 @@ - case DistriType.PcLinuxOs: - sudoCommand="gksu"; - break; -+ case DistriType.Frugalware: -+ gdmFile="custom.conf"; -+ gdmCustomFile="custom.conf"; -+ sudoCommand="gksu"; -+ break; - default: throw new Exception("Unknown distribution...aborting!!"); - } - gdmPath="/etc/gdm/"; -@@ -330,6 +336,10 @@ - distribution = DistriType.Unknown; - distributionVersion = DistriVersion.Unknown; - -+ //Frugalware -+ if (sContent.IndexOf("frugalware",StringComparison.CurrentCulture)>-1) -+ distribution=DistriType.Frugalware; -+ - //(K)Ubuntu, Suse - if (sContent.IndexOf("kubuntu",StringComparison.CurrentCulture)>-1) - distribution=DistriType.Kubuntu; diff --git a/source/gnome-extra/gnomeartng/FrugalBuild b/source/gnome-extra/gnomeartng/FrugalBuild deleted file mode 100644 index dc4f691..0000000 --- a/source/gnome-extra/gnomeartng/FrugalBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: bouleetbil - -pkgname=gnomeartng -pkgver=0.7.0 -pkgrel=2 -pkgdesc="Manage your Gnome Desktop from arts.gnome.org" -depends=('gnome-sharp' 'gnome-desktop-sharp>=2.24.0-1') -options=('scriptlet') -Finclude berlios mono -source=($source Fix_FwDistribution.diff) -groups=('gnome-extra') -archs=('i686' 'x86_64' 'ppc') -sha1sums=('168476d7421b57043285fe7588c5a353bae2e07e' \ - 'eb566101b8e9863652ffda8d62fe012361d838db') -_F_desktop_categories="Utility;" -_F_desktop_icon="$pkgname" - -build() { - Fcd - Fpatchall - Fmonoexport - gmcs `pkg-config --libs gtk-sharp-2.0 glade-sharp-2.0 gnome-sharp-2.0 gconf-sharp-2.0` \ - -resource:gui.glade -r:/usr/lib/mono/2.0/Mono.Posix.dll -r:ICSharpCode.SharpZipLib \ - -r:System.Windows.Forms.dll -recurse:./src/*.cs -out:GnomeArtNg.exe || Fdie - Fmonocleanup - Fmkdir /usr/lib/$pkgname/ - Fcp "$pkgname-$pkgver/GnomeArtNg.exe" "usr/lib/$pkgname/GnomeArtNg.exe" - Fwrapper "mono /usr/lib/$pkgname/GnomeArtNg.exe" $pkgname - mv images/gnome.png images/$pkgname.png || Fdie - Ficonrel images/$pkgname.png - Fdesktop2 -} From bouleetbil at frogdev.info Wed Apr 6 21:08:15 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:08:15 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-tweak-tool-3.0.0-2-x86_64 *replace gnomeartng Message-ID: <20110406190815.360D61358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2c487816e162b5a487e67a6526377539de042ecd commit 2c487816e162b5a487e67a6526377539de042ecd Author: bouleetbil Date: Wed Apr 6 21:08:07 2011 +0200 gnome-tweak-tool-3.0.0-2-x86_64 *replace gnomeartng diff --git a/source/gnome/gnome-tweak-tool/FrugalBuild b/source/gnome/gnome-tweak-tool/FrugalBuild index bd06a5d..84a5c9a 100644 --- a/source/gnome/gnome-tweak-tool/FrugalBuild +++ b/source/gnome/gnome-tweak-tool/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-tweak-tool pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="A tool to customize advanced GNOME 3 options." depends=('gnome-shell' 'pygobject') makedepends=('intltool') @@ -12,4 +12,4 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_desktop="y" Finclude gnome gnome-scriptlet sha1sums=('280f03d70262c0e008b17c6b9b6f4d7dded8f609') - +replaces=('gnomeartng') From bouleetbil at frogdev.info Wed Apr 6 21:12:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:12:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: pan-0.134-1-x86_64 Message-ID: <20110406191254.4C7151358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=529c47583841c1a61dec1fee8345fcd404c3b0d7 commit 529c47583841c1a61dec1fee8345fcd404c3b0d7 Author: bouleetbil Date: Wed Apr 6 21:12:48 2011 +0200 pan-0.134-1-x86_64 *Version bump diff --git a/source/gnome-extra/pan/FrugalBuild b/source/gnome-extra/pan/FrugalBuild index a6c3f76..16c0278 100644 --- a/source/gnome-extra/pan/FrugalBuild +++ b/source/gnome-extra/pan/FrugalBuild @@ -3,14 +3,13 @@ # Contributor: BMH1980 pkgname=pan -pkgver=0.133 -pkgrel=2 +pkgver=0.134 +pkgrel=1 pkgdesc="A newsreader for GNOME" url="http://pan.rebelbase.com/" license="GPL2" up2date="lynx -dump $url/download/releases/|sed -n 's|.*/\(.*\)/$|\1|;$ p'" -source=($url/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2 \ - pan-0.133-gcc44.patch pan-0.133-gmime24.patch) +source=($url/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2) groups=('gnome-extra') archs=('i686' 'x86_64') depends=('libxml2>=2.7.8' 'gmime' 'gtkspell' 'pcre' 'pango') @@ -18,9 +17,7 @@ makedepends=('intltool') _F_gnome_desktop="y" Finclude gnome-scriptlet -sha1sums=('a0bd98ea1ba174800896611e3305a6b6d8dbde2f' \ - 'b2953a3f3ab936d946994c64c19a291457fcb005' \ - 'bde1d211592e8810478b7e04907e6f8db2158480') +sha1sums=('7ef9385e59edf7d511ad3de6c39482297c820685') build() @@ -30,7 +27,6 @@ build() export CXXFLAGS="$CXXFLAGS -fPIC" fi Fpatchall - Fautoreconf Fmake Fmakeinstall Fbuild_gnome_scriptlet diff --git a/source/gnome-extra/pan/pan-0.133-gcc44.patch b/source/gnome-extra/pan/pan-0.133-gcc44.patch deleted file mode 100644 index f2ccce5..0000000 --- a/source/gnome-extra/pan/pan-0.133-gcc44.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -Naur pan-0.133-orig/pan/general/log.h pan-0.133/pan/general/log.h ---- pan-0.133-orig/pan/general/log.h 2007-08-01 11:00:01.000000000 -0600 -+++ pan-0.133/pan/general/log.h 2009-05-15 16:03:53.699935401 -0600 -@@ -20,6 +20,7 @@ - #ifndef __Log_h__ - #define __Log_h__ - -+#include - #include - #include - #include -diff -Naur pan-0.133-orig/pan/general/progress.cc pan-0.133/pan/general/progress.cc ---- pan-0.133-orig/pan/general/progress.cc 2007-08-01 11:00:01.000000000 -0600 -+++ pan-0.133/pan/general/progress.cc 2009-05-15 16:00:06.843924198 -0600 -@@ -19,6 +19,7 @@ - - #include - #include -+#include - #include "progress.h" - #include "string-view.h" - -diff -Naur pan-0.133-orig/pan/usenet-utils/numbers.cc pan-0.133/pan/usenet-utils/numbers.cc ---- pan-0.133-orig/pan/usenet-utils/numbers.cc 2008-07-04 09:01:53.000000000 -0600 -+++ pan-0.133/pan/usenet-utils/numbers.cc 2009-05-15 16:04:48.354310199 -0600 -@@ -22,6 +22,7 @@ - #include - #include "numbers.h" - #include -+#include - - using namespace pan; - diff --git a/source/gnome-extra/pan/pan-0.133-gmime24.patch b/source/gnome-extra/pan/pan-0.133-gmime24.patch deleted file mode 100644 index 872a3e3..0000000 --- a/source/gnome-extra/pan/pan-0.133-gmime24.patch +++ /dev/null @@ -1,1141 +0,0 @@ -From http://bugzilla.gnome.org/show_bug.cgi?id=541676, it's highly -experimental... - -diff -ru pan-0.133.orig/configure.in pan-0.133/configure.in ---- pan-0.133.orig/configure.in 2008-07-30 03:00:01.000000000 +0100 -+++ pan-0.133/configure.in 2009-01-08 11:50:27.000000000 +0000 -@@ -18,7 +18,7 @@ - - PCRE_REQUIRED=5.0 - GLIB_REQUIRED=2.4.0 --GMIME_REQUIRED=2.1.9 -+GMIME_REQUIRED=2.3.5 - GTK_REQUIRED=2.4.0 - GTKSPELL_REQUIRED=2.0.7 - AC_SUBST(PCRE_REQUIRED) -@@ -50,7 +50,7 @@ - - PKG_CHECK_MODULES(PCRE, libpcre >= $PCRE_REQUIRED) - AM_PATH_GLIB_2_0($GLIB_REQUIRED,,exit 1,gobject gmodule gthread) --PKG_CHECK_MODULES(GMIME, gmime-2.0 >= $GMIME_REQUIRED) -+PKG_CHECK_MODULES(GMIME, gmime-2.4 >= $GMIME_REQUIRED) - AM_PATH_GTK_2_0($GTK_REQUIRED,,exit 1,gthread) - - -diff -ru pan-0.133.orig/pan/general/utf8-utils.cc pan-0.133/pan/general/utf8-utils.cc ---- pan-0.133.orig/pan/general/utf8-utils.cc 2008-07-05 07:13:14.000000000 +0100 -+++ pan-0.133/pan/general/utf8-utils.cc 2009-01-08 11:50:24.000000000 +0000 -@@ -136,7 +136,7 @@ - { - std::string s = content_to_utf8 (header, fallback_charset1, fallback_charset2); - if (header.strstr ("=?")) { -- char * decoded (g_mime_utils_8bit_header_decode ((const guchar*) s.c_str())); -+ char * decoded (g_mime_utils_header_decode_text (s.c_str())); - s = clean_utf8 (decoded); - g_free (decoded); - } -@@ -147,16 +147,27 @@ - pan :: mime_part_to_utf8 (GMimePart * part, - const char * fallback_charset) - { -+ GMimeDataWrapper *content; -+ GMimeStream *stream; -+ const char *charset; -+ GByteArray *buffer; - std::string ret; - - g_return_val_if_fail (GMIME_IS_PART(part), ret); - -- size_t content_len (0); -- const char * specified_charset (g_mime_object_get_content_type_parameter (GMIME_OBJECT (part), "charset")); -- const char * content = g_mime_part_get_content (part, &content_len); -- if (content && content_len) -- ret = content_to_utf8 (StringView (content, content_len), specified_charset, fallback_charset); -+ charset = g_mime_object_get_content_type_parameter (GMIME_OBJECT (part), "charset"); -+ content = g_mime_part_get_content_object (part); - -+ stream = g_mime_stream_mem_new (); -+ g_mime_data_wrapper_write_to_stream (content, stream); -+ g_object_unref (content); -+ -+ buffer = ((GMimeStreamMem *) stream)->buffer; -+ -+ ret = content_to_utf8 (StringView ((const char *) buffer->data, buffer->len), charset, fallback_charset); -+ -+ g_object_unref (stream); -+ - return ret; - } - -diff -ru pan-0.133.orig/pan/gui/body-pane.cc pan-0.133/pan/gui/body-pane.cc ---- pan-0.133.orig/pan/gui/body-pane.cc 2008-07-06 15:20:54.000000000 +0100 -+++ pan-0.133/pan/gui/body-pane.cc 2009-01-08 11:50:26.000000000 +0000 -@@ -874,7 +874,7 @@ - return; - - GMimePart * part = GMIME_PART (obj); -- const GMimeContentType * type = g_mime_object_get_content_type (GMIME_OBJECT (part)); -+ GMimeContentType * type = g_mime_object_get_content_type (GMIME_OBJECT (part)); - - // decide whether or not this part is a picture - bool is_image (g_mime_content_type_is_type (type, "image", "*")); -@@ -956,7 +956,7 @@ - } - } - void --BodyPane :: foreach_part_cb (GMimeObject* o, gpointer self) -+BodyPane :: foreach_part_cb (GMimeObject* /*parent*/, GMimeObject* o, gpointer self) - { - if (GMIME_IS_MULTIPART (o)) - g_mime_multipart_foreach (GMIME_MULTIPART (o), foreach_part_cb, self); -@@ -978,7 +978,7 @@ - const char * key, - const char * fallback_charset) - { -- const char * val (message ? g_mime_message_get_header (message, key) : ""); -+ const char * val (message ? g_mime_object_get_header ((GMimeObject *) message, key) : ""); - const std::string utf8_val (header_to_utf8 (val, fallback_charset)); - char * e (0); - if (strcmp (key, "From")) -@@ -1015,7 +1015,7 @@ - const char * key, - const char * fallback_charset) - { -- const char * val (msg ? g_mime_message_get_header (msg, key) : ""); -+ const char * val (msg ? g_mime_object_get_header ((GMimeObject *) msg, key) : ""); - return add_header_line (s, key_i18n, key, val, fallback_charset); - } - } -@@ -1037,19 +1037,19 @@ - - // conditional headers... - if (message) { -- const StringView newsgroups (g_mime_message_get_header (message, "Newsgroups")); -+ const StringView newsgroups (g_mime_object_get_header ((GMimeObject *) message, "Newsgroups")); - if (newsgroups.strchr(',')) { - l = add_header_line (s, message, _("Newsgroups"), "Newsgroups", fallback_charset); - w = std::max (w, l); - } -- const StringView followup_to (g_mime_message_get_header (message, "Followup-To")); -+ const StringView followup_to (g_mime_object_get_header ((GMimeObject *) message, "Followup-To")); - if (!followup_to.empty() && (followup_to!=newsgroups)) { - l = add_header_line (s, message, _("Followup-To"), "Followup-To", fallback_charset); - w = std::max (w, l); - } -- const StringView reply_to (g_mime_message_get_header (message, "Reply-To")); -+ const StringView reply_to (g_mime_object_get_header ((GMimeObject *) message, "Reply-To")); - if (!reply_to.empty()) { -- const StringView from (g_mime_message_get_header (message, "From")); -+ const StringView from (g_mime_object_get_header ((GMimeObject *) message, "From")); - StringView f_addr, f_name, rt_addr, rt_name; - GNKSA :: do_check_from (from, f_addr, f_name, false); - GNKSA :: do_check_from (reply_to, rt_addr, rt_name, false); -@@ -1070,7 +1070,7 @@ - - // set the x-face... - GdkPixbuf * pixbuf (0); -- const char * pch = message ? g_mime_message_get_header (message, "X-Face") : 0; -+ const char * pch = message ? g_mime_object_get_header ((GMimeObject *) message, "X-Face") : 0; - if (pch && _xface->window) - pixbuf = pan_gdk_pixbuf_create_from_x_face (gtk_widget_get_colormap(_xface), _xface->window, pch); - gtk_image_set_from_pixbuf (GTK_IMAGE(_xface), pixbuf); -@@ -1101,7 +1101,7 @@ - // maybe add the headers - const bool do_show_headers (_prefs.get_flag ("show-all-headers", false)); - if (message && do_show_headers) { -- char * headers (g_mime_message_get_headers (message)); -+ char * headers (g_mime_object_get_headers ((GMimeObject *) message)); - GtkTextIter end; - gtk_text_buffer_get_end_iter (_buffer, &end); - StringView line, v(headers); -@@ -1119,7 +1119,7 @@ - - // set the text buffer... - if (message) -- g_mime_message_foreach_part (message, foreach_part_cb, this); -+ g_mime_message_foreach (message, foreach_part_cb, this); - - // if there was a picture, scroll to it. - // otherwise scroll to the top of the body. -@@ -1514,7 +1514,7 @@ - const char * fallback_charset_1, - const char * fallback_charset_2) - { -- const StringView v (g_mime_message_get_header (msg, key)); -+ const StringView v (g_mime_object_get_header ((GMimeObject *) msg, key)); - std::string s; - if (!v.empty()) - s = header_to_utf8 (v, fallback_charset_1, fallback_charset_2); -@@ -1527,7 +1527,7 @@ - std::string body; - }; - -- void get_utf8_body_foreach_part (GMimeObject *o, gpointer user_data) -+ void get_utf8_body_foreach_part (GMimeObject * /*parent*/, GMimeObject *o, gpointer user_data) - { - if (GMIME_IS_MULTIPART(o)) - { -@@ -1538,7 +1538,7 @@ - else - { - GMimePart * part = GMIME_PART (o); -- const GMimeContentType * type = g_mime_object_get_content_type (o); -+ GMimeContentType * type = g_mime_object_get_content_type (o); - const bool is_text (g_mime_content_type_is_type (type, "text", "*")); - if (is_text) - { -@@ -1555,7 +1555,7 @@ - if (fallback_charset) - tmp.fallback_charset = fallback_charset; - if (source) -- g_mime_message_foreach_part (source, get_utf8_body_foreach_part, &tmp); -+ g_mime_message_foreach (source, get_utf8_body_foreach_part, &tmp); - return tmp.body; - } - } -@@ -1571,7 +1571,7 @@ - - // fallback character encodings - const char * group_charset (_charset.c_str()); -- const GMimeContentType * type (g_mime_object_get_content_type (GMIME_OBJECT(_message))); -+ GMimeContentType * type (g_mime_object_get_content_type (GMIME_OBJECT(_message))); - const char * message_charset (type ? g_mime_content_type_get_parameter (type, "charset") : 0); - - /// -@@ -1585,14 +1585,14 @@ - const std::string reply_to (get_header (_message, "Reply-To", message_charset, group_charset)); - if (is_reply || fup_to=="poster") { - const std::string& to (reply_to.empty() ? from : reply_to); -- g_mime_message_add_recipients_from_string (msg, (char*)GMIME_RECIPIENT_TYPE_TO, to.c_str()); -+ g_mime_message_add_recipients_from_string (msg, GMIME_RECIPIENT_TYPE_TO, to.c_str()); - } else { - const std::string& groups (fup_to.empty() ? newsgroups : fup_to); -- g_mime_message_add_header (msg, "Newsgroups", groups.c_str()); -+ g_mime_object_append_header ((GMimeObject *) msg, "Newsgroups", groups.c_str()); - } - - // Subject: -- StringView v = g_mime_message_get_header (_message, "Subject"); -+ StringView v = g_mime_object_get_header ((GMimeObject *) _message, "Subject"); - std::string h = header_to_utf8 (v, message_charset, group_charset); - std::string val (normalize_subject_re (h)); - if (val.find ("Re:") != 0) // add "Re: " if we don't have one -@@ -1601,22 +1601,22 @@ - - // attribution lines - -- const char * cpch = g_mime_message_get_header (_message, "From"); -+ const char * cpch = g_mime_object_get_header ((GMimeObject *) _message, "From"); - h = header_to_utf8 (cpch, message_charset, group_charset); -- g_mime_message_add_header (msg, "X-Draft-Attribution-Author", h.c_str()); -+ g_mime_object_append_header ((GMimeObject *) msg, "X-Draft-Attribution-Author", h.c_str()); - - cpch = g_mime_message_get_message_id (_message); - h = header_to_utf8 (cpch, message_charset, group_charset); -- g_mime_message_add_header (msg, "X-Draft-Attribution-Id", h.c_str()); -+ g_mime_object_append_header ((GMimeObject *) msg, "X-Draft-Attribution-Id", h.c_str()); - -- char * tmp = g_mime_message_get_date_string (_message); -+ char * tmp = g_mime_message_get_date_as_string (_message); - h = header_to_utf8 (tmp, message_charset, group_charset); -- g_mime_message_add_header (msg, "X-Draft-Attribution-Date", h.c_str()); -+ g_mime_object_append_header ((GMimeObject *) msg, "X-Draft-Attribution-Date", h.c_str()); - g_free (tmp); - - // references - const char * header = "References"; -- v = g_mime_message_get_header (_message, header); -+ v = g_mime_object_get_header ((GMimeObject *) _message, header); - val.assign (v.str, v.len); - if (!val.empty()) - val += ' '; -@@ -1624,7 +1624,7 @@ - val += g_mime_message_get_message_id (_message); - val += ">"; - val = GNKSA :: trim_references (val); -- g_mime_message_add_header (msg, header, val.c_str()); -+ g_mime_object_append_header ((GMimeObject *) msg, header, val.c_str()); - - /// - /// BODY -@@ -1660,17 +1660,17 @@ - // set the clone's content object with our modified body - GMimeStream * stream = g_mime_stream_mem_new (); - g_mime_stream_write_string (stream, s.c_str()); -- GMimeDataWrapper * wrapper = g_mime_data_wrapper_new_with_stream (stream, GMIME_PART_ENCODING_8BIT); -+ GMimeDataWrapper * wrapper = g_mime_data_wrapper_new_with_stream (stream, GMIME_CONTENT_ENCODING_8BIT); - GMimePart * part = g_mime_part_new (); - GMimeContentType * new_type = g_mime_content_type_new_from_string ("text/plain; charset=UTF-8"); -- g_mime_part_set_content_type (part, new_type); -+ g_mime_object_set_content_type ((GMimeObject *) part, new_type); - g_mime_part_set_content_object (part, wrapper); -- g_mime_part_set_encoding (part, GMIME_PART_ENCODING_8BIT); -+ g_mime_part_set_content_encoding (part, GMIME_CONTENT_ENCODING_8BIT); - g_mime_message_set_mime_part (msg, GMIME_OBJECT(part)); - g_object_unref (wrapper); - g_object_unref (part); - g_object_unref (stream); --//std::cerr << LINE_ID << " here is the modified clone\n [" << g_mime_message_to_string(msg) << ']' << std::endl; -+//std::cerr << LINE_ID << " here is the modified clone\n [" << g_mime_object_to_string((GMimeObject *) msg) << ']' << std::endl; - } - - return msg; -diff -ru pan-0.133.orig/pan/gui/body-pane.h pan-0.133/pan/gui/body-pane.h ---- pan-0.133.orig/pan/gui/body-pane.h 2008-07-04 18:57:39.000000000 +0100 -+++ pan-0.133/pan/gui/body-pane.h 2009-01-08 11:50:26.000000000 +0000 -@@ -86,7 +86,7 @@ - void append_part (GMimeObject*, GtkAllocation*); - static gboolean expander_activated_idle (gpointer self); - static void expander_activated_cb (GtkExpander*, gpointer self); -- static void foreach_part_cb (GMimeObject*, gpointer self); -+ static void foreach_part_cb (GMimeObject*, GMimeObject*, gpointer self); - static void text_size_allocated (GtkWidget*, GtkAllocation*, gpointer); - static gboolean text_size_allocated_idle_cb (gpointer p); - void text_size_allocated_idle (); -diff -ru pan-0.133.orig/pan/gui/gui.cc pan-0.133/pan/gui/gui.cc ---- pan-0.133.orig/pan/gui/gui.cc 2008-07-05 08:14:56.000000000 +0100 -+++ pan-0.133/pan/gui/gui.cc 2009-01-08 11:50:26.000000000 +0000 -@@ -31,6 +31,7 @@ - #include - #include - #include -+#include - #include - #include - #include -@@ -567,7 +568,7 @@ - ArticleCache& c, const Article& a, const std::string& path): - _data(d), _queue(q), _root(r), _prefs(p), _cache(c), _article(a), _path(path) {} - -- static void foreach_part_cb (GMimeObject *o, gpointer self) -+ static void foreach_part_cb (GMimeObject * /*parent*/, GMimeObject *o, gpointer self) - { - static_cast(self)->foreach_part (o); - } -@@ -601,7 +602,7 @@ - { - if (status == OK) { - GMimeMessage * message = _cache.get_message (_article.get_part_mids()); -- g_mime_message_foreach_part (message, foreach_part_cb, this); -+ g_mime_message_foreach (message, foreach_part_cb, this); - g_object_unref (message); - } - delete this; -@@ -1041,19 +1042,19 @@ - const char * cpch; - char * old_mid (g_strdup_printf ("<%s>", g_mime_message_get_message_id(message))); - GMimeMessage * new_message (g_mime_message_new (false)); -- g_mime_message_set_header (new_message, "Supersedes", old_mid); -+ g_mime_object_set_header ((GMimeObject *) new_message, "Supersedes", old_mid); - g_mime_message_set_sender (new_message, g_mime_message_get_sender (message)); - g_mime_message_set_subject (new_message, g_mime_message_get_subject (message)); -- g_mime_message_set_header (new_message, "Newsgroups", g_mime_message_get_header (message, "Newsgroups")); -- g_mime_message_set_header (new_message, "References", g_mime_message_get_header (message, "References")); -+ g_mime_object_set_header ((GMimeObject *) new_message, "Newsgroups", g_mime_object_get_header ((GMimeObject *) message, "Newsgroups")); -+ g_mime_object_set_header ((GMimeObject *) new_message, "References", g_mime_object_get_header ((GMimeObject *) message, "References")); - if ((cpch = g_mime_message_get_reply_to (message))) - g_mime_message_set_reply_to (new_message, cpch); -- if ((cpch = g_mime_message_get_header (message, "Followup-To"))) -- g_mime_message_set_header (new_message, "Followup-To", cpch); -+ if ((cpch = g_mime_object_get_header ((GMimeObject *) message, "Followup-To"))) -+ g_mime_object_set_header ((GMimeObject *) new_message, "Followup-To", cpch); - gboolean unused (false); -- char * body (g_mime_message_get_body (message, true, &unused)); -+ char * body (g_mime_message_get_body (message, &unused)); - GMimeStream * stream = g_mime_stream_mem_new_with_buffer (body, strlen(body)); -- GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_PART_ENCODING_DEFAULT); -+ GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_CONTENT_ENCODING_DEFAULT); - GMimePart * part = g_mime_part_new (); - g_mime_part_set_content_object (part, content_object); - g_mime_message_set_mime_part (new_message, GMIME_OBJECT(part)); -@@ -1111,11 +1112,11 @@ - char * cancel_message = g_strdup_printf ("cancel <%s>", g_mime_message_get_message_id(message)); - g_mime_message_set_sender (cancel, g_mime_message_get_sender (message)); - g_mime_message_set_subject (cancel, "Cancel"); -- g_mime_message_set_header (cancel, "Newsgroups", g_mime_message_get_header (message, "Newsgroups")); -- g_mime_message_set_header (cancel, "Control", cancel_message); -+ g_mime_object_set_header ((GMimeObject *) cancel, "Newsgroups", g_mime_object_get_header ((GMimeObject *) message, "Newsgroups")); -+ g_mime_object_set_header ((GMimeObject *) cancel, "Control", cancel_message); - const char * body ("Ignore\r\nArticle canceled by author using " PACKAGE_STRING "\r\n"); - GMimeStream * stream = g_mime_stream_mem_new_with_buffer (body, strlen(body)); -- GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_PART_ENCODING_DEFAULT); -+ GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_CONTENT_ENCODING_DEFAULT); - GMimePart * part = g_mime_part_new (); - g_mime_part_set_content_object (part, content_object); - g_mime_message_set_mime_part (cancel, GMIME_OBJECT(part)); -@@ -1194,12 +1195,12 @@ - newsgroups = group; - } - if (!newsgroups.empty()) -- g_mime_message_add_header (message, "Newsgroups", newsgroups.c_str()); -+ g_mime_object_append_header ((GMimeObject *) message, "Newsgroups", newsgroups.c_str()); - - // content type - GMimePart * part = g_mime_part_new (); -- g_mime_part_set_content_type (part, g_mime_content_type_new_from_string ("text/plain; charset=UTF-8")); -- g_mime_part_set_encoding (part, GMIME_PART_ENCODING_8BIT); -+ g_mime_object_set_content_type ((GMimeObject *) part, g_mime_content_type_new_from_string ("text/plain; charset=UTF-8")); -+ g_mime_part_set_content_encoding (part, GMIME_CONTENT_ENCODING_8BIT); - g_mime_message_set_mime_part (message, GMIME_OBJECT(part)); - g_object_unref (part); - -diff -ru pan-0.133.orig/pan/gui/pan.cc pan-0.133/pan/gui/pan.cc ---- pan-0.133.orig/pan/gui/pan.cc 2008-07-04 19:30:29.000000000 +0100 -+++ pan-0.133/pan/gui/pan.cc 2009-01-08 11:50:26.000000000 +0000 -@@ -211,7 +211,7 @@ - textdomain (GETTEXT_PACKAGE); - - g_thread_init (0); -- g_mime_init (GMIME_INIT_FLAG_UTF8); -+ g_mime_init (GMIME_ENABLE_RFC2047_WORKAROUNDS); - - bool gui(true), nzb(false); - std::string url; -diff -ru pan-0.133.orig/pan/gui/post-ui.cc pan-0.133/pan/gui/post-ui.cc ---- pan-0.133.orig/pan/gui/post-ui.cc 2008-07-13 14:32:11.000000000 +0100 -+++ pan-0.133/pan/gui/post-ui.cc 2009-01-08 11:50:26.000000000 +0000 -@@ -529,8 +529,8 @@ - { - std::string url, to, groups; - gboolean unused; -- char * headers (g_mime_message_get_headers (message)); -- char * body (g_mime_message_get_body (message, true, &unused)); -+ char * headers (g_mime_object_get_headers ((GMimeObject *) message)); -+ char * body (g_mime_message_get_body (message, &unused)); - StringView key, val, v(headers); - v.trim (); - while (v.pop_token (val, '\n') && val.pop_token(key,':')) { -@@ -629,7 +629,7 @@ - *** If this is email only, skip the rest of the posting... - *** we only stayed this long to get check_message() - **/ -- const StringView groups (g_mime_message_get_header (message, "Newsgroups")); -+ const StringView groups (g_mime_object_get_header ((GMimeObject *) message, "Newsgroups")); - if (groups.empty()) { - maybe_mail_message (message); - return true; -@@ -903,9 +903,9 @@ - */ - void pan_g_mime_message_set_message_id (GMimeMessage *msg, const char *mid) - { -- g_mime_message_add_header (msg, "Message-ID", mid); -+ g_mime_object_append_header ((GMimeObject *) msg, "Message-ID", mid); - char * bracketed = g_strdup_printf ("<%s>", mid); -- g_mime_header_set (GMIME_OBJECT(msg)->headers, "Message-ID", bracketed); -+ g_mime_header_list_set (GMIME_OBJECT(msg)->headers, "Message-ID", bracketed); - g_free (bracketed); - } - } -@@ -928,27 +928,27 @@ - // headers from the ui: To - const StringView to (gtk_entry_get_text (GTK_ENTRY(_to_entry))); - if (!to.empty()) -- g_mime_message_add_recipients_from_string (msg, (char*)GMIME_RECIPIENT_TYPE_TO, to.str); -+ g_mime_message_add_recipients_from_string (msg, GMIME_RECIPIENT_TYPE_TO, to.str); - - // headers from the ui: Newsgroups - const StringView groups (gtk_entry_get_text (GTK_ENTRY(_groups_entry))); - if (!groups.empty()) -- g_mime_message_set_header (msg, "Newsgroups", groups.str); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", groups.str); - - // headers from the ui: Followup-To - const StringView followupto (gtk_entry_get_text (GTK_ENTRY(_followupto_entry))); - if (!followupto.empty()) -- g_mime_message_set_header (msg, "Followup-To", followupto.str); -+ g_mime_object_set_header ((GMimeObject *) msg, "Followup-To", followupto.str); - - // headers from the ui: Reply-To - const StringView replyto (gtk_entry_get_text (GTK_ENTRY(_replyto_entry))); - if (!replyto.empty()) -- g_mime_message_set_header (msg, "Reply-To", replyto.str); -+ g_mime_object_set_header ((GMimeObject *) msg, "Reply-To", replyto.str); - - // add the 'hidden headers' - foreach_const (str2str_t, _hidden_headers, it) - if ((mode==DRAFTING) || (it->first.find ("X-Draft-")!=0)) -- g_mime_message_set_header (msg, it->first.c_str(), it->second.c_str()); -+ g_mime_object_set_header ((GMimeObject *) msg, it->first.c_str(), it->second.c_str()); - - // build headers from the 'more headers' entry field - std::map headers; -@@ -964,14 +964,14 @@ - val.trim (); - std::string key_str (key.to_string()); - if (extra_header_is_editable (key, val)) -- g_mime_message_set_header (msg, key.to_string().c_str(), -- val.to_string().c_str()); -+ g_mime_object_set_header ((GMimeObject *) msg, key.to_string().c_str(), -+ val.to_string().c_str()); - } - g_free (pch); - - // User-Agent - if (mode==POSTING && _prefs.get_flag (USER_AGENT_PREFS_KEY, true)) -- g_mime_message_set_header (msg, "User-Agent", get_user_agent()); -+ g_mime_object_set_header ((GMimeObject *) msg, "User-Agent", get_user_agent()); - - // Message-ID - if (mode==POSTING && _prefs.get_flag (MESSAGE_ID_PREFS_KEY, false)) { -@@ -987,22 +987,22 @@ - const std::string charset ((mode==POSTING && !_charset.empty()) ? _charset : "UTF-8"); - if (charset != "UTF-8") { - // add a wrapper to convert from UTF-8 to $charset -- GMimeStream * tmp = g_mime_stream_filter_new_with_stream (stream); -+ GMimeStream * tmp = g_mime_stream_filter_new (stream); - g_object_unref (stream); - GMimeFilter * filter = g_mime_filter_charset_new ("UTF-8", charset.c_str()); - g_mime_stream_filter_add (GMIME_STREAM_FILTER(tmp), filter); - g_object_unref (filter); - stream = tmp; - } -- GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_PART_ENCODING_DEFAULT); -+ GMimeDataWrapper * content_object = g_mime_data_wrapper_new_with_stream (stream, GMIME_CONTENT_ENCODING_DEFAULT); - g_object_unref (stream); - GMimePart * part = g_mime_part_new (); - pch = g_strdup_printf ("text/plain; charset=%s", charset.c_str()); - GMimeContentType * type = g_mime_content_type_new_from_string (pch); - g_free (pch); -- g_mime_part_set_content_type (part, type); // part owns type now. type isn't refcounted. -+ g_mime_object_set_content_type ((GMimeObject *) part, type); // part owns type now. type isn't refcounted. - g_mime_part_set_content_object (part, content_object); -- g_mime_part_set_encoding (part, GMIME_PART_ENCODING_8BIT); -+ g_mime_part_set_content_encoding (part, GMIME_CONTENT_ENCODING_8BIT); - g_object_unref (content_object); - g_mime_message_set_mime_part (msg, GMIME_OBJECT(part)); - g_object_unref (part); -@@ -1036,7 +1036,7 @@ - - errno = 0; - std::ofstream o (filename); -- char * pch = g_mime_message_to_string (msg); -+ char * pch = g_mime_object_to_string ((GMimeObject *) msg); - o << pch; - o.close (); - -@@ -1504,16 +1504,16 @@ - std::string s = utf8ize (g_mime_message_get_subject (message)); - gtk_entry_set_text (GTK_ENTRY(_subject_entry), s.c_str()); - -- s = utf8ize (g_mime_message_get_header (message, "Newsgroups")); -+ s = utf8ize (g_mime_object_get_header ((GMimeObject *) message, "Newsgroups")); - gtk_entry_set_text (GTK_ENTRY(_groups_entry), s.c_str()); - -- s = utf8ize (g_mime_message_get_header (message, "Followup-To")); -+ s = utf8ize (g_mime_object_get_header ((GMimeObject *) message, "Followup-To")); - gtk_entry_set_text (GTK_ENTRY(_followupto_entry), s.c_str()); - -- s = utf8ize (g_mime_message_get_header (message, "Reply-To")); -+ s = utf8ize (g_mime_object_get_header ((GMimeObject *) message, "Reply-To")); - gtk_entry_set_text (GTK_ENTRY(_replyto_entry), s.c_str()); - -- const InternetAddressList * addresses = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO); -+ InternetAddressList * addresses = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO); - char * pch = internet_address_list_to_string (addresses, true); - s = utf8ize (pch); - gtk_entry_set_text (GTK_ENTRY(_to_entry), s.c_str()); -@@ -1521,16 +1521,34 @@ - - // update 'other headers' - SetMessageForeachHeaderData data; -- if (message->mime_part && g_mime_header_has_raw (message->mime_part->headers)) -- g_mime_header_foreach (message->mime_part->headers, set_message_foreach_header_func, &data); -- g_mime_header_foreach (GMIME_OBJECT(message)->headers, set_message_foreach_header_func, &data); -+ const char *name, *value; -+ GMimeHeaderIter iter; -+ -+ if (message->mime_part && g_mime_header_list_has_raw (message->mime_part->headers)) { -+ if (g_mime_header_list_get_iter (message->mime_part->headers, &iter)) { -+ do { -+ value = g_mime_header_iter_get_value (&iter); -+ name = g_mime_header_iter_get_name (&iter); -+ set_message_foreach_header_func (name, value, &data); -+ } while (g_mime_header_iter_next (&iter)); -+ } -+ } -+ -+ if (g_mime_header_list_get_iter (GMIME_OBJECT (message)->headers, &iter)) { -+ do { -+ value = g_mime_header_iter_get_value (&iter); -+ name = g_mime_header_iter_get_name (&iter); -+ set_message_foreach_header_func (name, value, &data); -+ } while (g_mime_header_iter_next (&iter)); -+ } -+ - s = utf8ize (data.visible_headers); - gtk_text_buffer_set_text (_headers_buf, s.c_str(), -1); - _hidden_headers = data.hidden_headers; - - // update body - int ignored; -- char * tmp = g_mime_message_get_body (message, true, &ignored); -+ char * tmp = g_mime_message_get_body (message, &ignored); - s = utf8ize (tmp); - g_free (tmp); - if (!s.empty()) { -diff -ru pan-0.133.orig/pan/usenet-utils/message-check.cc pan-0.133/pan/usenet-utils/message-check.cc ---- pan-0.133.orig/pan/usenet-utils/message-check.cc 2008-07-05 07:15:22.000000000 +0100 -+++ pan-0.133/pan/usenet-utils/message-check.cc 2009-01-08 11:50:27.000000000 +0000 -@@ -30,6 +30,7 @@ - #include "gnksa.h" - #include "message-check.h" - #include "text-massager.h" -+#include "mime-utils.h" - - using namespace pan; - -@@ -62,7 +63,7 @@ - std::string body (body_in.to_string()); - - // strip attribution -- const char * attribution = g_mime_message_get_header (message, PAN_ATTRIBUTION); -+ const char * attribution = g_mime_object_get_header ((GMimeObject *) message, PAN_ATTRIBUTION); - if (attribution && *attribution) - { - std::string::size_type attrib_start_pos = body.find (attribution); -@@ -99,7 +100,7 @@ - GMimeMessage * message) - { - // if it's not a reply, then top-posting check is moot -- if (g_mime_message_get_header (message, "References") == NULL) -+ if (g_mime_object_get_header ((GMimeObject *) message, "References") == NULL) - return; - - bool quoted_found (false); -@@ -414,7 +415,6 @@ - } - } - -- - void - MessageCheck :: message_check (const GMimeMessage * message_const, - const StringView & attribution, -@@ -432,7 +432,7 @@ - check_subject (errors, goodness, g_mime_message_get_subject (message)); - - // check the author... -- if (GNKSA::check_from (g_mime_message_get_header (message, "From"), true)) { -+ if (GNKSA::check_from (g_mime_object_get_header ((GMimeObject *) message, "From"), true)) { - errors.insert (_("Error: Bad email address.")); - goodness.raise_to_warn (); - } -@@ -440,17 +440,17 @@ - // check the body... - TextMassager tm; - gboolean is_html; -- char * body = g_mime_message_get_body (message, true, &is_html); -+ char * body = g_mime_message_get_body (message, &is_html); - if (is_html) { - errors.insert (_("Warning: Most newsgroups frown upon HTML posts.")); - goodness.raise_to_warn (); - } - check_body (errors, goodness, tm, message, body, attribution); - g_free (body); -- -+ - // check the optional followup-to... - bool followup_to_set (false); -- const char * cpch = g_mime_message_get_header (message, "Followup-To"); -+ const char * cpch = g_mime_object_get_header ((GMimeObject *) message, "Followup-To"); - if (cpch && *cpch) { - quarks_t groups; - get_nntp_rcpts (cpch, groups); -@@ -460,7 +460,7 @@ - - // check the groups... - size_t group_qty (0); -- cpch = g_mime_message_get_header (message, "Newsgroups"); -+ cpch = g_mime_object_get_header ((GMimeObject *) message, "Newsgroups"); - if (cpch && *cpch) { - quarks_t groups; - get_nntp_rcpts (cpch, groups); -@@ -469,7 +469,7 @@ - } - - // one last error check -- const InternetAddressList * list (g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO)); -+ InternetAddressList * list (g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO)); - const int n_to (internet_address_list_length (list)); - if (!group_qty && !n_to) { - errors.insert (_("Error: No Recipients.")); -diff -ru pan-0.133.orig/pan/usenet-utils/message-check-test.cc pan-0.133/pan/usenet-utils/message-check-test.cc ---- pan-0.133.orig/pan/usenet-utils/message-check-test.cc 2007-08-01 17:59:59.000000000 +0100 -+++ pan-0.133/pan/usenet-utils/message-check-test.cc 2009-01-08 11:50:27.000000000 +0000 -@@ -22,6 +22,20 @@ - std::cerr << LINE_ID << " [" << i << "][" << *it << ']' << std::endl; \ - } - -+static void -+mime_part_set_content (GMimePart *part, const char *str) -+{ -+ GMimeDataWrapper *content; -+ GMimeStream *stream; -+ -+ stream = g_mime_stream_mem_new_with_buffer (str, strlen (str)); -+ content = g_mime_data_wrapper_new_with_stream (stream, GMIME_CONTENT_ENCODING_DEFAULT); -+ g_object_unref (stream); -+ -+ g_mime_part_set_content_object (part, content); -+ g_object_unref (content); -+} -+ - int main (void) - { - g_mime_init (0); -@@ -41,11 +55,11 @@ - std::string message_id = GNKSA :: generate_message_id ("rebelbase.com"); - g_mime_message_set_message_id (msg, message_id.c_str()); - g_mime_message_set_subject (msg, "MAKE MONEY FAST"); -- g_mime_message_set_header (msg, "Organization", "Lazars Android Works"); -- g_mime_message_set_header (msg, "Newsgroups", "alt.test"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Organization", "Lazars Android Works"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", "alt.test"); - GMimePart * part = g_mime_part_new_with_type ("text", "plain"); - const char * cpch = "Hello World!"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - g_mime_message_set_mime_part (msg, GMIME_OBJECT(part)); - // this should pass the tests - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); -@@ -54,7 +68,7 @@ - - // all quoted - cpch = "> Hello World!\n> All quoted text."; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - std::vector e (errors.begin(), errors.end()); - check (errors.size() == 2) -@@ -64,7 +78,7 @@ - - // mostly quoted - cpch = "> Hello World!\n> quoted\n> text\n> foo\n> bar\nnew text"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -73,14 +87,14 @@ - - // mostly quoted border condition: 20% of message is new content (should pass) - cpch = "> Hello World!\n> quoted\n> text\n> foo\nnew text"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - check (errors.empty()) - check (goodness.is_ok()) - - // sig check: too long - cpch = "Hello!\n\n-- \nThis\nSig\nIs\nToo\nLong\n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -95,7 +109,7 @@ - "This sig line is greater than 80 characters wide. In fact, it's 84 characters wide.\n" - "This sig line is greater than 80 characters wide. In fact, it measures 95 characters in width!\n" - "This sig line is less than 80 characters wide."; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -104,7 +118,7 @@ - - // sig check: sig marker, no sig - cpch = "Hello!\n\n-- \n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -113,7 +127,7 @@ - - // sig check: okay sig - cpch = "Hello!\n\n-- \nThis is a short, narrow sig.\nIt should pass.\n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - check (errors.empty()) - check (goodness.is_ok()) -@@ -146,7 +160,7 @@ - "This sig line is greater than 80 characters wide. In fact, it's 84 characters wide.\n" - "This sig line is greater than 80 characters wide. In fact, it measures 95 characters in width!\n" - "This sig line is less than 80 characters wide."; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -155,7 +169,7 @@ - - // body empty - cpch = "\n\t\n \n-- \nThis is the sig."; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 2) -@@ -163,7 +177,7 @@ - check (e[0] == "Error: Message appears to have no new content."); - check (e[1] == "Error: Message is empty."); - cpch = "Some valid message."; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - - // empty subject - g_mime_message_set_subject (msg, ""); -@@ -175,17 +189,17 @@ - g_mime_message_set_subject (msg, "Happy Lucky Feeling"); - - // newsgroups -- g_mime_message_set_header (msg, "Newsgroups", "alt.test,unknown.group"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", "alt.test,unknown.group"); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) - check (goodness.is_warn()) - check (e[0] == "Warning: The posting profile's server doesn't carry newsgroup\n\t\"unknown.group\".\n\tIf the group name is correct, switch profiles in the \"From:\"\n\tline or edit the profile with \"Edit|Manage Posting Profiles\".") -- g_mime_message_set_header (msg, "Newsgroups", "alt.test"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", "alt.test"); - - // newsgroups w/o followup -- g_mime_message_set_header (msg, "Newsgroups", "alt.test,alt.religion.kibology,alt.binaries.sounds.mp3.indie"); -- g_mime_header_remove (GMIME_OBJECT(msg)->headers, "Followup-To"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", "alt.test,alt.religion.kibology,alt.binaries.sounds.mp3.indie"); -+ g_mime_header_list_remove (GMIME_OBJECT(msg)->headers, "Followup-To"); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -193,8 +207,8 @@ - check (e[0] == "Warning: Crossposting without setting Followup-To header.") - - // unknown follow-up -- g_mime_message_set_header (msg, "Newsgroups", "alt.test"); -- g_mime_message_set_header (msg, "Followup-To", "alt.test,unknown.group"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Newsgroups", "alt.test"); -+ g_mime_object_set_header ((GMimeObject *) msg, "Followup-To", "alt.test,unknown.group"); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -203,11 +217,11 @@ - g_mime_object_remove_header (GMIME_OBJECT(msg), "Followup-To"); - - // top posting -- g_mime_message_set_header (msg, "References", ""); -+ g_mime_object_set_header ((GMimeObject *) msg, "References", ""); - cpch = "How Fascinating!\n" - "\n" - "> Blah blah blah.\n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -216,7 +230,7 @@ - g_mime_object_remove_header (GMIME_OBJECT(msg), "References"); - - // top posting -- g_mime_message_set_header (msg, "References", ""); -+ g_mime_object_set_header ((GMimeObject *) msg, "References", ""); - cpch = "How Fascinating!\n" - "\n" - "> Blah blah blah.\n" -@@ -224,7 +238,7 @@ - "-- \n" - "Pan shouldn't mistake this signature for\n" - "original content in the top-posting check.\n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -@@ -238,7 +252,7 @@ - "\n" - "--\n" - "This is my signature.\n"; -- g_mime_part_set_content (part, cpch, strlen(cpch)); -+ mime_part_set_content (part, cpch); - MessageCheck :: message_check (msg, attribution, groups_our_server_has, errors, goodness); - e.assign (errors.begin(), errors.end()); - check (errors.size() == 1) -diff -ru pan-0.133.orig/pan/usenet-utils/mime-utils.cc pan-0.133/pan/usenet-utils/mime-utils.cc ---- pan-0.133.orig/pan/usenet-utils/mime-utils.cc 2008-07-05 07:15:24.000000000 +0100 -+++ pan-0.133/pan/usenet-utils/mime-utils.cc 2009-01-08 11:50:27.000000000 +0000 -@@ -455,10 +455,10 @@ - part->stream = g_mime_stream_mem_new (); - if (part->type != ENC_PLAIN) { - part->filter_stream = -- g_mime_stream_filter_new_with_stream (part->stream); -+ g_mime_stream_filter_new (part->stream); - part->filter = part->type == ENC_UU -- ? g_mime_filter_basic_new_type (GMIME_FILTER_BASIC_UU_DEC) -- : g_mime_filter_yenc_new (GMIME_FILTER_YENC_DIRECTION_DECODE); -+ ? g_mime_filter_basic_new (GMIME_CONTENT_ENCODING_UUENCODE, FALSE) -+ : g_mime_filter_yenc_new (FALSE); - g_mime_stream_filter_add (GMIME_STREAM_FILTER(part->filter_stream), - part->filter); - } -@@ -722,18 +722,21 @@ - { - // if the part is a multipart, check its subparts - if (GMIME_IS_MULTIPART (*part)) { -- GList * subparts = GMIME_MULTIPART (*part)->subparts; -- while (subparts) { -- GMimeObject * subpart = (GMimeObject *) subparts->data; -+ GMimeMultipart *multipart = (GMimeMultipart *) *part; -+ int count = g_mime_multipart_get_count(multipart); -+ int i; -+ -+ for (i = 0; i < count; i++) { -+ GMimeObject * subpart = g_mime_multipart_remove_at (multipart, i); - handle_uu_and_yenc_in_text_plain (&subpart); -- subparts->data = subpart; -- subparts = subparts->next; -+ g_mime_multipart_insert (multipart, i, subpart); -+ g_object_unref (subpart); - } - return; - } - - // we assume that inlined yenc and uu are only in text/plain blocks -- const GMimeContentType * content_type = g_mime_object_get_content_type (*part); -+ GMimeContentType * content_type = g_mime_object_get_content_type (*part); - if (!g_mime_content_type_is_type (content_type, "text", "plain")) - return; - -@@ -774,22 +777,22 @@ - g_mime_part_set_filename (subpart, filename); - - GMimeStream * subpart_stream = tmp_part->stream; -- content = g_mime_data_wrapper_new_with_stream (subpart_stream, GMIME_PART_ENCODING_DEFAULT); -+ content = g_mime_data_wrapper_new_with_stream (subpart_stream, GMIME_CONTENT_ENCODING_DEFAULT); - g_mime_part_set_content_object (subpart, content); -- g_mime_multipart_add_part (GMIME_MULTIPART (multipart), GMIME_OBJECT (subpart)); -+ g_mime_multipart_add (GMIME_MULTIPART (multipart), GMIME_OBJECT (subpart)); - - g_object_unref (content); - g_object_unref (subpart); - } - - // replace the old part with the new multipart -- g_mime_object_unref (*part); -+ g_object_unref (*part); - *part = GMIME_OBJECT (multipart); - } - - foreach (temp_parts_t, parts, it) - delete *it; -- g_mime_stream_unref (istream); -+ g_object_unref (istream); - } - } - -@@ -1007,3 +1010,174 @@ - { - normalize_subject (subject, STRIP_MULTIPART_NUMERATOR, setme); - } -+ -+static GMimeObject * -+handle_multipart_mixed (GMimeMultipart *multipart, gboolean *is_html); -+ -+static GMimeObject * -+handle_multipart_alternative (GMimeMultipart *multipart, gboolean *is_html) -+{ -+ GMimeObject *mime_part, *text_part = NULL; -+ GMimeContentType *type; -+ int count = g_mime_multipart_get_count (multipart); -+ -+ for (int i = 0; i < count; ++i) { -+ mime_part = g_mime_multipart_get_part (multipart, i); -+ -+ type = g_mime_object_get_content_type (mime_part); -+ if (g_mime_content_type_is_type (type, "text", "*")) { -+ if (!text_part || !g_ascii_strcasecmp (type->subtype, "plain")) { -+ *is_html = !g_ascii_strcasecmp (type->subtype, "html"); -+ text_part = mime_part; -+ } -+ } -+ } -+ -+ return text_part; -+} -+ -+static GMimeObject * -+handle_multipart_mixed (GMimeMultipart *multipart, gboolean *is_html) -+{ -+ GMimeObject *mime_part, *text_part = NULL; -+ GMimeContentType *type, *first_type = NULL; -+ int count = g_mime_multipart_get_count (multipart); -+ -+ for (int i = 0; i < count; ++i) { -+ mime_part = g_mime_multipart_get_part (multipart, i); -+ -+ type = g_mime_object_get_content_type (mime_part); -+ if (GMIME_IS_MULTIPART (mime_part)) { -+ multipart = GMIME_MULTIPART (mime_part); -+ if (g_mime_content_type_is_type (type, "multipart", "alternative")) { -+ mime_part = handle_multipart_alternative (multipart, is_html); -+ if (mime_part) -+ return mime_part; -+ } else { -+ mime_part = handle_multipart_mixed (multipart, is_html); -+ if (mime_part && !text_part) -+ text_part = mime_part; -+ } -+ } else if (g_mime_content_type_is_type (type, "text", "*")) { -+ if (!g_ascii_strcasecmp (type->subtype, "plain")) { -+ /* we got what we came for */ -+ *is_html = !g_ascii_strcasecmp (type->subtype, "html"); -+ return mime_part; -+ } -+ -+ /* if we haven't yet found a text part or if it is a type we can -+ * * understand and it is the first of that type, save it */ -+ if (!text_part || (!g_ascii_strcasecmp (type->subtype, "plain") && (first_type && -+ g_ascii_strcasecmp (type->subtype, first_type->subtype) != 0))) { -+ *is_html = !g_ascii_strcasecmp (type->subtype, "html"); -+ text_part = mime_part; -+ first_type = type; -+ } -+ } -+ } -+ -+ return text_part; -+} -+ -+#define NEEDS_DECODING(encoding) ((encoding == GMIME_CONTENT_ENCODING_BASE64) || \ -+ (encoding == GMIME_CONTENT_ENCODING_UUENCODE) || \ -+ (encoding == GMIME_CONTENT_ENCODING_QUOTEDPRINTABLE)) -+ -+static const char * -+g_mime_part_get_content (const GMimePart *mime_part, size_t *len) -+{ -+ const char *retval = NULL; -+ GMimeStream *stream; -+ -+ g_return_val_if_fail (GMIME_IS_PART (mime_part), NULL); -+ -+ if (!mime_part->content || !mime_part->content->stream) { -+ g_warning ("no content set on this mime part"); -+ return NULL; -+ } -+ -+ stream = mime_part->content->stream; -+ if (!GMIME_IS_STREAM_MEM (stream) || NEEDS_DECODING (mime_part->content->encoding)) { -+ /* Decode and cache this mime part's contents... */ -+ GMimeStream *cache; -+ GByteArray *buf; -+ -+ buf = g_byte_array_new (); -+ cache = g_mime_stream_mem_new_with_byte_array (buf); -+ -+ g_mime_data_wrapper_write_to_stream (mime_part->content, cache); -+ -+ g_mime_data_wrapper_set_stream (mime_part->content, cache); -+ g_mime_data_wrapper_set_encoding (mime_part->content, GMIME_CONTENT_ENCODING_DEFAULT); -+ g_object_unref (cache); -+ -+ *len = buf->len; -+ retval = (char *) buf->data; -+ } else { -+ GByteArray *buf = GMIME_STREAM_MEM (stream)->buffer; -+ off_t end_index = (off_t) buf->len; -+ off_t start_index = 0; -+ -+ /* check boundaries */ -+ if (stream->bound_start >= 0) -+ start_index = CLAMP (stream->bound_start, 0, (off_t) buf->len); -+ if (stream->bound_end >= 0) -+ end_index = CLAMP (stream->bound_end, 0, (off_t) buf->len); -+ if (end_index < start_index) -+ end_index = start_index; -+ -+ *len = end_index - start_index; -+ retval = (char *) buf->data + start_index; -+ } -+ -+ return retval; -+} -+ -+char *g_mime_message_get_body (GMimeMessage *message, gboolean *is_html) -+{ -+ GMimeObject *mime_part = NULL; -+ GMimeContentType *type; -+ GMimeMultipart *multipart; -+ const char *content; -+ char *body = NULL; -+ size_t len = 0; -+ -+ g_return_val_if_fail (GMIME_IS_MESSAGE (message), NULL); -+ g_return_val_if_fail (is_html != NULL, NULL); -+ -+ type = g_mime_object_get_content_type (message->mime_part); -+ if (GMIME_IS_MULTIPART (message->mime_part)) { -+ /* let's see if we can find a body in the multipart */ -+ multipart = GMIME_MULTIPART (message->mime_part); -+ if (g_mime_content_type_is_type (type, "multipart", "alternative")) -+ mime_part = handle_multipart_alternative (multipart, is_html); -+ else -+ mime_part = handle_multipart_mixed (multipart, is_html); -+ } else if (g_mime_content_type_is_type (type, "text", "*")) { -+ /* this *has* to be the message body */ -+ if (g_mime_content_type_is_type (type, "text", "html")) -+ *is_html = TRUE; -+ else -+ *is_html = FALSE; -+ mime_part = message->mime_part; -+ } -+ -+ if (mime_part != NULL) { -+ content = g_mime_part_get_content (GMIME_PART (mime_part), &len); -+ body = g_strndup (content, len); -+ } -+ -+ return body; -+} -+ -+void g_mime_message_add_recipients_from_string (GMimeMessage *message, GMimeRecipientType type, const char *string) -+{ -+ InternetAddressList *addrlist; -+ if ((addrlist = internet_address_list_parse_string (string))) { -+ for (int i = 0; i < internet_address_list_length (addrlist); ++i) { -+ InternetAddress *ia = internet_address_list_get_address (addrlist, i); -+ if (INTERNET_ADDRESS_IS_MAILBOX(ia)) -+ g_mime_message_add_recipient (message, type, internet_address_get_name(ia), internet_address_mailbox_get_addr(INTERNET_ADDRESS_MAILBOX(ia))); -+ } -+ } -+} -diff -ru pan-0.133.orig/pan/usenet-utils/mime-utils.h pan-0.133/pan/usenet-utils/mime-utils.h ---- pan-0.133.orig/pan/usenet-utils/mime-utils.h 2007-08-01 17:59:59.000000000 +0100 -+++ pan-0.133/pan/usenet-utils/mime-utils.h 2009-01-08 11:50:27.000000000 +0000 -@@ -64,4 +64,8 @@ - }; - } - -+char *g_mime_message_get_body (GMimeMessage *message, gboolean *is_html); -+void g_mime_message_add_recipients_from_string (GMimeMessage *message, GMimeRecipientType type, const char *string); -+ -+ - #endif -diff -ru pan-0.133.orig/pan.spec pan-0.133/pan.spec ---- pan-0.133.orig/pan.spec 2008-07-30 03:05:05.000000000 +0100 -+++ pan-0.133/pan.spec 2009-01-08 11:50:27.000000000 +0000 -@@ -15,14 +15,14 @@ - - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot - BuildRequires: glib2-devel >= 2.4.0 --BuildRequires: gmime-devel >= 2.1.9 -+BuildRequires: gmime-devel >= 2.3.5 - BuildRequires: gtk2-devel >= 2.4.0 - BuildRequires: pcre-devel >= 5.0 - %{!?_without_gtkspell:BuildRequires: gtkspell-devel >= 2.0.7} - - Requires: pcre >= 5.0 - Requires: glib2 >= 2.4.0 --Requires: gmime >= 2.1.9 -+Requires: gmime >= 2.3.5 - Requires: gtk2 >= 2.4.0 - %{!?_without_gtkspell:Requires: gtkspell >= 2.0.7} - From bouleetbil at frogdev.info Wed Apr 6 21:13:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:13:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: xpn-1.2.6-2-x86_64 *remove useless replace Message-ID: <20110406191322.A5B0C1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f97c919b8c0a188d8a6a11279076c2b4e6c9773a commit f97c919b8c0a188d8a6a11279076c2b4e6c9773a Author: bouleetbil Date: Wed Apr 6 21:13:13 2011 +0200 xpn-1.2.6-2-x86_64 *remove useless replace diff --git a/source/xapps-extra/xpn/FrugalBuild b/source/xapps-extra/xpn/FrugalBuild index d7803d1..4239779 100644 --- a/source/xapps-extra/xpn/FrugalBuild +++ b/source/xapps-extra/xpn/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xpn pkgver=1.2.6 -pkgrel=1 +pkgrel=2 pkgdesc="XPN (X Python Newsreader) is a graphical newsreader." rodepends=('pygtk') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge url="http://xpn.altervista.org/index-en.html" -replaces=('pan') source=($source Fix_xpn.diff) sha1sums=('e056530d9e4b4b6e250aafd0660a0e6992ca3bc5' \ 'da895b78c2e3fdc60da3f11ac1d81446d00c27ac') From bouleetbil at frogdev.info Wed Apr 6 21:16:21 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:16:21 +0200 (CEST) Subject: [Frugalware-git] gnometesting: empathy-3.0.0-2-x86_64 *replace gossip Message-ID: <20110406191621.B56831358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f8b8255927c846e59c9b9837b5b4874efc9f4ab8 commit f8b8255927c846e59c9b9837b5b4874efc9f4ab8 Author: bouleetbil Date: Wed Apr 6 21:16:08 2011 +0200 empathy-3.0.0-2-x86_64 *replace gossip diff --git a/source/gnome/empathy/FrugalBuild b/source/gnome/empathy/FrugalBuild index a8da516..71f2ce2 100644 --- a/source/gnome/empathy/FrugalBuild +++ b/source/gnome/empathy/FrugalBuild @@ -8,7 +8,7 @@ USE_SENDTO=${USE_SENDTO:-"n"} pkgname=empathy pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Empathy consists of a rich set of reusable instant messaging widgets" depends=('telepathy-glib' 'libxml2' 'enchant' 'ca-certificates' \ 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'e2fsprogs' \ @@ -38,7 +38,7 @@ if Fuse $USE_MAP; then Fconfopts="${Fconfopts[@]} --enable-map=yes" fi sha1sums=('607905a065a1d331c97076f6d59e38baadcc95d1') -replaces=('galaxium') +replaces=('galaxium' 'gossip') if Fuse $USE_SENDTO; then subpkgs=("${subpkgs[@]}" "$pkgname-nautilus-sendto") From bouleetbil at frogdev.info Wed Apr 6 21:16:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:16:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gossip *dead pkg Message-ID: <20110406191657.A50171358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=52399570e6b90b239be182b32a603dcd180494ae commit 52399570e6b90b239be182b32a603dcd180494ae Author: bouleetbil Date: Wed Apr 6 21:16:48 2011 +0200 gossip *dead pkg diff --git a/source/gnome-extra/gossip/FrugalBuild b/source/gnome-extra/gossip/FrugalBuild deleted file mode 100644 index ca2f834..0000000 --- a/source/gnome-extra/gossip/FrugalBuild +++ /dev/null @@ -1,26 +0,0 @@ -# Compiling Time: 0.32 SBU -# Maintainer: bouleetbil - -pkgname=gossip -pkgver=0.31 -pkgrel=1 -pkgdesc="Gossip is an instant messaging client for GNOME" -depends=('aspell' 'iso-codes' 'openssl>=1.0.0' 'libglade' 'loudmouth' \ - 'libidn' 'popt' 'esd' 'pango>=1.24.2-2' \ - 'gail>=2.20.0-2' 'libgnomeui>=2.24.3-2' \ - 'atk' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'gnome-vfs' 'libsm' \ - 'libxscrnsaver' 'libjpeg>=8a' 'libxdamage' 'libxinerama' 'libart_lgpl' \ - 'libxi>=1.2.1' 'libxrandr' 'libxcursor' 'loudmouth' 'gnome-vfs') -makedepends=('perl-xml-parser' 'gnome-doc-utils' 'krb5') -options=('scriptlet') -archs=('i686' 'x86_64') -groups=('gnome-extra') -_F_gnome_desktop="y" -_F_gnome_iconcache="y" -_F_gnome_scrollkeeper="y" -_F_gnome_schemas=('/etc/gconf/schemas/gossip.schemas') -Finclude gnome gnome-scriptlet -sha1sums=('7362bf8ed4f8b2d2794c1448c25b06b55d058078') -Fconfopts="${Fconfopts[@]} --enable-aspell --enable-libnotify=no" - -# optimization OK From bouleetbil at frogdev.info Wed Apr 6 21:17:23 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:17:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-user-docs-3.0.0-1-x86_64 Message-ID: <20110406191723.A730F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e9509f35b59d6fdeae8797f1faddbb895f808ded commit e9509f35b59d6fdeae8797f1faddbb895f808ded Author: bouleetbil Date: Wed Apr 6 21:17:15 2011 +0200 gnome-user-docs-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/gnome-user-docs/FrugalBuild b/source/gnome-extra/gnome-user-docs/FrugalBuild index 36829d7..ebd7b3f 100644 --- a/source/gnome-extra/gnome-user-docs/FrugalBuild +++ b/source/gnome-extra/gnome-user-docs/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=gnome-user-docs -pkgver=2.91.92 +pkgver=3.0.0 pkgrel=1 pkgdesc="User documentation for GNOME" url="http://www.gnome.org/" @@ -15,4 +15,4 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet unset MAKEFLAGS -sha1sums=('bfc9242a41550b5a4756691d3a0a43e95120629e') +sha1sums=('f714cd13a763cfa4b02cfde9472cb4af5ac319da') From bouleetbil at frogdev.info Wed Apr 6 21:19:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:19:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glade-gtk3-3.10.0-1-x86_64 Message-ID: <20110406191922.A33051358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=46679fbae60c167049399ff9466a10340978fd84 commit 46679fbae60c167049399ff9466a10340978fd84 Author: bouleetbil Date: Wed Apr 6 21:19:16 2011 +0200 glade-gtk3-3.10.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/glade-gtk3/FrugalBuild b/source/gnome-extra/glade-gtk3/FrugalBuild index e124063..b42ae55 100644 --- a/source/gnome-extra/glade-gtk3/FrugalBuild +++ b/source/gnome-extra/glade-gtk3/FrugalBuild @@ -3,7 +3,7 @@ pkgname=glade-gtk3 _F_gnome_name=glade -pkgver=3.9.2 +pkgver=3.10.0 pkgrel=1 pkgdesc="Glade is a GUI builder for GTK+3 and Gnome." depends=("gtk+3") @@ -14,7 +14,7 @@ _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('2ebef1bff9399892a6314333ac009d49497ade51') +sha1sums=('f4738485223ad4ddda9951d5fce11af2a7349c9a') build() { Fbuild From bouleetbil at frogdev.info Wed Apr 6 21:25:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:25:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glade3-3.8.0-1-x86_64 Message-ID: <20110406192511.46DA91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7655b20a76ac183c1f2a52d996bb6a3c5fb8fd96 commit 7655b20a76ac183c1f2a52d996bb6a3c5fb8fd96 Author: bouleetbil Date: Wed Apr 6 21:24:45 2011 +0200 glade3-3.8.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/glade3/FrugalBuild b/source/gnome-extra/glade3/FrugalBuild index 878c702..1488110 100644 --- a/source/gnome-extra/glade3/FrugalBuild +++ b/source/gnome-extra/glade3/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=glade3 -pkgver=3.7.3 -pkgrel=4 +pkgver=3.8.0 +pkgrel=1 pkgdesc="Glade is a GUI builder for GTK+ and Gnome. (VERSION 3)" url="http://glade.gnome.org/" depends=("devhelp>=0.23" "libxml2>=2.7.8") @@ -15,7 +15,7 @@ _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('dce6e9b2bdc3769f3f785a73d1b27c999f44e472') +sha1sums=('1d3d2410ab5f57b27fc754c97d24cbc4bc4470a2') Fconfopts="$Fconfopts --enable-gnome --enable-gtk-doc --enable-python" subpkgs=("${subpkgs[@]}" "libglade3-gnome") From achevaux at gmail.com Wed Apr 6 21:27:57 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 21:27:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: schroedinger-1.0.10-1-i686 Message-ID: <20110406192757.B3BE81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=62cfaa4cddd5214a8797cd121186d7253cefe537 commit 62cfaa4cddd5214a8797cd121186d7253cefe537 Author: centuri0 Date: Wed Apr 6 21:27:47 2011 +0200 schroedinger-1.0.10-1-i686 * new package diff --git a/source/xlib-extra/schroedinger/FrugalBuild b/source/xlib-extra/schroedinger/FrugalBuild new file mode 100755 index 0000000..249def9 --- /dev/null +++ b/source/xlib-extra/schroedinger/FrugalBuild @@ -0,0 +1,16 @@ +# Compiling Time: 0.45 SBU +# Maintainer: centuri0 + +pkgname=schroedinger +pkgver=1.0.10 +pkgrel=1 +pkgdesc="A cross-platform implementation of the Dirac video compression specification as a C library." +url="http://diracvideo.org" +depends=('orc>=0.4.10' 'libstdc++') +groups=(xlib-extra) +archs=('i686') +up2date="Flasttar $url/download/$pkgname/" +source=($url/download/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('c8af4cb2bc54b7783ac20d7f4a39db4e31c1cac0') + +# optimization OK From bouleetbil at frogdev.info Wed Apr 6 21:36:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:36:07 +0200 (CEST) Subject: [Frugalware-git] gnometesting: banshee-community-extensions *banshee replace it Message-ID: <20110406193607.985971358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=621ad6111a00ad8ae094c9e09f52170cf00c6ceb commit 621ad6111a00ad8ae094c9e09f52170cf00c6ceb Author: bouleetbil Date: Wed Apr 6 21:28:00 2011 +0200 banshee-community-extensions *banshee replace it diff --git a/source/gnome-extra/banshee-community-extensions/FrugalBuild b/source/gnome-extra/banshee-community-extensions/FrugalBuild deleted file mode 100644 index cb3b15d..0000000 --- a/source/gnome-extra/banshee-community-extensions/FrugalBuild +++ /dev/null @@ -1,28 +0,0 @@ -# Compiling Time: 0.36 SBU -# Maintainer: bouleetbil - -pkgname=banshee-community-extensions -pkgver=1.8.0 -pkgrel=2 -pkgdesc="Banshee Community Extensions" -url="http://banshee-project.org" -depends=('banshee>=1.8.0-2' 'libsamplerate' 'lirc' 'webkit-sharp') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64') -options=('scriptlet') -_F_mono_aot=0 -Finclude mono -up2date="lynx -dump $url/download/ | Flasttarbz2" -source=(http://download.banshee-project.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) -sha1sums=('c679ba17416ef9976649f9525d7d2965e2e35040') -Fconfopts="$Fconfopts --enable-gnome \ - --enable-release --disable-alarmclock \ - --disable-awn --disable-clutterflow \ - --disable-lcd --disable-lirc \ - --disable-liveradio --disable-lyrics \ - --disable-mirage --disable-radiostationfetcher \ - --disable-coverwallpaper --disable-telepathy \ - --disable-streamrecorder --disable-magnatune" - -# optimization OK From bouleetbil at frogdev.info Wed Apr 6 21:36:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:36:07 +0200 (CEST) Subject: [Frugalware-git] gnometesting: banshee-2.0.0-1-x86_64 Message-ID: <20110406193607.AA7AA1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f14bb788f512da49d2aa16ecec588e4dc439807f commit f14bb788f512da49d2aa16ecec588e4dc439807f Author: bouleetbil Date: Wed Apr 6 21:35:59 2011 +0200 banshee-2.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/banshee/FrugalBuild b/source/gnome-extra/banshee/FrugalBuild index c8a71ba..23c2c86 100644 --- a/source/gnome-extra/banshee/FrugalBuild +++ b/source/gnome-extra/banshee/FrugalBuild @@ -2,12 +2,11 @@ # Maintainer: bouleetbil # Contributor: AlexExtreme -USE_DEVEL=${USE_DEVEL:-"y"} +USE_DEVEL=${USE_DEVEL:-"n"} pkgname=banshee -_F_archive_name=$pkgname-1 -pkgver=1.9.6 -pkgrel=2 +pkgver=2.0.0 +pkgrel=1 pkgdesc="Banshee is a Mono based media player for Gnome" url="http://banshee-project.org" depends=('libxml2>=2.7.8' 'gnome-sharp>=2.24.2' 'ipod-sharp>=0.8.5' 'libgpod-sharp' 'sqlite3' 'hal' 'libmusicbrainz' 'brasero' \ @@ -31,13 +30,12 @@ if Fuse $USE_DEVEL; then source=(http://download.banshee.fm/$pkgname/unstable/$pkgver/$pkgname-$pkgver.tar.bz2) _F_cd_path=$pkgname-$pkgver else - source=(http://download.banshee-project.org/$pkgname/stable/$pkgver/$_F_archive_name-$pkgver.tar.bz2) - _F_cd_path=$_F_archive_name-$pkgver + source=(http://download.banshee-project.org/$pkgname/stable/$pkgver/$pkgname-$pkgver.tar.bz2) fi Fconfopts="$Fconfopts --enable-docs --enable-avahi --enable-ipod \ --enable-karma --enable-mtp --enable-external-ndesk-dbus \ --enable-njb --disable-debug --with-vendor-build-id=Frugalware" -sha1sums=('c8a906924254ba147e8b01f9aed98cbf7f130961') +sha1sums=('2b67fda2a15aa7eb5bc2a1e88f7013f3896913a4') build() { unset MAKEFLAGS From bouleetbil at frogdev.info Wed Apr 6 21:36:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 21:36:52 +0200 (CEST) Subject: [Frugalware-git] gnometesting: caribou-0.2.00-1-x86_64 Message-ID: <20110406193652.C0B471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7ba7a1a122d713ff4bccfc66339823e672f99c85 commit 7ba7a1a122d713ff4bccfc66339823e672f99c85 Author: bouleetbil Date: Wed Apr 6 21:36:47 2011 +0200 caribou-0.2.00-1-x86_64 *Version bump diff --git a/source/gnome-extra/caribou/FrugalBuild b/source/gnome-extra/caribou/FrugalBuild index c4a1af8..a70f50f 100644 --- a/source/gnome-extra/caribou/FrugalBuild +++ b/source/gnome-extra/caribou/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=caribou -pkgver=0.1.92 +pkgver=0.2.00 pkgrel=1 pkgdesc="A??simplified??in-place??on-screen??keyboard" -depends=('pygobject' 'gtk+3' 'clutter' 'gobject-introspection') +depends=('pygobject-cairo' 'gtk+3' 'clutter' 'gobject-introspection') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') options=('nostrip') _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('b906157335707048c098949cd1adb5514ce98129') +sha1sums=('e249630aaac7980951aa715b15dee3a04fbf4e2d') unset MAKEFLAGS From vmiklos at frugalware.org Wed Apr 6 22:22:54 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 22:22:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: systemd-24-1-i686 Message-ID: <20110406202254.8DDC21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c3d2ba15f193b72bf13f9f8f03b69824e91ff88c commit c3d2ba15f193b72bf13f9f8f03b69824e91ff88c Author: Miklos Vajna Date: Wed Apr 6 22:10:02 2011 +0200 systemd-24-1-i686 - version bump, fixing kbd layout in virtual machine consoles diff --git a/source/base/systemd/FrugalBuild b/source/base/systemd/FrugalBuild index 45433a8..18e985e 100644 --- a/source/base/systemd/FrugalBuild +++ b/source/base/systemd/FrugalBuild @@ -7,7 +7,7 @@ USE_TCP=${USE_TCP:-"n"} USE_GUI=${USE_GUI:-"y"} pkgname=systemd -pkgver=23 +pkgver=24 pkgrel=1 pkgdesc="A System and Service Manager" url="http://www.freedesktop.org/wiki/Software/systemd" @@ -17,7 +17,7 @@ options=('scriptlet') up2date="Flasttar http://www.freedesktop.org/software/$pkgname" source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.bz2 \ console.conf) -sha1sums=('43942b27c26ae1f4424f6645de9f49d936488438' \ +sha1sums=('6eb502ec8c9573fd769dab3ca8a2fc5ed8ce2680' \ 'abaa5c83d5adf2c5be188ce0de488bfa2b5a4505') if Fuse $USE_CRYPTSETUP; then From vmiklos at frugalware.org Wed Apr 6 22:30:01 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 6 Apr 2011 22:30:01 +0200 (CEST) Subject: [Frugalware-git] frugalwareutils: netconfig.service: depend on udev-settle.service Message-ID: <20110406203001.48B511358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=4483c69a171420fceac7451dbbaa8e9d4112afc0 commit 4483c69a171420fceac7451dbbaa8e9d4112afc0 Author: Miklos Vajna Date: Wed Apr 6 22:16:41 2011 +0200 netconfig.service: depend on udev-settle.service this way we can make sure the kernel module of the network card is modprobed already when we try to invoke ifconfig/dhcpcd diff --git a/netconfig/netconfig.service b/netconfig/netconfig.service index d57e5d2..5947fd4 100644 --- a/netconfig/netconfig.service +++ b/netconfig/netconfig.service @@ -1,6 +1,6 @@ [Unit] Description=Network configurator -After=syslog.target +After=syslog.target udev-settle.service [Service] Type=oneshot From bouleetbil at frogdev.info Wed Apr 6 23:00:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 6 Apr 2011 23:00:42 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110406210042.B34C01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2e31d88a7dab084348c526746f72bc1630004c3a commit 2e31d88a7dab084348c526746f72bc1630004c3a Merge: 7ba7a1a c3d2ba1 Author: bouleetbil Date: Wed Apr 6 23:00:32 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Conflicts: source/base/systemd/FrugalBuild diff --cc source/base/systemd/FrugalBuild index a185780,18e985e..5a77708 --- a/source/base/systemd/FrugalBuild +++ b/source/base/systemd/FrugalBuild @@@ -7,8 -7,8 +7,8 @@@ USE_TCP=${USE_TCP:-"n" USE_GUI=${USE_GUI:-"y"} pkgname=systemd - pkgver=23 + pkgver=24 -pkgrel=1 +pkgrel=2 pkgdesc="A System and Service Manager" url="http://www.freedesktop.org/wiki/Software/systemd" depends=('dbus' 'udev' 'pam' 'coreutils' 'libcap' 'sysvinit-initscripts' 'sysvinit-tools') diff --cc source/network-extra/aria2/FrugalBuild index e7e135e,50a2a8d..ec56ced --- a/source/network-extra/aria2/FrugalBuild +++ b/source/network-extra/aria2/FrugalBuild @@@ -1,11 -1,11 +1,11 @@@ - # Compiling Time: 0.43 SBU - # Maintainer: crazy + # Compiling Time: 1.12 SBU + # Maintainer: centuri0 pkgname=aria2 - pkgver=1.10.9 + pkgver=1.11.1 pkgrel=1 pkgdesc="aria2 is an utility for downloading files." -depends=('openssl>=1.0.0' 'libxml2' 'c-ares' 'sqlite3' 'libstdc++') +depends=('openssl>=1.0.0' 'libxml2>=2.7.8' 'c-ares' 'sqlite3' 'libstdc++') makedepends=('cvs' 'gnutls' 'xmlrpc-c') license="GPL" groups=('network-extra') From achevaux at gmail.com Wed Apr 6 23:18:20 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 6 Apr 2011 23:18:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gmerlin-1.0.0-1-i686 Message-ID: <20110406211820.49F171358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=35b35ec83a7450531084bbef687ac6bfd65c65c7 commit 35b35ec83a7450531084bbef687ac6bfd65c65c7 Author: centuri0 Date: Wed Apr 6 23:16:11 2011 +0200 gmerlin-1.0.0-1-i686 * version bump * patch removed diff --git a/source/xapps-extra/gmerlin/FrugalBuild b/source/xapps-extra/gmerlin/FrugalBuild index d4b0d09..d1de3e5 100644 --- a/source/xapps-extra/gmerlin/FrugalBuild +++ b/source/xapps-extra/gmerlin/FrugalBuild @@ -1,37 +1,19 @@ -# Compiling Time: 0.89 SBU -# Maintainer: crazy +# Compiling Time: 0.95 SBU +# Maintainer: centuri0 pkgname=gmerlin -pkgver=0.4.3 -pkgrel=2 +pkgver=1.0.0 +pkgrel=1 pkgdesc="Gmerlin is a multimedia architecture for Linux." Finclude sourceforge url="http://gmerlin.sourceforge.net/" up2date="lynx -dump http://sourceforge.net/projects/gmerlin/files/gmerlin/ | grep 'http.*gmerlin/.*gmerlin/.*/$'|sed 's|.*/\(.*\)/|\1|;q' " depends=('esd' 'libcdio' 'libxv>=1.0.4-1' 'gavl>=1.1.2' 'libmusicbrainz' 'freetype2' 'libxml2' 'transcode' \ - 'libmikmod' 'speex' 'libquicktime>=1.1.5-4' 'mjpegtools>=1.9.0-2') + 'libmikmod' 'speex' 'libquicktime>=1.1.5-4' 'mjpegtools>=1.9.0-2' 'libuuid' 'libvisual') rodepends=('gmerlin-avdecoder>=0.1.7' 'gmerlin-encoders>=0.2.5') makedepends=('esd' 'doxygen') groups=('xapps-extra') archs=('i686' 'x86_64') -options=('scriptlet') -sha1sums=('72faf18bce9545a85770b43d0c1e725c2cac9670') - -build() -{ - Fcd - Fpatchall - ./autogen.sh || Fdie - Fconf --with-cpuflags=none --disable-esd - for i in `find . -name Makefile` - do - Fsed "-O3" "$CFLAGS" $i - done - Fsed "GTK_WIDGET_REALIZED" "gtk_widget_get_realized" lib/gtk/* - Fsed "GTK_WIDGET_TOPLEVEL" "gtk_widget_is_toplevel" lib/gtk/* - make || Fdie - Fmakeinstall -} - +sha1sums=('0632d1bdb8a3fddf6ee49cb2ef6c8b14c87b8eff') # optimization OK diff --git a/source/xapps-extra/gmerlin/fix-all-desktop-files.patch b/source/xapps-extra/gmerlin/fix-all-desktop-files.patch deleted file mode 100644 index 8c23e3b..0000000 --- a/source/xapps-extra/gmerlin/fix-all-desktop-files.patch +++ /dev/null @@ -1,49 +0,0 @@ -diff -Naur gmerlin-0.3.4/apps/alsamixer/gmerlin-alsamixer.desktop.in gmerlin-0.3.4-p/apps/alsamixer/gmerlin-alsamixer.desktop.in ---- gmerlin-0.3.4/apps/alsamixer/gmerlin-alsamixer.desktop.in 2004-05-25 11:15:39.000000000 +0200 -+++ gmerlin-0.3.4-p/apps/alsamixer/gmerlin-alsamixer.desktop.in 2006-08-26 04:37:58.000000000 +0200 -@@ -7,5 +7,5 @@ - Exec=gmerlin_alsamixer - Icon=@GMERLIN_DATA_DIR@/icons/mixer_icon.png - Type=Application --Categories=Application;AudioVideo; -+Categories=Qt;Gtk;Application;AudioVideo; - -diff -Naur gmerlin-0.3.4/apps/camelot/gmerlin-camelot.desktop.in gmerlin-0.3.4-p/apps/camelot/gmerlin-camelot.desktop.in ---- gmerlin-0.3.4/apps/camelot/gmerlin-camelot.desktop.in 2004-05-25 11:15:40.000000000 +0200 -+++ gmerlin-0.3.4-p/apps/camelot/gmerlin-camelot.desktop.in 2006-08-26 04:39:33.000000000 +0200 -@@ -7,5 +7,5 @@ - Exec=camelot - Icon=@GMERLIN_DATA_DIR@/icons/camelot_icon.png - Type=Application --Categories=Application;AudioVideo; -+Categories=Qt;Gtk;Application;AudioVideo; - -diff -Naur gmerlin-0.3.4/apps/player/gmerlin-player.desktop.in gmerlin-0.3.4-p/apps/player/gmerlin-player.desktop.in ---- gmerlin-0.3.4/apps/player/gmerlin-player.desktop.in 2004-05-25 11:15:40.000000000 +0200 -+++ gmerlin-0.3.4-p/apps/player/gmerlin-player.desktop.in 2006-08-26 04:37:25.000000000 +0200 -@@ -7,5 +7,5 @@ - Exec=gmerlin - Icon=@GMERLIN_DATA_DIR@/icons/player_icon.png - Type=Application --Categories=Application;AudioVideo; -+Categories=Qt;Gtk;Application;AudioVideo; - -diff -Naur gmerlin-0.3.4/apps/plugincfg/gmerlin-plugincfg.desktop.in gmerlin-0.3.4-p/apps/plugincfg/gmerlin-plugincfg.desktop.in ---- gmerlin-0.3.4/apps/plugincfg/gmerlin-plugincfg.desktop.in 2004-05-25 11:15:41.000000000 +0200 -+++ gmerlin-0.3.4-p/apps/plugincfg/gmerlin-plugincfg.desktop.in 2006-08-26 04:38:40.000000000 +0200 -@@ -7,4 +7,4 @@ - Exec=gmerlin_plugincfg - Icon=@GMERLIN_DATA_DIR@/icons/plugincfg_icon.png - Type=Application --Categories=Application;AudioVideo; -+Categories=Qt;Gtk;Application;AudioVideo; -diff -Naur gmerlin-0.3.4/apps/transcoder/gmerlin-transcoder.desktop.in gmerlin-0.3.4-p/apps/transcoder/gmerlin-transcoder.desktop.in ---- gmerlin-0.3.4/apps/transcoder/gmerlin-transcoder.desktop.in 2004-08-03 23:47:45.000000000 +0200 -+++ gmerlin-0.3.4-p/apps/transcoder/gmerlin-transcoder.desktop.in 2006-08-26 04:36:54.000000000 +0200 -@@ -7,5 +7,5 @@ - Exec=gmerlin_transcoder - Icon=@GMERLIN_DATA_DIR@/icons/transcoder_icon.png - Type=Application --Categories=Application;AudioVideo; -+Categories=Qt;Gtk;Application;AudioVideo; - From achevaux at gmail.com Thu Apr 7 07:42:18 2011 From: achevaux at gmail.com (centuri0) Date: Thu, 7 Apr 2011 07:42:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gmerlin-encoders-1.0.0-1-i686 Message-ID: <20110407054218.2846FBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5731852cec3afc7e6f4aceba16502d25a4759ba8 commit 5731852cec3afc7e6f4aceba16502d25a4759ba8 Author: centuri0 Date: Thu Apr 7 07:41:41 2011 +0200 gmerlin-encoders-1.0.0-1-i686 * version bump diff --git a/source/xapps-extra/gmerlin-encoders/FrugalBuild b/source/xapps-extra/gmerlin-encoders/FrugalBuild index 1767990..5b90a00 100644 --- a/source/xapps-extra/gmerlin-encoders/FrugalBuild +++ b/source/xapps-extra/gmerlin-encoders/FrugalBuild @@ -1,18 +1,18 @@ # Compiling Time: 0.18 SBU -# Maintainer: crazy +# Maintainer: centuri0 pkgname=gmerlin-encoders -pkgver=0.2.9 -pkgrel=2 +pkgver=1.0.0 +pkgrel=1 pkgdesc="Various encoder plugins for gmerlin." _F_sourceforge_dirname="gmerlin" Finclude sourceforge url="http://gmerlin.sourceforge.net/" -depends=('gmerlin>=0.4.3-2') +depends=('gmerlin' 'flac') groups=('xapps-extra') archs=('i686' 'x86_64') options=('scriptlet') -sha1sums=('217c31b36389834bbb79a6101a2054f323dfc6d1') +sha1sums=('bc84b71af8f6da15cd65b0271e50cc050b5cc3a4') build() { From achevaux at gmail.com Thu Apr 7 07:42:18 2011 From: achevaux at gmail.com (centuri0) Date: Thu, 7 Apr 2011 07:42:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gmerlin-avdecoder-1.1.0-1-i686 Message-ID: <20110407054218.217271358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b731b6df2fbfb1e4f840c93ad4cb251647b6e5e9 commit b731b6df2fbfb1e4f840c93ad4cb251647b6e5e9 Author: centuri0 Date: Thu Apr 7 07:37:41 2011 +0200 gmerlin-avdecoder-1.1.0-1-i686 * version bump diff --git a/source/xapps-extra/gmerlin-avdecoder/FrugalBuild b/source/xapps-extra/gmerlin-avdecoder/FrugalBuild index 52a910c..05a2881 100644 --- a/source/xapps-extra/gmerlin-avdecoder/FrugalBuild +++ b/source/xapps-extra/gmerlin-avdecoder/FrugalBuild @@ -1,16 +1,17 @@ -# Compiling Time: 0.43 SBU -# Maintainer: crazy +# Compiling Time: 0.35 SBU +# Maintainer: centuri0 pkgname=gmerlin-avdecoder -pkgver=1.0.3 -pkgrel=3 +pkgver=1.1.0 +pkgrel=1 pkgdesc="Gmerlin_avdecoder is a general purpose media decoding library." _F_sourceforge_dirname="gmerlin" Finclude sourceforge url="http://gmerlin.sourceforge.net/" ## libsmbclient -depends=('gmerlin>=0.4.3-2' 'libmpcdec' 'libtiff' 'mpeg2dec' 'libcdio' 'libdvdread>=4.1.3' 'speex' 'libmad' \ - 'ffmpeg>=0.6' 'x264>=20100715' 'libxtst' 'libvisual') +depends=('gmerlin>=1.0.0' 'libmpcdec' 'libtiff' 'mpeg2dec' 'libcdio' 'libdvdread' 'speex' \ + 'libmad' 'ffmpeg>=0.6' 'x264>=20100715' 'libxtst' 'libvisual' 'mjpegtools' 'flac' \ + 'libdca' 'libvdpau' 'schroedinger') if [ "$CARCH" == "i686" ]; then depends=(${depends[@]} 'codecs') fi @@ -18,7 +19,7 @@ makedepends=('doxygen') groups=('xapps-extra') archs=('i686' 'x86_64') options=('scriptlet') -sha1sums=('74ce800dadadea3cb09b1b7f07db1361fe304488') +sha1sums=('1c230878456821fc5e59efd802146faf387f1deb') build() { From achevaux at gmail.com Thu Apr 7 07:59:40 2011 From: achevaux at gmail.com (centuri0) Date: Thu, 7 Apr 2011 07:59:40 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gmerlin-avdecoder-1.1.0-2-i686 Message-ID: <20110407055940.92F831358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=804a0d258bb002e4890f75d279494c5ee6c0bd1b commit 804a0d258bb002e4890f75d279494c5ee6c0bd1b Author: centuri0 Date: Thu Apr 7 07:59:18 2011 +0200 gmerlin-avdecoder-1.1.0-2-i686 * fix deps for x86_64 build diff --git a/source/xapps-extra/gmerlin-avdecoder/FrugalBuild b/source/xapps-extra/gmerlin-avdecoder/FrugalBuild index 05a2881..55dbc6d 100644 --- a/source/xapps-extra/gmerlin-avdecoder/FrugalBuild +++ b/source/xapps-extra/gmerlin-avdecoder/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gmerlin-avdecoder pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="Gmerlin_avdecoder is a general purpose media decoding library." _F_sourceforge_dirname="gmerlin" Finclude sourceforge @@ -11,9 +11,9 @@ url="http://gmerlin.sourceforge.net/" ## libsmbclient depends=('gmerlin>=1.0.0' 'libmpcdec' 'libtiff' 'mpeg2dec' 'libcdio' 'libdvdread' 'speex' \ 'libmad' 'ffmpeg>=0.6' 'x264>=20100715' 'libxtst' 'libvisual' 'mjpegtools' 'flac' \ - 'libdca' 'libvdpau' 'schroedinger') + 'libdca' 'libvdpau') if [ "$CARCH" == "i686" ]; then - depends=(${depends[@]} 'codecs') + depends=(${depends[@]} 'codecs' 'schroedinger') fi makedepends=('doxygen') groups=('xapps-extra') From bouleetbil at frogdev.info Thu Apr 7 08:20:32 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 08:20:32 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110407062032.9E0351358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c06019b3fa1f7ea7509ca28360bf478cd53b7630 commit c06019b3fa1f7ea7509ca28360bf478cd53b7630 Merge: 2e31d88 804a0d2 Author: bouleetbil Date: Thu Apr 7 08:20:16 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From bouleetbil at frogdev.info Thu Apr 7 08:26:36 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 08:26:36 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-3.0.0.2-1-x86_64 Message-ID: <20110407062636.F0B241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=cbe295718b286fb7c63602c36a7d1bf7ae864073 commit cbe295718b286fb7c63602c36a7d1bf7ae864073 Author: bouleetbil Date: Thu Apr 7 08:26:24 2011 +0200 gnome-shell-3.0.0.2-1-x86_64 *Version bump diff --git a/source/gnome/gnome-shell/FrugalBuild b/source/gnome/gnome-shell/FrugalBuild index a5eff36..21bb608 100644 --- a/source/gnome/gnome-shell/FrugalBuild +++ b/source/gnome/gnome-shell/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-shell -pkgver=3.0.0.1 +pkgver=3.0.0.2 pkgrel=1 pkgdesc="Window management and application launching for GNOME" url="http://www.gnome.org/" @@ -23,9 +23,7 @@ _F_gnome_git="n" Finclude gnome gnome-scriptlet export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/xulrunner/ replaces=('byzanz') -source=($source extensions.diff) -sha1sums=('3862fa3e086a1ff0f0707f4ddd7a4b18d44dee10' \ - '1c0a4e4818e0aa64fdd5440c6d2ca054cbad3dd9') +sha1sums=('d10cc5ff7e9004024af7dd84773e0e251af2d8e5') if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi diff --git a/source/gnome/gnome-shell/extensions.diff b/source/gnome/gnome-shell/extensions.diff deleted file mode 100644 index 6e7f349..0000000 --- a/source/gnome/gnome-shell/extensions.diff +++ /dev/null @@ -1,26 +0,0 @@ -From cbb8bdd48f2b05f8718448b596c4c2da2f34e54b Mon Sep 17 00:00:00 2001 -From: Maxim Ermilov -Date: Tue, 5 Apr 2011 05:20:44 +0400 -Subject: [PATCH] extensionSystem: add missing import - -https://bugzilla.gnome.org/show_bug.cgi?id=646333 ---- - js/ui/extensionSystem.js | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/js/ui/extensionSystem.js b/js/ui/extensionSystem.js -index eb82bc3..9dd3a47 100644 ---- a/js/ui/extensionSystem.js -+++ b/js/ui/extensionSystem.js -@@ -3,6 +3,7 @@ - const GLib = imports.gi.GLib; - const Gio = imports.gi.Gio; - const St = imports.gi.St; -+const Shell = imports.gi.Shell; - - const Config = imports.misc.config; - --- -1.7.4.2 - - From bouleetbil at frogdev.info Thu Apr 7 10:20:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 10:20:52 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gvfs-1.8.0-2-x86_64 *for help pacman-g2 to update gvfs *(subkpg and replaces/provides...) Message-ID: <20110407082052.16BEC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f1b83a2d1f8d8359a6936565de9c2c7141f24cd7 commit f1b83a2d1f8d8359a6936565de9c2c7141f24cd7 Author: bouleetbil Date: Thu Apr 7 10:19:53 2011 +0200 gvfs-1.8.0-2-x86_64 *for help pacman-g2 to update gvfs *(subkpg and replaces/provides...) diff --git a/source/xapps/gvfs/FrugalBuild b/source/xapps/gvfs/FrugalBuild index 911a057..be2b819 100644 --- a/source/xapps/gvfs/FrugalBuild +++ b/source/xapps/gvfs/FrugalBuild @@ -5,7 +5,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=gvfs pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="gvfs is a userspace virtual filesystem designed to work with the i/o abstractions of gio." url="http://www.gnome.org/" @@ -17,8 +17,8 @@ makedepends=('intltool' 'gnome-doc-utils' 'samba' 'fuse' 'libsoup>=2.32.0' \ 'bluez>=4.61' 'expat' 'openssh>=5.6p1' 'gnome-disk-utility') groups=('xapps') archs=('i686' 'x86_64' 'ppc') -replaces=('gvfs-gconf' 'gnome-mount' 'gnome-mount-nautilus') -provides=('gvfs-gconf' 'gnome-mount') +replaces=('gnome-mount' 'gnome-mount-nautilus') +provides=('gnome-mount') _F_gnome_glib="y" Finclude gnome gnome-scriptlet source=($source gvfs-libsoup.diff) @@ -60,6 +60,14 @@ subrodepends=("${subrodepends[@]}" "gvfs=$pkgver") subgroups=("${subgroups[@]}" "xapps") subarchs=("${subarchs[@]}" "i686 x86_64 ppc") +subpkgs=("${subpkgs[@]}" "gvfs-gconf") +subdescs=("${subdescs[@]}" "gvfs gconf support") +subdepends=("${subdepends[@]}" "") +subrodepends=("${subrodepends[@]}" "gvfs=$pkgver") +subgroups=("${subgroups[@]}" "xapps") +subarchs=("${subarchs[@]}" "i686 x86_64 ppc") + + Fconfopts="$Fconfopts \ --enable-http \ --enable-avahi \ @@ -115,6 +123,9 @@ build(){ #obexftp/bluez Fsplit gvfs-obexftp usr/share/gvfs/mounts/obexftp.mount Fsplit gvfs-obexftp usr/libexec/gvfsd-obexftp + + #Meta GConf for help pacman-g2 to update gvfs, can remove it after 1.5 + Fsplit gvfs-gconf usr/share/GConf } # optimization OK From bouleetbil at frogdev.info Thu Apr 7 10:25:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 10:25:29 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-3.0.0-2-x86_64 *keep script for convert gconf preferences to glib schema Message-ID: <20110407082529.919901358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=db549565c4eaa424a90e944c100d7ec2e80de947 commit db549565c4eaa424a90e944c100d7ec2e80de947 Author: bouleetbil Date: Thu Apr 7 10:24:30 2011 +0200 nautilus-3.0.0-2-x86_64 *keep script for convert gconf preferences to glib schema diff --git a/source/gnome/nautilus/FrugalBuild b/source/gnome/nautilus/FrugalBuild index 6514f2c..6c2baf8 100644 --- a/source/gnome/nautilus/FrugalBuild +++ b/source/gnome/nautilus/FrugalBuild @@ -3,13 +3,13 @@ pkgname=nautilus pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="A file manager for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'librsvg>=2.26.2-2' 'libexif' 'eject' 'desktop-file-utils' 'libgnome>=2.32.0' 'gsettings-desktop-schemas' \ 'exempi' 'unique>=2.90.0' 'gnome-desktop>=3.0.0' 'libnotify' \ 'gvfs-gphoto2>=1.7.1-4' 'gvfs-smb>=1.7.1-4' 'gvfs>=1.7.1-4') -rodepends=('nautilus-disk-utility') +rodepends=('nautilus-disk-utility' 'gvfs-gconf') makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Thu Apr 7 11:26:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 11:26:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: dhcpcd-5.2.12-1-x86_64 Message-ID: <20110407092604.946F91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e5e4ed2828f002c7bcce4099838d6450c7f22eca commit e5e4ed2828f002c7bcce4099838d6450c7f22eca Author: bouleetbil Date: Thu Apr 7 11:25:58 2011 +0200 dhcpcd-5.2.12-1-x86_64 *Version bump diff --git a/source/base/dhcpcd/FrugalBuild b/source/base/dhcpcd/FrugalBuild index 9036a79..91b8c5a 100644 --- a/source/base/dhcpcd/FrugalBuild +++ b/source/base/dhcpcd/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=dhcpcd -pkgver=5.2.11 +pkgver=5.2.12 pkgrel=1 pkgdesc="A DHCP client daemon" #url="http://dhcpcd.berlios.de" @@ -15,7 +15,7 @@ rodepends=('frugalwareutils>=0.8.2-2') _F_archive_nosort="y" up2date="lynx -dump http://roy.marples.name/projects/dhcpcd/wiki/DhcpcdDownload | tac| Flasttarbz2" source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('3b170b45af314f84008650bb7447320655969241') +sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5') backup=('etc/dhcpcd.conf') build() { From hermier at frugalware.org Thu Apr 7 12:56:19 2011 From: hermier at frugalware.org (Michel Hermier) Date: Thu, 7 Apr 2011 12:56:19 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebase-workspace-4.6.1-5-i686 Message-ID: <20110407105619.417AD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=17e75d7ae18d317e319a2fc4538b522904cd8653 commit 17e75d7ae18d317e319a2fc4538b522904cd8653 Author: Michel Hermier Date: Thu Apr 7 12:54:11 2011 +0200 kdebase-workspace-4.6.1-5-i686 * Disable gpsd and networkmanager optional dependecies. gpsd don't compile for me (I wonder how it comiled before). networkmanager should be upgraded with gnometesting and the new version is not supported. diff --git a/source/kde/kdebase-workspace/FrugalBuild b/source/kde/kdebase-workspace/FrugalBuild index a255282..613f70f 100644 --- a/source/kde/kdebase-workspace/FrugalBuild +++ b/source/kde/kdebase-workspace/FrugalBuild @@ -1,8 +1,11 @@ # Compiling Time: 17.03 SBU # Maintainer: crazy +USE_GPSD=${USE_GPSD:-"n"} +USE_NETWORKMANAGER=${USE_NETWORKMANAGER:-"n"} + pkgname=kdebase-workspace -pkgrel=4 +pkgrel=5 pkgdesc="Programs specific for the KDE4 desktop." groups=('kde') archs=('i686' 'x86_64' 'ppc') @@ -13,7 +16,7 @@ rodepends=("${rodepends[@]}" 'xorg-server>=1.6.1' 'kde-frugalware>=4.3' \ depends=() makedepends=("${makedepends[@]}" "ksgmltools2>=$_F_kde_ver" "kdelibs>=$_F_kde_ver" \ 'python' 'boost' 'bluez>=4.87' "libkdewidgets>=$_F_kde_ver" "libqtdesigner>=$_F_kde_qtver" \ - "networkmanager>=0.8" "docbook-xsl" "libdbusmenu-qt>=0.8.0" "upower" "udisks" \ + "docbook-xsl" "libdbusmenu-qt>=0.8.0" "upower" "udisks" \ "libqtdeclarative>=_F_kde_qtver") ## SURE! libkdewidgets is a DEVEL only thing I see :P ##FIXME and send upstream! ksysgurds lib want libqtdesigner but no check for it so compile error same libkdewidgets @@ -37,6 +40,10 @@ sha1sums=('e37691d88ddbf92cc95ec39849a1331404c84fd5' \ Qt4="${_F_kde_qtver}" Kde4="$_F_kde_ver" +if Fuse GPSD; then + GPSDDEP="gpsd" +fi + subpkgs=("${subpkgs[@]}" "libkephal") subdescs=("${subdescs[@]}" "API for easier handling of multihead systems.") subdepends=("${subdepends[@]}" "libqtdbus>=$Qt4 libqtgui>=$Qt4 libxext libkdecore bzip2 polkit-qt-1") @@ -607,7 +614,7 @@ rodepends=("${rodepends[@]}" "${subpkgs[@]}") subpkgs=("${subpkgs[@]}" "plasma-dataengine-geolocation") subdescs=("${subdescs[@]}" "Plasma DataEngine gor geolocation") -subdepends=("${subdepends[@]}" "gpsd libplasma>=$Kde4") +subdepends=("${subdepends[@]}" "$GPSDDEP libplasma>=$Kde4") subrodepends=("${subrodepends[@]}" "") subgroups=("${subgroups[@]}" 'kde-extra') subreplaces=("${subreplaces[@]}" '') @@ -637,13 +644,15 @@ subgroups=("${subgroups[@]}" "devel-extra kde-build") subreplaces=("${subreplaces[@]}" '') subarchs=("${subarchs[@]}" "i686 x86_64 ppc") -subpkgs=("${subpkgs[@]}" "$pkgname-solid-networkmanager") -subdescs=("${subdescs[@]}" "Solid Module for NetworkManager.") -subdepends=("${subdepends[@]}" "libxrandr libqtxml libsm") -subrodepends=("${subrodepends[@]}" "libkdesolid>=$Kde4") -subgroups=("${subgroups[@]}" 'kde-extra') ## for now is -extra -subreplaces=("${subreplaces[@]}" '') -subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') +if Fuse NETWORKMANAGER; then + subpkgs=("${subpkgs[@]}" "$pkgname-solid-networkmanager") + subdescs=("${subdescs[@]}" "Solid Module for NetworkManager.") + subdepends=("${subdepends[@]}" "libxrandr libqtxml libsm networkmanager>=0.8") + subrodepends=("${subrodepends[@]}" "libkdesolid>=$Kde4") + subgroups=("${subgroups[@]}" 'kde-extra') ## for now is -extra + subreplaces=("${subreplaces[@]}" '') + subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') +fi subpkgs=("${subpkgs[@]}" "$pkgname-wallpapers") subdescs=("${subdescs[@]}" "Kdebase Workspace Wallpapers") @@ -801,8 +810,10 @@ build() #KDE_project_install solid/networking #Fsplit $pkgname-solid-networking /\* - KDE_project_install solid/networkmanager-* - Fsplit $pkgname-solid-networkmanager /\* + if Fuse NETWORKMANAGER; then + KDE_project_install solid/networkmanager-* + Fsplit $pkgname-solid-networkmanager /\* + fi ## qgui-plugin KDE_project_install qguiplatformplugin_kde From bouleetbil at frogdev.info Thu Apr 7 13:18:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 13:18:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: seahorse-3.0.0-1-x86_64 Message-ID: <20110407111811.361421358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=540357d3bd711dac29d14dd63b9c5b2b1d0f8624 commit 540357d3bd711dac29d14dd63b9c5b2b1d0f8624 Author: bouleetbil Date: Thu Apr 7 13:18:00 2011 +0200 seahorse-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/seahorse/FrugalBuild b/source/gnome-extra/seahorse/FrugalBuild index 0e71e6d..a50d199 100644 --- a/source/gnome-extra/seahorse/FrugalBuild +++ b/source/gnome-extra/seahorse/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Priyank Gosalia pkgname=seahorse -pkgver=2.91.93 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="A GNOME application for managing PGP keys." url="http://www.seahorse.sourceforge.net/" depends=('gnutls>=2.8.6-1' 'gtksourceview>=2.10.0-4' 'gnupg>=1.4.9-2' 'libldap>=2.4.16' \ - 'gpgme' 'libsoup>=2.30.0' 'dbus' 'dbus-glib' 'libxml2' \ + 'gpgme' 'libsoup>=2.34.0' 'dbus' 'dbus-glib' 'libxml2' \ 'libnotify>=0.7' 'openssh' 'gconf>=2.28.1' 'avahi>=0.6.24-5' 'gnome-keyring') makedepends=('gettext' 'openldap' 'intltool' 'pkgconfig' 'gnome-doc-utils') groups=('gnome-extra') @@ -18,7 +18,7 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_mime="y" Finclude gnome gnome-scriptlet -sha1sums=('efb96ac42cde93dc65315a1d4d12f091774c3cc6') +sha1sums=('ed20146d6b62eb3bfed5783b752dadb2c5309ca5') unset MAKEFLAGS Fconfopts="${Fconfopts[@]} -enable-ldap --enable-hkp --enable-libnotify \ --with-keyserver --enable-ssh --enable-dbus --enable-avahi \ From bouleetbil at frogdev.info Thu Apr 7 13:40:44 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 13:40:44 +0200 (CEST) Subject: [Frugalware-git] gnometesting: hamster-applet-2.30.2-4-x86_64 *rebuild with gnome3 Message-ID: <20110407114044.3EB551358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9fdf840dc7833436cb6b350913a4553acb8fed9d commit 9fdf840dc7833436cb6b350913a4553acb8fed9d Author: bouleetbil Date: Thu Apr 7 13:40:29 2011 +0200 hamster-applet-2.30.2-4-x86_64 *rebuild with gnome3 diff --git a/source/gnome-extra/hamster-applet/FrugalBuild b/source/gnome-extra/hamster-applet/FrugalBuild index 09a40b5..46681fe 100644 --- a/source/gnome-extra/hamster-applet/FrugalBuild +++ b/source/gnome-extra/hamster-applet/FrugalBuild @@ -3,9 +3,9 @@ pkgname=hamster-applet pkgver=2.30.2 -pkgrel=3 +pkgrel=4 pkgdesc="Project Hamster is time tracking for masses. " -depends=('gnome-applets>=2.30.0' 'gnome-python-desktop-applet>=2.30.2-3' 'python-sqlite3' 'libxext' \ +depends=('gnome-applets>=2.91.0' 'gnome-python-desktop-applet>=2.30.2-3' 'python-sqlite3' 'libxext' \ 'libxdmcp' 'libxau>=1.0.4' 'gtk+2>=2.20.0-2' 'freetype2' 'libffi' 'libxdamage' 'libxml2>=2.7.8') makedepends=('perl-xml-parser' 'scrnsaverproto' 'intltool' 'gnome-doc-utils') groups=('gnome-extra') From bouleetbil at frogdev.info Thu Apr 7 14:49:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 14:49:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nautilus-3.0.0-3-x86_64 *remove useless dep Message-ID: <20110407124954.273C41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a73d8f057f4544a38eebadbd12172ecde22471e8 commit a73d8f057f4544a38eebadbd12172ecde22471e8 Author: bouleetbil Date: Thu Apr 7 14:49:35 2011 +0200 nautilus-3.0.0-3-x86_64 *remove useless dep diff --git a/source/gnome/nautilus/FrugalBuild b/source/gnome/nautilus/FrugalBuild index 6c2baf8..f40f69f 100644 --- a/source/gnome/nautilus/FrugalBuild +++ b/source/gnome/nautilus/FrugalBuild @@ -3,13 +3,13 @@ pkgname=nautilus pkgver=3.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="A file manager for GNOME" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'librsvg>=2.26.2-2' 'libexif' 'eject' 'desktop-file-utils' 'libgnome>=2.32.0' 'gsettings-desktop-schemas' \ 'exempi' 'unique>=2.90.0' 'gnome-desktop>=3.0.0' 'libnotify' \ 'gvfs-gphoto2>=1.7.1-4' 'gvfs-smb>=1.7.1-4' 'gvfs>=1.7.1-4') -rodepends=('nautilus-disk-utility' 'gvfs-gconf') +rodepends=('nautilus-disk-utility') makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From devil505linux at gmail.com Thu Apr 7 17:53:27 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 17:53:27 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libunity-3.8.4-1-i686 * version bump Message-ID: <20110407155327.0DE781358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e57bafe62251e82d966b7e909caf56112988bb16 commit e57bafe62251e82d966b7e909caf56112988bb16 Author: Devil505 Date: Thu Apr 7 17:52:33 2011 +0200 libunity-3.8.4-1-i686 * version bump diff --git a/source/ayatana-extra/libunity/FrugalBuild b/source/ayatana-extra/libunity/FrugalBuild index e55c13c..3ef9e75 100644 --- a/source/ayatana-extra/libunity/FrugalBuild +++ b/source/ayatana-extra/libunity/FrugalBuild @@ -2,12 +2,13 @@ # Maintainer: Devil505 pkgname=libunity -pkgver=3.6.8 +pkgver=3.8.4 pkgrel=1 pkgdesc="A library for instrumenting- and integrating with all aspects of the Unity shell" -depends=('libgee' 'libdee' 'dbus-glib' 'libdbusmenu>=0.3.98-3') +depends=('libgee' 'libdee' 'dbus-glib' 'libdbusmenu>=0.4') makedepends=('vala>=0.11.3') groups=('ayatana-extra') archs=('i686' 'x86_64') +_F_launchpad_branch="3.0" Finclude launchpad -sha1sums=('b7ed299712eab34f8c232c6988f78b55dc383ae0') +sha1sums=('b6b359cc6bd985ca5e97789af582dc2e1e84f10b') From devil505linux at gmail.com Thu Apr 7 17:54:13 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 17:54:13 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-me-0.2.18-1-i686 * version bump Message-ID: <20110407155413.B83491358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5c10ac914ebd17f60777fffb779b709bad4ca20f commit 5c10ac914ebd17f60777fffb779b709bad4ca20f Author: Devil505 Date: Thu Apr 7 17:54:03 2011 +0200 indicator-me-0.2.18-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-me/FrugalBuild b/source/ayatana-extra/indicator-me/FrugalBuild index 2c13f89..99d0e53 100644 --- a/source/ayatana-extra/indicator-me/FrugalBuild +++ b/source/ayatana-extra/indicator-me/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-me -pkgver=0.2.17 +pkgver=0.2.18 pkgrel=1 pkgdesc="A menu in the menu bar that represents you, the user, and the things that represent you in the computer." url="https://launchpad.net/indicator-me" @@ -12,5 +12,5 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=(http://launchpad.net/${pkgname}/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('74b752ef6d102c7c6216aad7fb4cfc7bf7369934') +sha1sums=('c8237b99f3e9be03a291ca5e9efaad8010687b2d') From devil505linux at gmail.com Thu Apr 7 17:55:23 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 17:55:23 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nux-0.9.40-1-i686 * version bump Message-ID: <20110407155523.07E921358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d8336b4b54c8141bac4c15c870c5db839e8c254c commit d8336b4b54c8141bac4c15c870c5db839e8c254c Author: Devil505 Date: Thu Apr 7 17:55:11 2011 +0200 nux-0.9.40-1-i686 * version bump diff --git a/source/ayatana-extra/nux/FrugalBuild b/source/ayatana-extra/nux/FrugalBuild index 0d25723..f950b4a 100644 --- a/source/ayatana-extra/nux/FrugalBuild +++ b/source/ayatana-extra/nux/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=nux -pkgver=0.9.38 +pkgver=0.9.40 pkgrel=1 pkgdesc="An OpenGL toolkit (for Unity)" url="https://launchpad.net/nux" @@ -14,6 +14,6 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.9/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('6a447fe93205a2a4c10492957013fdd58ab48204') +sha1sums=('c908723a84b1fba46e62afcb3872d5fe4bdddf3c') # optimization OK From devil505linux at gmail.com Thu Apr 7 17:56:09 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 17:56:09 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libdbusmenu-0.4.2-1-i686 * version bump Message-ID: <20110407155609.A62221358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2d26fa6d970c001daa8868a466ded50cacb90ce3 commit 2d26fa6d970c001daa8868a466ded50cacb90ce3 Author: Devil505 Date: Thu Apr 7 17:56:00 2011 +0200 libdbusmenu-0.4.2-1-i686 * version bump diff --git a/source/xlib-extra/libdbusmenu/FrugalBuild b/source/xlib-extra/libdbusmenu/FrugalBuild index 9c8b440..55b1f38 100644 --- a/source/xlib-extra/libdbusmenu/FrugalBuild +++ b/source/xlib-extra/libdbusmenu/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=libdbusmenu -pkgver=0.4.1 +pkgver=0.4.2 pkgrel=1 pkgdesc="A small little library that was created by pulling out some common code out of indicator-applet." url="https://launchpad.net/dbusmenu" @@ -13,7 +13,7 @@ groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url" source=(http://launchpad.net/dbusmenu/0.4/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('973ddfe2d4463944062510ec30f0647ca078c2aa') +sha1sums=('76b5f29ba3bb037374c2534bdd2a7b420346be2f') subpkgs=("$pkgname-gtk") subdescs=("${subdescs[@]}" "GTK bindings for libdbusmenu") From devil505linux at gmail.com Thu Apr 7 19:24:39 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 19:24:39 +0200 (CEST) Subject: [Frugalware-git] gnometesting: unity-3.8.4-1-i686 * version bump Message-ID: <20110407172439.DC5851358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=048aac71efd6fe6d93249ed38b1537b2f4bb1fbf commit 048aac71efd6fe6d93249ed38b1537b2f4bb1fbf Author: Devil505 Date: Thu Apr 7 19:24:26 2011 +0200 unity-3.8.4-1-i686 * version bump diff --git a/source/ayatana-extra/unity/FrugalBuild b/source/ayatana-extra/unity/FrugalBuild index 6e8cb66..f10de09 100644 --- a/source/ayatana-extra/unity/FrugalBuild +++ b/source/ayatana-extra/unity/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Devil505 pkgname=unity -pkgver=3.8.2 +pkgver=3.8.4 branch=3.0 pkgrel=1 pkgdesc="A desktop experience designed for efficiency of space and interaction" url="https://launchpad.net/unity/" -depends=('compiz-core>=0.9.4-2' 'nux>=0.9.38' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') +depends=('compiz-core>=0.9.4-2' 'nux>=0.9.40' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') makedepends=('vala' 'intltool' 'gobject-introspection' 'boost') groups=('ayatana-extra') _F_cmake_confopts="-DCMAKE_BUILD_TYPE=Release -DCOMPIZ_PLUGIN_INSTALL_TYPE=package" @@ -17,7 +17,7 @@ Finclude cmake gnome-scriptlet archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/$branch/$pkgver/+download/$pkgname-$pkgver.tar.bz2 frugalware-icon.png unity-3.2.14-disable_tests.patch) -sha1sums=('fbe9f4207d8f7f3b848a0019f6cd0bbd46741c2f' \ +sha1sums=('87f015a88eb053c99a03ad2c0b26ca78e0081deb' \ '74be0bbad4cda0b411fb4f8e62c5fa401535aa8b' \ '14b8f00bc15e7789fc81a87a0b7f4505baf43957') From devil505linux at gmail.com Thu Apr 7 20:54:02 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 20:54:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: indicator-messages-0.4.0-1-i686 * version bump Message-ID: <20110407185402.72C4E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e3054aa49236cee69bb8dca6dd515e6c99605d86 commit e3054aa49236cee69bb8dca6dd515e6c99605d86 Author: Devil505 Date: Thu Apr 7 20:53:49 2011 +0200 indicator-messages-0.4.0-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-messages/FrugalBuild b/source/ayatana-extra/indicator-messages/FrugalBuild index a583482..a8187af 100644 --- a/source/ayatana-extra/indicator-messages/FrugalBuild +++ b/source/ayatana-extra/indicator-messages/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=indicator-messages -pkgver=0.3.92 -pkgrel=4 +pkgver=0.4.0 +pkgrel=1 pkgdesc="A place on the user's desktop that collects messages that need a response." url="https://launchpad.net/indicator-messages" depends=('libindicator>=0.3.22' 'libindicate>=0.5.0' 'libdbusmenu-gtk>=0.4.0') @@ -13,5 +13,5 @@ archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.4/$pkgver/+download/$pkgname-$pkgver.tar.gz) Fconfopts="${Fconfopts[@]} --disable-static" -sha1sums=('641b806d5c710019c376bb553eb9f70fea07e421') +sha1sums=('759b5aba18957f013a74fe6cc40fd8495303fdfd') From devil505linux at gmail.com Thu Apr 7 21:06:53 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 21:06:53 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: terminal-0.4.7-1-i686 * version bump Message-ID: <20110407190653.E21441358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c7772d2b33fdcf74f53668e87a3236b06694c70 commit 9c7772d2b33fdcf74f53668e87a3236b06694c70 Author: Devil505 Date: Thu Apr 7 21:06:21 2011 +0200 terminal-0.4.7-1-i686 * version bump diff --git a/source/xfce4/terminal/FrugalBuild b/source/xfce4/terminal/FrugalBuild index 190e4b9..f20d4ba 100644 --- a/source/xfce4/terminal/FrugalBuild +++ b/source/xfce4/terminal/FrugalBuild @@ -3,7 +3,7 @@ pkgname=terminal _F_xfce_name=Terminal -pkgver=0.4.6 +pkgver=0.4.7 pkgrel=1 pkgdesc="A modern virtual terminal emulator for Xfce." makedepends=('intltool') @@ -14,5 +14,5 @@ _F_gnome_iconcache="y" options=('scriptlet') _F_xfce_goodies_dir=terminal Finclude xfce4 gnome-scriptlet -sha1sums=('092a2e4b037225cacbe00cf856d3ec45108cfa1a') +sha1sums=('bd4b51ce51a399bb5c98fd1e923bc9ec6532ec0a') # optimization OK From devil505linux at gmail.com Thu Apr 7 21:18:36 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 21:18:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: garcon-0.1.6-1-i686 * version bump Message-ID: <20110407191836.9AE871358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ad24a138716d0b62d29dd6317d9f4462345a2858 commit ad24a138716d0b62d29dd6317d9f4462345a2858 Author: Devil505 Date: Thu Apr 7 21:18:11 2011 +0200 garcon-0.1.6-1-i686 * version bump diff --git a/source/xfce4/garcon/FrugalBuild b/source/xfce4/garcon/FrugalBuild index f1b4794..fe0151f 100644 --- a/source/xfce4/garcon/FrugalBuild +++ b/source/xfce4/garcon/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=garcon -pkgver=0.1.5 -pkgrel=3 +pkgver=0.1.6 +pkgrel=1 pkgdesc="implementation of the freedesktop.org menu specification" makedepends=('pkgconfig' 'intltool' 'xfce4-dev-tools>=4.8.0') depends=('glib2' 'zlib') @@ -14,7 +14,7 @@ Finclude xfce4 gnome-scriptlet up2date="Flasttar http://archive.xfce.org/src/libs/$pkgname/0.1/" source=(http://archive.xfce.org/src/libs/$pkgname/0.1/$pkgname-$pkgver.tar.bz2 \ $pkgname.sh) -sha1sums=('660a2a595501681ed502d3269a3d3f4d7dac00bb' \ +sha1sums=('11523ecd9818bbdeed1e34477343f28861db9823' \ '2c9027c06d6045f5615c4777a47d128aef1df2d5') replaces=('libxfce4menu') # optimization OK From devil505linux at gmail.com Thu Apr 7 21:19:10 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 7 Apr 2011 21:19:10 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: xfce4-panel-4.8.3-1-i686 * version bump Message-ID: <20110407191910.370CD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6b55f5f346f864c3207360a77fd03d75e602e3ec commit 6b55f5f346f864c3207360a77fd03d75e602e3ec Author: Devil505 Date: Thu Apr 7 21:19:00 2011 +0200 xfce4-panel-4.8.3-1-i686 * version bump diff --git a/source/xfce4/xfce4-panel/FrugalBuild b/source/xfce4/xfce4-panel/FrugalBuild index ee45db8..d1e65da 100644 --- a/source/xfce4/xfce4-panel/FrugalBuild +++ b/source/xfce4/xfce4-panel/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=xfce4-panel -pkgver=4.8.2 +pkgver=4.8.3 pkgrel=1 pkgdesc="Panel for the Xfce4 desktop environment." makedepends=('perl-xml-parser' 'intltool') @@ -14,7 +14,7 @@ replaces=('xfce4-showdesktop-plugin' 'xfce4-taskbar-plugin' 'xfce4-windowlist-pl archs=('i686' 'x86_64' 'ppc') _F_gnome_iconcache=y Finclude xfce4 gnome-scriptlet -sha1sums=('0600a8788dd30435a051ac2f86dd67b311e98919') +sha1sums=('ea22ca6f8c6cae03d6a6b0aef5b5194043dfa742') ## bug fix release source=(http://archive.xfce.org/src/xfce/$pkgname/4.8/$pkgname-$pkgver.tar.bz2) From bouleetbil at frogdev.info Thu Apr 7 21:33:05 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 21:33:05 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-icon-theme-3.0.0-2-x86_64 *update gtk icons cache as well Message-ID: <20110407193305.D283D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d81f767fdffde4f4cadea29f543757aec6c481da commit d81f767fdffde4f4cadea29f543757aec6c481da Author: bouleetbil Date: Thu Apr 7 21:32:18 2011 +0200 gnome-icon-theme-3.0.0-2-x86_64 *update gtk icons cache as well diff --git a/source/gnome/gnome-icon-theme/FrugalBuild b/source/gnome/gnome-icon-theme/FrugalBuild index ce65085..07eebfc 100644 --- a/source/gnome/gnome-icon-theme/FrugalBuild +++ b/source/gnome/gnome-icon-theme/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-icon-theme pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Default icon theme for GNOME" url="http://www.gnome.org/" depends=('hicolor-icon-theme' 'gdk-pixbuf2') diff --git a/source/gnome/gnome-icon-theme/gnome-icon-theme.install b/source/gnome/gnome-icon-theme/gnome-icon-theme.install new file mode 100644 index 0000000..5c15dd6 --- /dev/null +++ b/source/gnome/gnome-icon-theme/gnome-icon-theme.install @@ -0,0 +1,21 @@ +post_install() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +post_upgrade() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +post_remove() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +op=$1 +shift + +$op $* + +# vim: ft=sh From bouleetbil at frogdev.info Thu Apr 7 21:36:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 21:36:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-icon-theme-symbolic-3.0.0-2-x86_64 *fix dep *update cache as well *now artwork team can play with the icons to gnome-shell *if an icon is missing will swtich to gnome icons Message-ID: <20110407193638.AAD9F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d0fba92142dfadded60bc203934e34c67314f7c9 commit d0fba92142dfadded60bc203934e34c67314f7c9 Author: bouleetbil Date: Thu Apr 7 21:34:59 2011 +0200 gnome-icon-theme-symbolic-3.0.0-2-x86_64 *fix dep *update cache as well *now artwork team can play with the icons to gnome-shell *if an icon is missing will swtich to gnome icons diff --git a/source/gnome/gnome-icon-theme-symbolic/FrugalBuild b/source/gnome/gnome-icon-theme-symbolic/FrugalBuild index 3c905ed..16a1c0e 100644 --- a/source/gnome/gnome-icon-theme-symbolic/FrugalBuild +++ b/source/gnome/gnome-icon-theme-symbolic/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnome-icon-theme-symbolic pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Symbolic GNOME icons" url="http://www.gnome.org/" -depends=('hicolor-icon-theme' 'gdk-pixbuf2') +depends=('hicolor-icon-theme' 'gdk-pixbuf2' 'gnome-icon-theme') makedepends=('perl-xml-parser' 'icon-naming-utils>=0.8.2' 'intltool' 'gtk+2-tools') groups=('gnome') archs=('i686' 'x86_64' 'ppc') diff --git a/source/gnome/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic.install b/source/gnome/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic.install new file mode 100644 index 0000000..5c15dd6 --- /dev/null +++ b/source/gnome/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic.install @@ -0,0 +1,21 @@ +post_install() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +post_upgrade() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +post_remove() +{ + gtk-update-icon-cache /usr/share/icons/gnome/ +} + +op=$1 +shift + +$op $* + +# vim: ft=sh From bouleetbil at frogdev.info Thu Apr 7 22:25:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 22:25:57 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-session-3.0.0-2-i686 *fix use var Message-ID: <20110407202557.43BF21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=5ed40e94ce04f508008ab9a5e65dee62455c7db0 commit 5ed40e94ce04f508008ab9a5e65dee62455c7db0 Author: bouleetbil Date: Thu Apr 7 22:25:48 2011 +0200 gnome-session-3.0.0-2-i686 *fix use var diff --git a/source/gnome/gnome-session/FrugalBuild b/source/gnome/gnome-session/FrugalBuild index a924c82..81c5b12 100644 --- a/source/gnome/gnome-session/FrugalBuild +++ b/source/gnome/gnome-session/FrugalBuild @@ -1,7 +1,7 @@ # Compiling time: 0.38 SBU # Maintainer: bouleetbil -USE_DEVEL=${USE_DEBUG:-"n"} +USE_DEBUG=${USE_DEBUG:-"n"} pkgname=gnome-session pkgver=3.0.0 From bouleetbil at frogdev.info Thu Apr 7 22:57:45 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 22:57:45 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-shell-extensions-3.0.0-4-i686 *new subkpg *enable themes user Message-ID: <20110407205745.7D7AF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=af2d1bc3e44d876efd3f66ff89e678b05c62b2a1 commit af2d1bc3e44d876efd3f66ff89e678b05c62b2a1 Author: bouleetbil Date: Thu Apr 7 22:56:30 2011 +0200 gnome-shell-extensions-3.0.0-4-i686 *new subkpg *enable themes user diff --git a/source/gnome/gnome-shell-extensions/FrugalBuild b/source/gnome/gnome-shell-extensions/FrugalBuild index 7f56ea4..34b0c5e 100644 --- a/source/gnome/gnome-shell-extensions/FrugalBuild +++ b/source/gnome/gnome-shell-extensions/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-shell-extensions pkgver=3.0.0 -pkgrel=3 +pkgrel=4 pkgdesc="Modify and extend GNOME Shell functionality and behavior" depends=('gnome-shell>=3.0.0') makedepends=('intltool' 'gnome-doc-utils' 'gnome-common' \ @@ -19,6 +19,19 @@ if [ "$_F_gnome_git" != "n" ]; then unset sha1sums fi +subpkgs=('gnome-shell-extensions-dock') +subdescs=('dock for gnome-shell') +subrodepends=("$pkgname=$pkgver") +subdepends=('gnome-shell') +subgroups=('gnome') +subarchs=('i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" 'gnome-shell-extensions-theme') +subdescs=("${subdescs[@]}" 'themes user gnome-shell') +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subdepends=("${subdepends[@]}" "gnome-shell") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') build() { if [ "$_F_gnome_git" != "n" ]; then @@ -32,8 +45,8 @@ build() { Fbuild --enable-extensions=all #hello world Frm usr/share/gnome-shell/extensions/example at gnome-shell-extensions.gnome.org - #break default theme - Frm usr/share/gnome-shell/extensions/user-theme at gnome-shell-extensions.gnome.org + Fsplit gnome-shell-extensions-theme usr/share/gnome-shell/extensions/user-theme at gnome-shell-extensions.gnome.org + Fsplit gnome-shell-extensions-dock usr/share/gnome-shell/extensions/dock at gnome-shell-extensions.gnome.org Fbuild_gnome_scriptlet } From bouleetbil at frogdev.info Thu Apr 7 23:01:50 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 7 Apr 2011 23:01:50 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-session-3.0.0-3-i686 *readd gnome-shell-extensions rodepends *for add shutdown option into gnome-shell menu *now that don't force to use the dock *if you would a dock install gnome-shell-extensions-dock Message-ID: <20110407210150.EC9C01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4712a5d9f0060e50ae76edab43b7c2e61a09359a commit 4712a5d9f0060e50ae76edab43b7c2e61a09359a Author: bouleetbil Date: Thu Apr 7 23:00:19 2011 +0200 gnome-session-3.0.0-3-i686 *readd gnome-shell-extensions rodepends *for add shutdown option into gnome-shell menu *now that don't force to use the dock *if you would a dock install gnome-shell-extensions-dock diff --git a/source/gnome/gnome-session/FrugalBuild b/source/gnome/gnome-session/FrugalBuild index 81c5b12..210b77d 100644 --- a/source/gnome/gnome-session/FrugalBuild +++ b/source/gnome/gnome-session/FrugalBuild @@ -5,14 +5,14 @@ USE_DEBUG=${USE_DEBUG:-"n"} pkgname=gnome-session pkgver=3.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="GNOME session manager" depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'polkit' 'upower' 'gconf-gtk' 'usermode' \ 'dbus-glib>=0.76' 'gnome-control-center>=3.0.0' 'libnotify' 'gnome-keyring>=3.0.0' \ 'metacity') makedepends=('intltool' 'gnome-common') #gnome-session start gnome-shell and if failed start gnome-panel -rodepends=('consolekit-x11' 'gnome-shell' 'gnome-panel' 'dconf') +rodepends=('consolekit-x11' 'gnome-shell-extensions' 'gnome-panel' 'dconf') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_glib="y" From vmiklos at frugalware.org Thu Apr 7 23:12:40 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:12:40 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: repoman clean: implement --nofdb switch Message-ID: <20110407211240.DF8FA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=7bf037d7838d9700705f3cf69622e5c5a93998e8 commit 7bf037d7838d9700705f3cf69622e5c5a93998e8 Author: Miklos Vajna Date: Thu Apr 7 22:59:51 2011 +0200 repoman clean: implement --nofdb switch diff --git a/repoman b/repoman index 33f40ef..3d0f663 100755 --- a/repoman +++ b/repoman @@ -244,39 +244,41 @@ server() shift if [ $# -lt 4 ]; then echo "Too few parameters!" - echo "usage: repoman server clean path fdb group pkg" + echo "usage: repoman server clean path fdb group pkg nofdb" return 1 fi - local path="$1" fdb="$2" group="$3" pkg="$4" + local path="$1" fdb="$2" group="$3" pkg="$4" nofdb="$5" check_absolute_path cd $path - if [ -e .git/lock ]; then - echo "Couldn't get lock." - return 1 - else - touch .git/lock - fi - for i in frugalware-* - do - cd $i - if ! _check_nobuild; then - if [ ! -e $fdb ]; then - echo "No package database to clean from!" - cd - >/dev/null - rm -f .git/lock - return 1 - else - if ! arch=$arch updatesync del $fdb $pkg; then - echo "updatesync failed!" + if [ -z "$nofdb" ]; then + if [ -e .git/lock ]; then + echo "Couldn't get lock." + return 1 + else + touch .git/lock + fi + for i in frugalware-* + do + cd $i + if ! _check_nobuild; then + if [ ! -e $fdb ]; then + echo "No package database to clean from!" + cd - >/dev/null rm -f .git/lock return 1 + else + if ! arch=$arch updatesync del $fdb $pkg; then + echo "updatesync failed!" + rm -f .git/lock + return 1 + fi fi fi - fi - genchangelog --clean $pkg - cd - >/dev/null - done - rm .git/lock + genchangelog --clean $pkg + cd - >/dev/null + done + rm .git/lock + fi if [ -d source/$group/$pkg ]; then if [ ! -f source/$group/$pkg/FrugalBuild ]; then rm -rfv source/$group/$pkg @@ -458,11 +460,16 @@ clean() check_sudo fdb=$(eval "echo \$${reponame}_fdb") [ -z "$fdb" ] && fdb="$reponame.fdb" + nofdb= + if [ "$1" == "--nofdb" ]; then + shift + nofdb=t + fi for i in $* do msg "Cleaning up $i" split_group_pkg $i - if ! _ssh "clean '$path' '$fdb' '$group' '$pkg'"; then + if ! _ssh "clean '$path' '$fdb' '$group' '$pkg' '$nofdb'"; then return 1 fi done diff --git a/repoman.txt b/repoman.txt index 9f7291b..429624e 100644 --- a/repoman.txt +++ b/repoman.txt @@ -402,9 +402,11 @@ $ repoman fpmmerge flac113 == COMMANDS -c|clean :: +c|clean [--nofdb] :: - Removes the package from the package database. + Removes the package from the package database. The optional `--nofdb` + parameter means that only the source directory will be removed, but the + fdb database will be left untouched. cl|changelog [/]:: From vmiklos at frugalware.org Thu Apr 7 23:17:10 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:17:10 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: rssowl-1.2.4-1-i686 Message-ID: <20110407211710.C27131358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7c34e3fdf52a5b2036e9f45c07dd5afd7f1c8650 commit 7c34e3fdf52a5b2036e9f45c07dd5afd7f1c8650 Author: Miklos Vajna Date: Thu Apr 7 23:03:28 2011 +0200 rssowl-1.2.4-1-i686 - bin, we already have liferea / akregator which is not written in Java diff --git a/source/xapps-extra/rssowl/FrugalBuild b/source/xapps-extra/rssowl/FrugalBuild deleted file mode 100644 index 04eff5b..0000000 --- a/source/xapps-extra/rssowl/FrugalBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Compiling Time: 0.09 SBU -# Maintainer: Miklos Vajna - -pkgname=rssowl -pkgver=1.2.4 -pkgrel=1 -pkgdesc="A mature Java-based RSS/RDF/Atom Newsreader with advanced features." -_F_sourceforge_ext="_src.tar.gz" -Finclude sourceforge -url="http://www.rssowl.org/" -depends=('swt') -makedepends=('j2sdk' 'apache-ant') -groups=('xapps-extra') -archs=('i686') -up2date="lynx -dump http://www.rssowl.org/dl/MD5.txt|grep src.tar.gz|sed 's/.*rssowl_\(.*\)_src.*/\1/;s/_/./g'" -source=(`echo $source |sed 's/-\([0-9\.]\)/_\1/;s/\([0-9]\)\./\1_/g'`) - -build() -{ - Fcd `strip_url $source|sed 's/\.t.*//'` - ln -s /usr/share/java/swt.jar lib/ - cd src - # for now build using Sun's javac - export JAVA_HOME=/usr/lib/java - ant deploy_linux - cd .. - Ffilerel /usr/share/java/rssowl.jar - echo -e "#!/bin/sh\njava -Dnet.sourceforge.rssowl.noSplash -Djava.library.path=/usr/lib/ -jar /usr/share/java/rssowl.jar \"\$@\"" > rssowl - Fexerel /usr/bin/rssowl - cd img - Ffilerel /usr/share/pixmaps/rssowl.xpm - Fdesktop "/usr/bin/rssowl" "/usr/share/pixmaps/rssowl.xpm" "Application;Network;" -} - -sha1sums=('1663a2813361332346e4b7acfeb912bd7c97157a') From vmiklos at frugalware.org Thu Apr 7 23:23:37 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:23:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: orc-0.4.11-1-i686 Message-ID: <20110407212337.512BB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3ebc8621aed85a6a887c5ea2b6975680801eb99f commit 3ebc8621aed85a6a887c5ea2b6975680801eb99f Author: Miklos Vajna Date: Thu Apr 7 23:10:24 2011 +0200 orc-0.4.11-1-i686 - fix perm diff --git a/source/lib-extra/orc/FrugalBuild b/source/lib-extra/orc/FrugalBuild old mode 100755 new mode 100644 From vmiklos at frugalware.org Thu Apr 7 23:23:37 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:23:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: schroedinger-1.0.10-1-i686 Message-ID: <20110407212337.61478BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2a15d020ab201fc6a87a505e9f6d786580b7e85d commit 2a15d020ab201fc6a87a505e9f6d786580b7e85d Author: Miklos Vajna Date: Thu Apr 7 23:10:48 2011 +0200 schroedinger-1.0.10-1-i686 - fix perms diff --git a/source/xlib-extra/schroedinger/FrugalBuild b/source/xlib-extra/schroedinger/FrugalBuild old mode 100755 new mode 100644 From vmiklos at frugalware.org Thu Apr 7 23:38:56 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:38:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: nasm-2.09.08-1-i686 Message-ID: <20110407213856.DB4EB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=590066e54c55c1fd39243b8a2327a68973f70aab commit 590066e54c55c1fd39243b8a2327a68973f70aab Author: Miklos Vajna Date: Thu Apr 7 23:15:12 2011 +0200 nasm-2.09.08-1-i686 - version bump diff --git a/source/devel-extra/nasm/FrugalBuild b/source/devel-extra/nasm/FrugalBuild index b16ba2d..6cacea5 100644 --- a/source/devel-extra/nasm/FrugalBuild +++ b/source/devel-extra/nasm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=nasm -pkgver=2.09.07 +pkgver=2.09.08 pkgrel=1 pkgdesc="NASM is the Netwide Assembler" depends=('glibc') @@ -11,7 +11,7 @@ archs=('i686' 'x86_64' 'ppc') url="http://www.nasm.us/" up2date="lynx -dump $url|grep releasebuilds/[0-9]|grep -v rc|sed 's|.*/\(.*\)/$|\1|'" source=(http://www.nasm.us/pub/nasm/releasebuilds/$pkgver/nasm-$pkgver.tar.bz2) -sha1sums=('107d30e04c2e271c3148341f5d941176b27cef3d') +sha1sums=('37ce7d945a41276eab255b061c88c2ad2f7979f6') Fmandir="$Fdestdir/usr/share/man" build() From vmiklos at frugalware.org Thu Apr 7 23:38:56 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:38:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ncurses-5.9-1-i686 Message-ID: <20110407213856.EC19F1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ddb57fd50e16934980bbec5905c090abc0d1d800 commit ddb57fd50e16934980bbec5905c090abc0d1d800 Author: Miklos Vajna Date: Thu Apr 7 23:19:09 2011 +0200 ncurses-5.9-1-i686 - version bump diff --git a/source/base/ncurses/FrugalBuild b/source/base/ncurses/FrugalBuild index 354c628..fbcb7ac 100644 --- a/source/base/ncurses/FrugalBuild +++ b/source/base/ncurses/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=ncurses -pkgver=5.8 +pkgver=5.9 pkgrel=1 pkgdesc="A System V Release 4.0 curses emulation library" url="http://www.gnu.org/software/ncurses/ncurses.html" From vmiklos at frugalware.org Thu Apr 7 23:38:57 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:38:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: cryptsetup-luks-1.3.0-1-i686 Message-ID: <20110407213857.08AC9135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4e2cd5df58dff5fcdb1363bb3bb2d9a435f8fd3f commit 4e2cd5df58dff5fcdb1363bb3bb2d9a435f8fd3f Author: Miklos Vajna Date: Thu Apr 7 23:19:48 2011 +0200 cryptsetup-luks-1.3.0-1-i686 - version bump diff --git a/source/apps-extra/cryptsetup-luks/FrugalBuild b/source/apps-extra/cryptsetup-luks/FrugalBuild index 7785bc5..f7db5d5 100644 --- a/source/apps-extra/cryptsetup-luks/FrugalBuild +++ b/source/apps-extra/cryptsetup-luks/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=cryptsetup-luks -pkgver=1.2.0 +pkgver=1.3.0 pkgrel=1 pkgdesc="cryptsetup-luks is intended as a complete replacement for the original cryptsetup." url="http://code.google.com/p/cryptsetup/" @@ -16,6 +16,6 @@ Finclude googlecode _F_archive_name=$_F_googlecode_name source=(${source[@]} \ README.Frugalware) -sha1sums=('fa9383eda40655311f2dfe751e061b0111c73908' \ +sha1sums=('47eaedcd79e0a6bf5b56cdf0552086ea38fcbb7f' \ '8d151e5c00a6c26715b9300776a51ca45d43c684') # optimization OK From vmiklos at frugalware.org Thu Apr 7 23:38:57 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 7 Apr 2011 23:38:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kismet-2011_03_R2-1-i686 Message-ID: <20110407213857.12239135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf526dae34a53096fbde27ad8ddc5732cf2c6416 commit bf526dae34a53096fbde27ad8ddc5732cf2c6416 Author: Miklos Vajna Date: Thu Apr 7 23:26:10 2011 +0200 kismet-2011_03_R2-1-i686 - version bump diff --git a/source/network-extra/kismet/FrugalBuild b/source/network-extra/kismet/FrugalBuild index 0578fe0..53d2d50 100644 --- a/source/network-extra/kismet/FrugalBuild +++ b/source/network-extra/kismet/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=kismet -pkgver=2011_01_R1 +pkgver=2011_03_R2 extrapkgver= pkgrel=1 pkgdesc="IEEE 802.11 wireless LAN sniffer" @@ -13,7 +13,7 @@ backup=(etc/kismet{,_drone}.conf) archs=('i686' 'x86_64' 'ppc') up2date="Flasttar http://www.kismetwireless.net/code/" source=($url/code/$pkgname-${pkgver//_/-}$extrapkgver.tar.gz) -sha1sums=('412f9ef7028d4fe89a4f81e9758f74631128185f') +sha1sums=('c01706b0441a3ea412386930bcbaf56187c66d27') build() { From vmiklos at frugalware.org Fri Apr 8 13:00:23 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 8 Apr 2011 13:00:23 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: openjdk-6-11-i686 Message-ID: <20110408110023.7F6241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8e6421dcbd119da5228177309b282c8728c404d3 commit 8e6421dcbd119da5228177309b282c8728c404d3 Author: Miklos Vajna Date: Fri Apr 8 01:18:50 2011 +0200 openjdk-6-11-i686 - bump to icedtea-1.10.1 diff --git a/source/devel-extra/openjdk/FrugalBuild b/source/devel-extra/openjdk/FrugalBuild index 90e9a58..036890a 100644 --- a/source/devel-extra/openjdk/FrugalBuild +++ b/source/devel-extra/openjdk/FrugalBuild @@ -4,9 +4,9 @@ pkgname=openjdk pkgver=6 build=22 -icedteaver=1.10 +icedteaver=1.10.1 javaver="$pkgver-openjdk" -pkgrel=10 +pkgrel=11 pkgdesc="Open-source Java Development Kit implementation." url="http://openjdk.java.net/" depends=('libx11') @@ -27,7 +27,7 @@ source=(http://icedtea.classpath.org/download/source/icedtea6-$icedteaver.tar.gz https://jax-ws.dev.java.net/files/documents/4202/150725/jdk6-jaf-b20.zip \ https://jax-ws.dev.java.net/files/documents/4202/150724/jdk6-jaxws-b20.zip \ openj{dk,re}.sh) -sha1sums=('904bd9827e6b62997468a116dfcfcfe3b2291f94' \ +sha1sums=('e09a040f28a7a2009f0194fbbe2e83c4d1bfa265' \ '65a60153adbc8bc47fb95bb2b588a9a0b8701c95' \ '4f11f9525a83e7842cbd14cc47d967abde093c27' \ '69a54373e169bd7b04a45de6a310a199260424b9' \ From vmiklos at frugalware.org Fri Apr 8 13:00:23 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 8 Apr 2011 13:00:23 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: icedtea-web-1.0.2-1-i686 Message-ID: <20110408110023.96AAE1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=295788172f409f698e9a78d9db5ace193d6097da commit 295788172f409f698e9a78d9db5ace193d6097da Author: Miklos Vajna Date: Fri Apr 8 12:47:15 2011 +0200 icedtea-web-1.0.2-1-i686 - version bump diff --git a/source/xapps/icedtea-web/FrugalBuild b/source/xapps/icedtea-web/FrugalBuild index bc0b171..aaed453 100644 --- a/source/xapps/icedtea-web/FrugalBuild +++ b/source/xapps/icedtea-web/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Miklos Vajna pkgname=icedtea-web -pkgver=1.0.1 -pkgrel=2 +pkgver=1.0.2 +pkgrel=1 pkgdesc="Provides a Free Software web browser plugin running applets written in Java." url="http://icedtea.classpath.org/wiki/IcedTea-Web" depends=('openjre' 'gtk+2') @@ -12,7 +12,7 @@ groups=('xapps') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar http://icedtea.classpath.org/download/source/" source=(http://icedtea.classpath.org/download/source/icedtea-web-$pkgver.tar.gz) -sha1sums=('bb6de0b3ffa5ffd00075129ca2d10e1c7140dda2') +sha1sums=('4dd03d3718c65b2ffd1a412bbf70ae7937b90361') build() { From bouleetbil at frogdev.info Fri Apr 8 14:06:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 14:06:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110408120638.194D71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4233756df43f96a3b1f2dd752f2f69b99d04efce commit 4233756df43f96a3b1f2dd752f2f69b99d04efce Merge: 4712a5d 2957881 Author: bouleetbil Date: Fri Apr 8 14:06:12 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From bouleetbil at frogdev.info Fri Apr 8 14:18:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 14:18:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110408121855.1793B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4233756df43f96a3b1f2dd752f2f69b99d04efce commit 4233756df43f96a3b1f2dd752f2f69b99d04efce Merge: 4712a5d 2957881 Author: bouleetbil Date: Fri Apr 8 14:06:12 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From devil505linux at gmail.com Fri Apr 8 19:16:21 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 19:16:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: * updating KDE version (4.6.2) Message-ID: <20110408171621.DF32C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=20926fbdc28d68fcb830e5e41a210354b44ec7cd commit 20926fbdc28d68fcb830e5e41a210354b44ec7cd Author: Devil505 Date: Fri Apr 8 19:15:41 2011 +0200 * updating KDE version (4.6.2) diff --git a/source/include/kde.sh b/source/include/kde.sh index c7a6d53..af52cea 100644 --- a/source/include/kde.sh +++ b/source/include/kde.sh @@ -39,7 +39,7 @@ Finclude cmake ### if [ -z "$_F_kde_ver" ]; then - _F_kde_ver=4.6.1 + _F_kde_ver=4.6.2 fi if [ -z "$_F_kde_qtver" ]; then From devil505linux at gmail.com Fri Apr 8 19:18:24 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 19:18:24 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdelibs-4.6.2-1-i686 * version bump Message-ID: <20110408171824.4D4701358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=afea2cdca2b40de549dad686ef24790b356ff64c commit afea2cdca2b40de549dad686ef24790b356ff64c Author: Devil505 Date: Fri Apr 8 19:17:33 2011 +0200 kdelibs-4.6.2-1-i686 * version bump diff --git a/source/kde/kdelibs/FrugalBuild b/source/kde/kdelibs/FrugalBuild index aadb23f..44abe60 100644 --- a/source/kde/kdelibs/FrugalBuild +++ b/source/kde/kdelibs/FrugalBuild @@ -18,7 +18,7 @@ source=($source \ frugalware-menu.patch \ FrugalBuild-syntax-highlight.patch \ kde-applications-menu.patch) -sha1sums=('5868d43084b2dc9de4c0404dbec137375664e893' \ +sha1sums=('b4794a9a69492ce4725abd9eb5d00d3a50e46603' \ 'c657c474875c155197dde1c846f1791e744febc2' \ 'd68e789167fb028a9da7d4d5393a363ad56b0c6f' \ '86ee8c8660f19de8141ac99cd6943964d97a1ed7') From devil505linux at gmail.com Fri Apr 8 19:18:24 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 19:18:24 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: oxygen-icons-4.6.2-1-i686 * version bump Message-ID: <20110408171824.87AE31358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8f38d3891dff514d598d9132ee872d5278a783f4 commit 8f38d3891dff514d598d9132ee872d5278a783f4 Author: Devil505 Date: Fri Apr 8 19:18:12 2011 +0200 oxygen-icons-4.6.2-1-i686 * version bump diff --git a/source/kde/oxygen-icons/FrugalBuild b/source/kde/oxygen-icons/FrugalBuild index 386fc5b..c2487f2 100644 --- a/source/kde/oxygen-icons/FrugalBuild +++ b/source/kde/oxygen-icons/FrugalBuild @@ -10,7 +10,7 @@ depends=() url='http://www.oxygen-icons.org/' license=('LGPL') Finclude kde -sha1sums=('437b2f1f99861a3ee0f083aa715cfec5d0407e9a') +sha1sums=('dc97ca3e52bd00f93fb8438e8f368aa3c1567d9f') build() { KDE_build From bouleetbil at frogdev.info Fri Apr 8 21:17:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 21:17:09 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libxklavier-5.1-1-x86_64 *fix syntax error Message-ID: <20110408191709.6FEA81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0d0513b18ca43c82254b6ecc67d30db884854837 commit 0d0513b18ca43c82254b6ecc67d30db884854837 Author: bouleetbil Date: Fri Apr 8 21:16:49 2011 +0200 libxklavier-5.1-1-x86_64 *fix syntax error diff --git a/source/xlib/libxklavier/FrugalBuild b/source/xlib/libxklavier/FrugalBuild index ced2956..779d37d 100644 --- a/source/xlib/libxklavier/FrugalBuild +++ b/source/xlib/libxklavier/FrugalBuild @@ -2,7 +2,6 @@ # Maintainer: Christian Hamar alias krix pkgname=libxklavier -<<<<<<< HEAD pkgver=5.1 pkgrel=1 pkgdesc="Utility library to make XKB stuff easier" From devil505linux at gmail.com Fri Apr 8 21:39:10 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 21:39:10 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: indicator-application-0.3.1-1-i686 * version bump Message-ID: <20110408193910.D39501358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff77c1922e31790f550358408a7898feb674d440 commit ff77c1922e31790f550358408a7898feb674d440 Author: Devil505 Date: Fri Apr 8 21:33:30 2011 +0200 indicator-application-0.3.1-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-application/FrugalBuild b/source/ayatana-extra/indicator-application/FrugalBuild index b14330d..3184229 100644 --- a/source/ayatana-extra/indicator-application/FrugalBuild +++ b/source/ayatana-extra/indicator-application/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-application -pkgver=0.3.0 +pkgver=0.3.1 pkgrel=1 pkgdesc="A library and indicator to take menus from applications and place them in the panel." url="https://launchpad.net/indicator-application" @@ -12,7 +12,7 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.3/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('e98b0d6beb2fd92cf4423e63710b5fde6b61b1a0') +sha1sums=('79b294f2566ee8c1db3faf37dc956fbe21ab72c3') build() { Fcd From devil505linux at gmail.com Fri Apr 8 21:39:10 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 21:39:10 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: indicator-appmenu-0.2.0-1-i686 * version bump Message-ID: <20110408193910.E9F5A1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=130d046f3ef1290433d0ac4916d838130e468448 commit 130d046f3ef1290433d0ac4916d838130e468448 Author: Devil505 Date: Fri Apr 8 21:36:37 2011 +0200 indicator-appmenu-0.2.0-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-appmenu/FrugalBuild b/source/ayatana-extra/indicator-appmenu/FrugalBuild index c52e2e7..8824912 100644 --- a/source/ayatana-extra/indicator-appmenu/FrugalBuild +++ b/source/ayatana-extra/indicator-appmenu/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: Devil505 pkgname=indicator-appmenu -pkgver=0.1.97 +pkgver=0.2.0 pkgrel=1 pkgdesc="An indicator to host the menus from an application." url="https://launchpad.net/indicator-appmenu" -depends=('libindicator>=0.3.19-3' 'libdbusmenu-gtk>=0.3.98-3' 'ido' 'bamf') +depends=('libindicator>=0.3.19-3' 'libdbusmenu-gtk>=0.4.0' 'ido' 'bamf') makedepends=('intltool') groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('f85b7a1ba46c6c227045ab3fae72c3a8e1db4b46') +sha1sums=('8be0a28fbc71a41b801e28bfeb71b5de9d845022') From devil505linux at gmail.com Fri Apr 8 21:39:11 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 21:39:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: indicator-datetime-0.2.2-1-i686 * version bump Message-ID: <20110408193911.14F7A135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d182230dcd240b7b62106da5a942fb4094f5f012 commit d182230dcd240b7b62106da5a942fb4094f5f012 Author: Devil505 Date: Fri Apr 8 21:37:33 2011 +0200 indicator-datetime-0.2.2-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-datetime/FrugalBuild b/source/ayatana-extra/indicator-datetime/FrugalBuild index 317bada..429a07c 100644 --- a/source/ayatana-extra/indicator-datetime/FrugalBuild +++ b/source/ayatana-extra/indicator-datetime/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-datetime -pkgver=0.2.1 +pkgver=0.2.2 pkgrel=1 pkgdesc="The Date and Time Indicator" url="https://launchpad.net/indicator-datetime" @@ -15,7 +15,7 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('ff461a819dc4d5ce30f9028e804707ed78154bb3') +sha1sums=('de1629f4e701890bf50e0d4891f7768e609c4856') build() { Fcd From devil505linux at gmail.com Fri Apr 8 21:39:11 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 21:39:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: indicator-session-0.2.16-1-i686 * version bump Message-ID: <20110408193911.1C711135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2ae76e504aa7217810b66fc1de735642ffe9b400 commit 2ae76e504aa7217810b66fc1de735642ffe9b400 Author: Devil505 Date: Fri Apr 8 21:38:39 2011 +0200 indicator-session-0.2.16-1-i686 * version bump diff --git a/source/ayatana-extra/indicator-session/FrugalBuild b/source/ayatana-extra/indicator-session/FrugalBuild index ca9d8e2..d5470aa 100644 --- a/source/ayatana-extra/indicator-session/FrugalBuild +++ b/source/ayatana-extra/indicator-session/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=indicator-session -pkgver=0.2.15 +pkgver=0.2.16 pkgrel=1 pkgdesc="An indicator showing session management, status and user switching." url="https://launchpad.net/indicator-session" @@ -14,5 +14,5 @@ _F_gnome_schemas=('/etc/gconf/schemas/indicator-session.schemas') Finclude gnome-scriptlet up2date="Flasttar $url" source=(http://launchpad.net/${pkgname}/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('0f1e9ac2928a14942da7e72586e5fa02631ffc8b') +sha1sums=('11f49234409818d5a1f39e61aab3af529605c773') From devil505linux at gmail.com Fri Apr 8 21:55:15 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 21:55:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gwibber-3.0.0.1-1-i686 * version bump Message-ID: <20110408195515.1D0A61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c482d2c0de45d3dd790ff71186bc1ab39d36f4ee commit c482d2c0de45d3dd790ff71186bc1ab39d36f4ee Author: Devil505 Date: Fri Apr 8 21:54:05 2011 +0200 gwibber-3.0.0.1-1-i686 * version bump diff --git a/source/gnome-extra/gwibber/FrugalBuild b/source/gnome-extra/gwibber/FrugalBuild index e52e1a3..99ba310 100644 --- a/source/gnome-extra/gwibber/FrugalBuild +++ b/source/gnome-extra/gwibber/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gwibber -pkgver=3.0.0 +pkgver=3.0.0.1 pkgrel=1 pkgdesc="Open Source microblogging client for GNOME, with webkit" depends=('python-simplejson' 'pygtk' 'dbus-python' 'pywebkitgtk>=1.1.6-2' 'gnome-python-desktop-wnck' \ @@ -17,5 +17,5 @@ _F_launchpad_branch="3.0" Finclude gnome-scriptlet launchpad source=($url/$_F_launchpad_branch/$_F_launchpad_branch/+download/$pkgname-$pkgver.tar.gz) archs=('i686' 'x86_64') -sha1sums=('69983e5f8e0bc9a48489ab62d4c6dd99caecfa21') +sha1sums=('eba3e898009c655912537dc7dd2ca6dc4272bad6') replaces=('twitux') From devil505linux at gmail.com Fri Apr 8 22:09:07 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 22:09:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: unity-2d-3.8.2-1-i686 * version bump Message-ID: <20110408200907.6781C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0516482f3e5a44cc9125e7abd3d1de1f38b94674 commit 0516482f3e5a44cc9125e7abd3d1de1f38b94674 Author: Devil505 Date: Fri Apr 8 22:08:55 2011 +0200 unity-2d-3.8.2-1-i686 * version bump diff --git a/source/ayatana-extra/unity-2d/FrugalBuild b/source/ayatana-extra/unity-2d/FrugalBuild index 0c1406a..dadd7bf 100644 --- a/source/ayatana-extra/unity-2d/FrugalBuild +++ b/source/ayatana-extra/unity-2d/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=unity-2d -pkgver=3.8.1 +pkgver=3.8.2 pkgrel=1 pkgdesc="unity-2d project is a 2d implementation of Unity" depends=('libwnck2' 'libdbusmenu-qt' 'libindicator' 'libqtbamf' 'libqtdee' 'libqtgconf' \ @@ -15,7 +15,7 @@ up2date="Flasttar https://launchpad.net/ubuntu/natty/+source/$pkgname | sed 's/. source=(https://launchpad.net/ubuntu/natty/+source/$pkgname/$pkgver-0ubuntu1/+files/$pkgname$Fpkgversep$pkgver.orig.tar.gz \ gio-unix.patch) _F_cd_path="$pkgname-$pkgver" -sha1sums=('7412af9936e613b3c5c11545acdf41fbdfee6a8e' \ +sha1sums=('a0193e86d36f2d3a9b60a9481f10856e91d5acd8' \ 'd959d8c83da295699757c953a58630bf895061f5') # optimization OK From bouleetbil at frogdev.info Fri Apr 8 22:17:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 22:17:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: xfce4-xkb-plugin-0.5.3.3-3-i686 *fix dep Message-ID: <20110408201707.3B5851358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=962ba379d2a7420d9fea2378ffff8a2fb4692b1a commit 962ba379d2a7420d9fea2378ffff8a2fb4692b1a Author: bouleetbil Date: Fri Apr 8 20:16:17 2011 +0200 xfce4-xkb-plugin-0.5.3.3-3-i686 *fix dep diff --git a/source/xfce4/xfce4-xkb-plugin/FrugalBuild b/source/xfce4/xfce4-xkb-plugin/FrugalBuild index 8020ca6..dccc95e 100644 --- a/source/xfce4/xfce4-xkb-plugin/FrugalBuild +++ b/source/xfce4/xfce4-xkb-plugin/FrugalBuild @@ -3,10 +3,11 @@ pkgname=xfce4-xkb-plugin pkgver=0.5.3.3 -pkgrel=2 +pkgrel=3 pkgdesc="A keyboard layout plugin for the Xfce4 panel." makedepends=('intltool') -depends=('xfce4-panel>=4.8.0' 'libxfcegui4>=4.8.0' 'librsvg' 'libxklavier') +depends=('xfce4-panel>=4.8.0' 'libxfcegui4>=4.8.0' 'librsvg' 'libxklavier' \ + 'libwnck2') groups=('xfce4' 'xfce4-goodies') archs=('i686' 'x86_64' 'ppc') _F_xfce_goodies_ext=".tar.gz" From devil505linux at gmail.com Fri Apr 8 22:24:56 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 22:24:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebase-4.6.2-1-i686 * version bump Message-ID: <20110408202456.20BF01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fc5f587b085503aa4c072f7bd4f02e445c20a4fe commit fc5f587b085503aa4c072f7bd4f02e445c20a4fe Author: Devil505 Date: Fri Apr 8 22:24:36 2011 +0200 kdebase-4.6.2-1-i686 * version bump diff --git a/source/kde/kdebase/FrugalBuild b/source/kde/kdebase/FrugalBuild index 87e3f7c..71e9ff0 100644 --- a/source/kde/kdebase/FrugalBuild +++ b/source/kde/kdebase/FrugalBuild @@ -14,7 +14,7 @@ makedepends=("${makedepends[@]}" "kdelibs-compiletime>=${_F_kde_ver}" \ "libdbusmenu-qt>=0.8.0") ##replaces=('bscommander' 'kasablanca') #source=($source kinfocenter-icons.patch) -sha1sums=('3993cc44ce9c43028bec7f314e354345da9931aa') +sha1sums=('e9e46a6b4f5580996a1484da6d2ef17f418eec69') Qt4="${_F_kde_qtver}" Kde4="${_F_kde_ver}" From devil505linux at gmail.com Fri Apr 8 22:25:39 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 22:25:39 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebase-runtime-4.6.2-1-i686 * version bump Message-ID: <20110408202539.0E72B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1d0c70b562ae7b25d3167d68724058db2022f468 commit 1d0c70b562ae7b25d3167d68724058db2022f468 Author: Devil505 Date: Fri Apr 8 22:25:29 2011 +0200 kdebase-runtime-4.6.2-1-i686 * version bump diff --git a/source/kde/kdebase-runtime/FrugalBuild b/source/kde/kdebase-runtime/FrugalBuild index a149f7e..c1bc909 100644 --- a/source/kde/kdebase-runtime/FrugalBuild +++ b/source/kde/kdebase-runtime/FrugalBuild @@ -13,7 +13,7 @@ makedepends=("${makedepends[@]}" \ "docbook-xsl" "libqtdeclarative>=_F_kde_qtver" "libdbusmenu-qt>=0.8.0") replaces=('ksudo') source=("${source[@]}" 01-nepomukstrigiservice-disable-autostart.patch) -sha1sums=('7c6704d72577ed88acccc767d0a6a8adf7e8e9ac' \ +sha1sums=('d939d78f82e8c9d1257552abac08e4da1ff28c51' \ 'ae0a25253cd18c2672291403952f65082dbfc930') Kde4="$_F_kde_ver" From devil505linux at gmail.com Fri Apr 8 22:28:19 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 22:28:19 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdepimlibs-4.6.2-1-i686 * version bump Message-ID: <20110408202819.1B9981358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2b26c3a94e12417b4a8631d5da6e32436de6fb0 commit a2b26c3a94e12417b4a8631d5da6e32436de6fb0 Author: Devil505 Date: Fri Apr 8 22:28:08 2011 +0200 kdepimlibs-4.6.2-1-i686 * version bump diff --git a/source/kde/kdepimlibs/FrugalBuild b/source/kde/kdepimlibs/FrugalBuild index f0ecacf..498f104 100644 --- a/source/kde/kdepimlibs/FrugalBuild +++ b/source/kde/kdepimlibs/FrugalBuild @@ -13,7 +13,7 @@ makedepends=("${makedepends[@]}" "kdelibs-compiletime>=${_F_kde_ver}" \ "ksgmltools2>=${_F_kde_ver}" \ 'boost' 'docbook-xsl' "libnepomuk>=${_F_kde_ver}" \ "akonadi>=1.5.0" "shared-desktop-ontologies>=0.6.0") -sha1sums=('bba2ed4593c8d658efba4d4a4346d514529a3127') +sha1sums=('f3c78688203b90efabdd8961783e8f4d16d9c57c') Kde4="${_F_kde_ver}" Qt4="${_F_kde_qtver}" From devil505linux at gmail.com Fri Apr 8 22:29:27 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 8 Apr 2011 22:29:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebase-workspace-4.6.2-1-i686 * version bump Message-ID: <20110408202927.0F5FB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d912b84c575691f6964267f5deb479c0071eac4b commit d912b84c575691f6964267f5deb479c0071eac4b Author: Devil505 Date: Fri Apr 8 22:29:14 2011 +0200 kdebase-workspace-4.6.2-1-i686 * version bump diff --git a/source/kde/kdebase-workspace/FrugalBuild b/source/kde/kdebase-workspace/FrugalBuild index 613f70f..875039e 100644 --- a/source/kde/kdebase-workspace/FrugalBuild +++ b/source/kde/kdebase-workspace/FrugalBuild @@ -5,7 +5,7 @@ USE_GPSD=${USE_GPSD:-"n"} USE_NETWORKMANAGER=${USE_NETWORKMANAGER:-"n"} pkgname=kdebase-workspace -pkgrel=5 +pkgrel=1 pkgdesc="Programs specific for the KDE4 desktop." groups=('kde') archs=('i686' 'x86_64' 'ppc') @@ -31,7 +31,7 @@ source=("${source[@]}" \ #replaces=('ksensors' 'katapult' 'tastymenu' 'kbfx' 'kdesktop-menu' \ # 'kicker-compiz' 'taskbar-compiz' 'mtaskbar' 'ksmoothdock' \ # 'kompose' 'dbus-qt3') -sha1sums=('e37691d88ddbf92cc95ec39849a1331404c84fd5' \ +sha1sums=('63efb68733f347d0b7d24a7a061c5a0e3f84dee7' \ '9487b12ca673c90eb4850eee102956dee81844ba' \ 'e1f706c984fc81633663c662e674b6f2c64d2f83' \ '6216aad404aa0b846c835a0e8f9df4941bf74d37' \ From bouleetbil at frogdev.info Fri Apr 8 22:42:13 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 22:42:13 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tracker-0.10.8-1-x86_64 Message-ID: <20110408204213.189871358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9e75ad3af69f0b6f07e248e7cbda8819111ff83 commit c9e75ad3af69f0b6f07e248e7cbda8819111ff83 Author: bouleetbil Date: Fri Apr 8 22:41:59 2011 +0200 tracker-0.10.8-1-x86_64 *Version bump diff --git a/source/gnome-extra/tracker/FrugalBuild b/source/gnome-extra/tracker/FrugalBuild index 64abe26..c4d7986 100644 --- a/source/gnome-extra/tracker/FrugalBuild +++ b/source/gnome-extra/tracker/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=tracker -pkgver=0.10.6 +pkgver=0.10.8 pkgrel=1 pkgdesc="Tracker is a first class object database, extensible tag/metadata database, search tool and indexer." depends=('gtk+2>=2.20.0-2' 'dbus-glib>=0.76' 'sqlite3' 'gamin' \ @@ -19,7 +19,7 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet gnome -sha1sums=('3a587b9ba5105e30b0fa5caced05c4582253b519') +sha1sums=('106a115640f5dcc642ce297359c4624e6c8d8bb6') unset MAKEFLAGS subpkgs=("${subpkgs[@]}" "$pkgname-nautilus") From bouleetbil at frogdev.info Fri Apr 8 22:45:53 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 22:45:53 +0200 (CEST) Subject: [Frugalware-git] gnometesting: networkmanager-0.8.998-1-x86_64 Message-ID: <20110408204553.09B3C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=961242b8b515de0d339963c637f69ac59976a924 commit 961242b8b515de0d339963c637f69ac59976a924 Author: bouleetbil Date: Fri Apr 8 22:45:42 2011 +0200 networkmanager-0.8.998-1-x86_64 *Version bump diff --git a/source/network/networkmanager/FrugalBuild b/source/network/networkmanager/FrugalBuild index 084a2dc..b8aa547 100644 --- a/source/network/networkmanager/FrugalBuild +++ b/source/network/networkmanager/FrugalBuild @@ -3,8 +3,8 @@ pkgname=networkmanager _F_gnome_name=NetworkManager -pkgver=0.8.997 -pkgrel=2 +pkgver=0.8.998 +pkgrel=1 pkgdesc="Network Management daemon" depends=('wireless_tools' 'hal' 'iproute2' 'dhcpcd>=5.1.3' 'nss' 'libgcrypt' \ 'libnl' 'ppp' 'wpa_supplicant' 'iptables' 'polkit' 'libgudev' 'ca-certificates' \ @@ -17,7 +17,7 @@ options=('scriptlet') backup=('etc/NetworkManager/nm-system-settings.conf') source=($source \ nm-system-settings.conf) -sha1sums=('385b094f2806703edac2d9a5dfb38f1ad8bfbd8e' \ +sha1sums=('56f874463d24e90b7e6a077469f644401cccb280' \ '5a7c9957783a275692101e5471022056cff6f096') _F_cd_path=$_F_gnome_name-$pkgver From bouleetbil at frogdev.info Fri Apr 8 23:17:43 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:17:43 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nm-applet-0.8.998-1-x86_64 Message-ID: <20110408211743.5B69A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2d5e4b04abcbe92bbf8614401fcfd57b53f7f600 commit 2d5e4b04abcbe92bbf8614401fcfd57b53f7f600 Author: bouleetbil Date: Fri Apr 8 23:17:32 2011 +0200 nm-applet-0.8.998-1-x86_64 *Version bump diff --git a/source/gnome/nm-applet/FrugalBuild b/source/gnome/nm-applet/FrugalBuild index 55d38a5..a435eb8 100644 --- a/source/gnome/nm-applet/FrugalBuild +++ b/source/gnome/nm-applet/FrugalBuild @@ -3,12 +3,12 @@ pkgname=nm-applet _F_gnome_name=network-manager-applet -pkgver=0.8.997 +pkgver=0.8.998 pkgrel=1 pkgdesc="Network Management applet" -depends=('gconf' 'gtk+3' 'gnome-keyring>=2.91.0' \ - 'networkmanager>=0.8.997' 'polkit-gnome' \ - 'gnome-bluetooth>=2.91.91' 'mobile-broadband-provider-info' \ +depends=('gconf' 'gtk+3' 'gnome-keyring>=3.0.0' \ + 'networkmanager>=0.8.998' 'polkit-gnome' \ + 'gnome-bluetooth>=3.0.0' 'mobile-broadband-provider-info' \ 'libnotify>0.7') makedepends=('perl-xml-parser' 'intltool') groups=('gnome') @@ -17,7 +17,7 @@ archs=('i686' 'x86_64' 'ppc') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('51e20b217fb131defd02583c2ca9da7a55ac9671') +sha1sums=('ad33666c1abe5e4d88b4a0e9e851f96023c4a8bc') _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --with-gtkver=3" From bouleetbil at frogdev.info Fri Apr 8 23:20:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:20:42 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nm-openvpn-0.8.998-1-x86_64 Message-ID: <20110408212042.5FF941358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0ef12b44c54ab1e98442f807315492192c6012ad commit 0ef12b44c54ab1e98442f807315492192c6012ad Author: bouleetbil Date: Fri Apr 8 23:20:32 2011 +0200 nm-openvpn-0.8.998-1-x86_64 *Version bump diff --git a/source/gnome-extra/nm-openvpn/FrugalBuild b/source/gnome-extra/nm-openvpn/FrugalBuild index 3e7f327..63112f0 100644 --- a/source/gnome-extra/nm-openvpn/FrugalBuild +++ b/source/gnome-extra/nm-openvpn/FrugalBuild @@ -3,17 +3,17 @@ pkgname=nm-openvpn _F_gnome_name=NetworkManager-openvpn -pkgver=0.8.995 -pkgrel=3 +pkgver=0.8.998 +pkgrel=1 pkgdesc="network management framework (OPENVPN plugin)" -depends=('gconf' 'gtk+3' 'gnome-keyring>=2.91.0' \ - 'networkmanager>=0.8.995' 'polkit-gnome') +depends=('gconf' 'gtk+3' 'gnome-keyring>=3.0.0' \ + 'networkmanager>=0.8.998' 'polkit-gnome') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('79e4a2a8383b55fcbc084f25856c2b35cd2e3414') +sha1sums=('af06b128841a036824e0cb32acb5366c764e3f5b') _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --with-gtkver=3" From bouleetbil at frogdev.info Fri Apr 8 23:22:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:22:54 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nm-pptp-0.8.998-1-x86_64 Message-ID: <20110408212254.9872F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ebd65685fb600a82422180e174b99f162cd3c54f commit ebd65685fb600a82422180e174b99f162cd3c54f Author: bouleetbil Date: Fri Apr 8 23:22:44 2011 +0200 nm-pptp-0.8.998-1-x86_64 *Version bump diff --git a/source/gnome-extra/nm-pptp/FrugalBuild b/source/gnome-extra/nm-pptp/FrugalBuild index 93129ca..fa30698 100644 --- a/source/gnome-extra/nm-pptp/FrugalBuild +++ b/source/gnome-extra/nm-pptp/FrugalBuild @@ -3,18 +3,18 @@ pkgname=nm-pptp _F_gnome_name=NetworkManager-pptp -pkgver=0.8.995 -pkgrel=3 +pkgver=0.8.998 +pkgrel=1 pkgdesc="network management framework (PPTP plugin)" -depends=('gconf' 'gtk+3' 'libglade' 'gnome-keyring>=2.91.0' \ - 'networkmanager>=0.8.995') +depends=('gconf' 'gtk+3' 'libglade' 'gnome-keyring>=3.0.0' \ + 'networkmanager>=0.8.998') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet source=($source FixPath.diff) -sha1sums=('5f57aac934002fa0d1380d5032bacb2596e1b3c4' \ +sha1sums=('256507e0c9be05f0efac7c2862463c37d3c840a0' \ '68724235ff7713107a42d06400e16ca805241c46') _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --with-gtkver=3" From bouleetbil at frogdev.info Fri Apr 8 23:25:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:25:04 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nm-vpnc-0.8.998-1-x86_64 Message-ID: <20110408212504.1640C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=02c84ad52bf33a777b19eaff1dce5336b2473ca5 commit 02c84ad52bf33a777b19eaff1dce5336b2473ca5 Author: bouleetbil Date: Fri Apr 8 23:24:54 2011 +0200 nm-vpnc-0.8.998-1-x86_64 *Version bump diff --git a/source/gnome-extra/nm-vpnc/FrugalBuild b/source/gnome-extra/nm-vpnc/FrugalBuild index cb6f92b..67965b9 100644 --- a/source/gnome-extra/nm-vpnc/FrugalBuild +++ b/source/gnome-extra/nm-vpnc/FrugalBuild @@ -3,17 +3,17 @@ pkgname=nm-vpnc _F_gnome_name=NetworkManager-vpnc -pkgver=0.8.996 -pkgrel=2 +pkgver=0.8.998 +pkgrel=1 pkgdesc="network management framework (VPNC plugin)" -depends=('gconf' 'gtk+3' 'gnome-keyring>=2.91.0' \ - 'networkmanager>=0.8.996' 'polkit-gnome') +depends=('gconf' 'gtk+3' 'gnome-keyring>=3.0.0' \ + 'networkmanager>=0.8.998' 'polkit-gnome') makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('c0e64f301c58fc798af75c32f48ed29b0f19a326') +sha1sums=('72f1afe0a390a32651825cd214936bdd016969f1') _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --with-gtkver=3" From bouleetbil at frogdev.info Fri Apr 8 23:28:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:28:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: nm-openconnect *dead pkg Message-ID: <20110408212808.67FF01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3618780d2c2129c995108286ee6a232c4a882bb0 commit 3618780d2c2129c995108286ee6a232c4a882bb0 Author: bouleetbil Date: Fri Apr 8 23:25:37 2011 +0200 nm-openconnect *dead pkg diff --git a/source/gnome-extra/nm-openconnect/FrugalBuild b/source/gnome-extra/nm-openconnect/FrugalBuild deleted file mode 100644 index 644beef..0000000 --- a/source/gnome-extra/nm-openconnect/FrugalBuild +++ /dev/null @@ -1,24 +0,0 @@ -# Compiling Time: 0.16 SBU -# Maintainer: bouleetbil - -pkgname=nm-openconnect -_F_gnome_name=NetworkManager-openconnect -pkgver=0.8.2 -pkgrel=1 -pkgdesc="Open Cisco AnyConnect VPN plugin for Network Manager" -depends=('gconf' 'gtk+2' 'libglade' 'gnome-keyring>=2.32.0' 'libgnomeui' \ - 'networkmanager>=0.8.1' 'polkit-gnome') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64') -_F_gnome_iconcache="y" -Finclude gnome gnome-scriptlet -sha1sums=('71bcb27dcde87f78053933214aa281e29c46c8ab') -_F_cd_path=$_F_gnome_name-$pkgver -build() { - Fcd - Fsed "nm-openconnect" "netdev" nm-openconnect-service.conf - Fbuild -} - -# optimization OK From bouleetbil at frogdev.info Fri Apr 8 23:28:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:28:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: networkmanager-0.8.998-2-x86_64 *replace nm-openconnect Message-ID: <20110408212808.740D6BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4d55a3991930f9f9b76da068e8180ae1902a0021 commit 4d55a3991930f9f9b76da068e8180ae1902a0021 Author: bouleetbil Date: Fri Apr 8 23:27:47 2011 +0200 networkmanager-0.8.998-2-x86_64 *replace nm-openconnect diff --git a/source/network/networkmanager/FrugalBuild b/source/network/networkmanager/FrugalBuild index b8aa547..b58e22d 100644 --- a/source/network/networkmanager/FrugalBuild +++ b/source/network/networkmanager/FrugalBuild @@ -4,7 +4,7 @@ pkgname=networkmanager _F_gnome_name=NetworkManager pkgver=0.8.998 -pkgrel=1 +pkgrel=2 pkgdesc="Network Management daemon" depends=('wireless_tools' 'hal' 'iproute2' 'dhcpcd>=5.1.3' 'nss' 'libgcrypt' \ 'libnl' 'ppp' 'wpa_supplicant' 'iptables' 'polkit' 'libgudev' 'ca-certificates' \ @@ -20,6 +20,7 @@ source=($source \ sha1sums=('56f874463d24e90b7e6a077469f644401cccb280' \ '5a7c9957783a275692101e5471022056cff6f096') _F_cd_path=$_F_gnome_name-$pkgver +replaces=('nm-openconnect') build() { Fcd From bouleetbil at frogdev.info Fri Apr 8 23:30:48 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:30:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: avant-window-navigator *remove gnome-shell replace it *it's a pain to maintain *feel free to readd if you want but I will don't maintain it :p Message-ID: <20110408213048.7A1231358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=693ba1e1780c7bde91ed268f167e5e8ddc48ef1c commit 693ba1e1780c7bde91ed268f167e5e8ddc48ef1c Author: bouleetbil Date: Fri Apr 8 23:28:33 2011 +0200 avant-window-navigator *remove gnome-shell replace it *it's a pain to maintain *feel free to readd if you want but I will don't maintain it :p diff --git a/source/gnome-extra/avant-window-navigator/FrugalBuild b/source/gnome-extra/avant-window-navigator/FrugalBuild deleted file mode 100644 index 7cf5e1f..0000000 --- a/source/gnome-extra/avant-window-navigator/FrugalBuild +++ /dev/null @@ -1,25 +0,0 @@ -# Compiling Time: 0.38 SBU -# Maintainer: bouleetbil -# Contributor: AlexExtreme - -pkgname=avant-window-navigator -pkgver=0.3.2.1 -pkgrel=6 -pkgdesc="Fully customisable dock-like window navigator for GNOME." -url="https://launchpad.net/awn" -depends=('pygtk' 'gtk+2>=2.20.0-2' 'libglade' 'libwnck2' 'gconf' 'gnome-desktop2' \ - 'dbus-glib' 'libxcomposite' 'libx11' 'libxrender' 'gnome-python' \ - 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk') -makedepends=('perl-xml-parser' 'intltool' 'vala') -groups=('gnome-extra') -_F_gnome_schemas=('/etc/gconf/schemas/awn.schemas') -_F_gnome_iconcache=y -_F_gnome_desktop=y -options=('scriptlet') -Finclude gnome-scriptlet -archs=('i686' 'x86_64') -up2date="elinks -dump 'https://launchpad.net/awn/+download' | Flasttar" -source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('3b663ebdd8ecca1c953343e8664e713746128242') - -# optimization OK From bouleetbil at frogdev.info Fri Apr 8 23:30:48 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:30:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: awn-extras-applets *remove gnome-shell replace it *it's a pain to maintain *feel free to readd if you want but I will don't maintain it :p Message-ID: <20110408213048.861D2BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dfd44166ddb39d61f5bdd651412705c48860bbf4 commit dfd44166ddb39d61f5bdd651412705c48860bbf4 Author: bouleetbil Date: Fri Apr 8 23:30:05 2011 +0200 awn-extras-applets *remove gnome-shell replace it *it's a pain to maintain *feel free to readd if you want but I will don't maintain it :p diff --git a/source/gnome-extra/awn-extras-applets/FrugalBuild b/source/gnome-extra/awn-extras-applets/FrugalBuild deleted file mode 100644 index 1098013..0000000 --- a/source/gnome-extra/awn-extras-applets/FrugalBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Compiling Time: 0.96 SBU -# Maintainer: bouleetbil - -pkgname=awn-extras-applets -pkgver=0.3.2.2 -pkgrel=5 -pkgdesc="plugins for avant window manager" -url="https://launchpad.net/awn-extras" -depends=('avant-window-navigator>=0.3.2.1-4' 'libsexy' 'librsvg' 'gnome-menus' 'libgtop' 'vte>=0.20.5' 'wxgtk' \ - 'gst-python' 'gnome-python-extras' 'gnome-desktop>=2.30.0' \ - 'pyalsaaudio' 'feedparser' 'python>=2.7' 'gnome-python-extras' 'gnome-python' \ - 'gnome-python-desktop' 'gnome-python-desktop-applet' 'gnome-python-desktop-desktop' \ - 'gnome-python-extras-mozembed' 'gnome-python-extras-gtkhtml' \ - 'gnome-python-extras-gtkspell' 'notify-python') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -options=('scriptlet') -archs=('i686' 'x86_64') -up2date="elinks -dump 'https://launchpad.net/awn-extras/+download' | Flasttar" -source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -Fconfopts="${Fconfopts[@]} --disable-pymod-checks" -_F_gnome_iconcache="y" -_F_gnome_schemas=( \ - '/etc/gconf/schemas/arss.schemas' \ - '/etc/gconf/schemas/awn-notification-daemon.schemas' \ - '/etc/gconf/schemas/awnsystemmonitor.schemas' \ - '/etc/gconf/schemas/awnterm.schemas' \ - '/etc/gconf/schemas/cairo-clock.schemas' \ - '/etc/gconf/schemas/DesktopManager.schemas' \ - '/etc/gconf/schemas/digitalClock.schemas' \ - '/etc/gconf/schemas/filebrowser.schemas' \ - '/etc/gconf/schemas/file-browser-launcher.schemas' \ - '/etc/gconf/schemas/places.schemas' \ - '/etc/gconf/schemas/pynot.schemas' \ - '/etc/gconf/schemas/pynot-rgba.schemas' \ - '/etc/gconf/schemas/shinyswitcher.schemas' \ - '/etc/gconf/schemas/to-do.schemas' \ - '/etc/gconf/schemas/trash.schemas') -Finclude gnome-scriptlet -sha1sums=('a59fe66fd379a222291ea238d06c1f64195aee14') - -# optimization OK From bouleetbil at frogdev.info Fri Apr 8 23:34:31 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 8 Apr 2011 23:34:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: eog-plugins-2.91.90-2-x86_64 *rebuild with eog 3.0.0 Message-ID: <20110408213431.8BBEC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69447b6e7f17da31ed41670c57a6d4f3314a0b80 commit 69447b6e7f17da31ed41670c57a6d4f3314a0b80 Author: bouleetbil Date: Fri Apr 8 23:34:09 2011 +0200 eog-plugins-2.91.90-2-x86_64 *rebuild with eog 3.0.0 diff --git a/source/gnome-extra/eog-plugins/FrugalBuild b/source/gnome-extra/eog-plugins/FrugalBuild index 21b0818..ef61455 100644 --- a/source/gnome-extra/eog-plugins/FrugalBuild +++ b/source/gnome-extra/eog-plugins/FrugalBuild @@ -3,9 +3,9 @@ pkgname=eog-plugins pkgver=2.91.90 -pkgrel=1 +pkgrel=2 pkgdesc="Plugins for eog" -depends=('eog>=2.91.0' 'libexif' 'libexif' 'vte-python' 'postr' 'libgdata' \ +depends=('eog>=3.0.0' 'libexif' 'libexif' 'vte-python' 'postr' 'libgdata' \ 'libpeas-gtk') makedepends=('intltool' 'gnome-doc-utils>=0.16.0' 'gtk-doc') groups=('gnome-extra') From vmiklos at frugalware.org Sat Apr 9 00:32:31 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 00:32:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tgt-1.0.15-1-i686 Message-ID: <20110408223231.26E901358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=67c3f1f5513314f3f5260dc993215dbdb970d0f5 commit 67c3f1f5513314f3f5260dc993215dbdb970d0f5 Author: Miklos Vajna Date: Fri Apr 8 13:03:05 2011 +0200 tgt-1.0.15-1-i686 - version bump diff --git a/source/network-extra/tgt/FrugalBuild b/source/network-extra/tgt/FrugalBuild index 0edcdce..f734e08 100644 --- a/source/network-extra/tgt/FrugalBuild +++ b/source/network-extra/tgt/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=tgt -pkgver=1.0.14 +pkgver=1.0.15 pkgrel=1 pkgdesc="Linux SCSI target framework (software iSCSI target)" _F_sourceforge_dirname="stgt" @@ -12,7 +12,7 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar http://stgt.sourceforge.net/releases/" source=(http://stgt.sourceforge.net/releases/$pkgname-$pkgver.tar.gz rc.tgtd) -sha1sums=('472bb7392cd76403991dd5e3a623947fb1e9dee0' \ +sha1sums=('d1c0bb5c104789cecc2fb24d34f06aacd2acffc5' \ 'e27da7dc1f6e2ebfb4e047410f79aefc631c15e8') build() From vmiklos at frugalware.org Sat Apr 9 00:32:31 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 00:32:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pyro-3.12-1-i686 Message-ID: <20110408223231.1454A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=47319fa6e4b71dc472e4d5109bb7d2080846dfad commit 47319fa6e4b71dc472e4d5109bb7d2080846dfad Author: Miklos Vajna Date: Fri Apr 8 12:53:51 2011 +0200 pyro-3.12-1-i686 - version bump diff --git a/source/devel-extra/pyro/FrugalBuild b/source/devel-extra/pyro/FrugalBuild index a715abc..a625443 100644 --- a/source/devel-extra/pyro/FrugalBuild +++ b/source/devel-extra/pyro/FrugalBuild @@ -3,13 +3,17 @@ # Contributor: enda pkgname=pyro -pkgver=3.9.1 -pkgrel=2 +pkgver=3.12 +pkgrel=1 pkgdesc="PYthon Remote Objects is an advanced and powerful Distributed Object Technology system" depends=('python>=2.7') groups=('devel-extra') archs=('i686' 'x86_64') -Finclude sourceforge python +url="http://www.xs4all.nl/~irmen/pyro3/" +_F_archive_name="Pyro" +up2date="Flasttar http://www.xs4all.nl/~irmen/pyro3/download/" +source=(http://www.xs4all.nl/~irmen/pyro3/download/Pyro-$pkgver.tar.gz) +Finclude python source=(${source/pyro-/Pyro-} \ setup.cfg \ README.Frugalware \ @@ -25,7 +29,7 @@ build() Fdoc README.Frugalware } -sha1sums=('e0150e8673e542a53e9e28628b105f56492c33d5' \ +sha1sums=('99e94dad80fe0a5fef080688824d449c896b3da9' \ '07f873c214c03d301d242a9db896bd2e7d2596a3' \ '7bc0736a58bcd1020ab7bc17bdadc5479071e03b' \ 'b1fe8db41ac9d610d3f83ce90fb079bc4b28d711') From vmiklos at frugalware.org Sat Apr 9 00:32:31 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 00:32:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ghc-7.0.3-1-i686 Message-ID: <20110408223231.40608135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a63d7d69e22e72e37953c478d60524cad1664f0 commit 8a63d7d69e22e72e37953c478d60524cad1664f0 Author: Miklos Vajna Date: Fri Apr 8 15:47:50 2011 +0200 ghc-7.0.3-1-i686 - version bump diff --git a/source/devel-extra/ghc/FrugalBuild b/source/devel-extra/ghc/FrugalBuild index c5ee5b7..afdeb27 100644 --- a/source/devel-extra/ghc/FrugalBuild +++ b/source/devel-extra/ghc/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Miklos Vajna pkgname=ghc -pkgver=7.0.2 -pkgrel=4 +pkgver=7.0.3 +pkgrel=1 pkgdesc="The Glasgow Haskell Compiler" url="http://www.haskell.org/ghc/" depends=('gmp>=5.0.1' 'readline' 'libedit' 'libffi') @@ -17,11 +17,11 @@ else fi source=(http://www.haskell.org/ghc/dist/$pkgver/ghc-$pkgver-src.tar.bz2 \ http://www.haskell.org/ghc/dist/$pkgver/ghc-$pkgver-$_arch-unknown-linux.tar.bz2) -sha1sums=('6303f73daa3ef2c4df1bd24b2d97ae81d7944e63') +sha1sums=('222eed949413723b1f45218a908d5ee6930fda1b') if [ "$CARCH" == "i686" ]; then - sha1sums=(${sha1sums[@]} '6ce91fee267b43779d590efc8c037c83b4fe69be') + sha1sums=(${sha1sums[@]} '092ffb12fb29a5ddb173ace1f14f1144ac2a9c67') elif [ "$CARCH" == "x86_64" ]; then - sha1sums=(${sha1sums[@]} 'd3faa153cda62989d5c0b4d7d98e98f7c21f99fd') + sha1sums=(${sha1sums[@]} '3fe4bad81ad83d24a21ca38f3e5f6716140d8a29') fi NOEXTRACT=1 From devil505linux at gmail.com Sat Apr 9 08:27:26 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:27:26 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebase-workspace-4.6.2-1-i686 * removed useless poweroff patch (now in upstream) Message-ID: <20110409062726.6C0E41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7e037b6483d8cb49feb7e1db614cea82eef08201 commit 7e037b6483d8cb49feb7e1db614cea82eef08201 Author: Devil505 Date: Sat Apr 9 08:26:08 2011 +0200 kdebase-workspace-4.6.2-1-i686 * removed useless poweroff patch (now in upstream) diff --git a/source/kde/kdebase-workspace/FrugalBuild b/source/kde/kdebase-workspace/FrugalBuild index 875039e..938e52d 100644 --- a/source/kde/kdebase-workspace/FrugalBuild +++ b/source/kde/kdebase-workspace/FrugalBuild @@ -23,7 +23,6 @@ makedepends=("${makedepends[@]}" "ksgmltools2>=$_F_kde_ver" "kdelibs>=$_F_kde_ve ## xrdb needed by font part .. from code in fonts.cpp ->: ## " proc << "xrdb" << "-quiet" << "-remove" << "-nocpp"; " source=("${source[@]}" \ - a58c0a17217b14e2e47415cfdfb1e8bb0b61a4d3.patch \ kde.desktop \ kde.pamd \ kde-np.pamd) @@ -32,7 +31,6 @@ source=("${source[@]}" \ # 'kicker-compiz' 'taskbar-compiz' 'mtaskbar' 'ksmoothdock' \ # 'kompose' 'dbus-qt3') sha1sums=('63efb68733f347d0b7d24a7a061c5a0e3f84dee7' \ - '9487b12ca673c90eb4850eee102956dee81844ba' \ 'e1f706c984fc81633663c662e674b6f2c64d2f83' \ '6216aad404aa0b846c835a0e8f9df4941bf74d37' \ '6216aad404aa0b846c835a0e8f9df4941bf74d37') diff --git a/source/kde/kdebase-workspace/a58c0a17217b14e2e47415cfdfb1e8bb0b61a4d3.patch b/source/kde/kdebase-workspace/a58c0a17217b14e2e47415cfdfb1e8bb0b61a4d3.patch deleted file mode 100644 index 6ffef53..0000000 --- a/source/kde/kdebase-workspace/a58c0a17217b14e2e47415cfdfb1e8bb0b61a4d3.patch +++ /dev/null @@ -1,27 +0,0 @@ -From: Oswald Buddenhagen -Date: Sat, 05 Mar 2011 18:39:00 +0000 -Subject: default to poweroff for HaltCmd on linux -X-Git-Url: http://quickgit.kde.org/?p=kde-workspace.git&a=commitdiff&h=a58c0a17217b14e2e47415cfdfb1e8bb0b61a4d3 ---- -default to poweroff for HaltCmd on linux - -now that linux can have more bsd-like shutdown implementations (both in -form of gentoo and of systemd), it makes sense to treat it the same. - -BUG: 267490 -FIXED-IN: 4.6.2 ---- - - ---- a/kdm/config.def -+++ b/kdm/config.def -@@ -37,7 +37,7 @@ - #ifdef _AIX - # define HALT_CMD "/usr/sbin/shutdown -h now" - # define REBOOT_CMD "/usr/sbin/shutdown -r now" --#elif defined(BSD) -+#elif defined(BSD) || defined(__linux__) - # define HALT_CMD "/sbin/shutdown -p now" - # define REBOOT_CMD "/sbin/shutdown -r now" - #elif defined(__SVR4) - From devil505linux at gmail.com Sat Apr 9 08:46:51 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:46:51 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdenetwork-4.6.2-1-i686 * version bump Message-ID: <20110409064652.032201358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1a29e044ee4824f5dbf015bcbfc361653a651ba7 commit 1a29e044ee4824f5dbf015bcbfc361653a651ba7 Author: Devil505 Date: Sat Apr 9 08:45:01 2011 +0200 kdenetwork-4.6.2-1-i686 * version bump diff --git a/source/kde/kdenetwork/FrugalBuild b/source/kde/kdenetwork/FrugalBuild index 07e2c140..c92fdb5 100644 --- a/source/kde/kdenetwork/FrugalBuild +++ b/source/kde/kdenetwork/FrugalBuild @@ -19,7 +19,7 @@ provides=("$pkgname-docs") conflicts=("${provides[@]}") replaces=("${provides[@]}") -sha1sums=('dc09ffe178070147d67d5c27b9c340a86a2e14c7' \ +sha1sums=('6865c074b87a201b876d11b86a2f14aff5f45abb' \ '3d0f37d5f453da75b8dbe2aa9ba38316cf723824' \ '1476122463258ed03160dc01b38caf3eaebaf0e8' \ '653ad0c3fb581efd37fbb0a899acbbe75f081402') From devil505linux at gmail.com Sat Apr 9 08:46:52 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:46:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdegraphics-4.6.2-1-i686 * version bump Message-ID: <20110409064652.10DEB1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=61e4b0510941de558bbb18539bd59bc0929c7b52 commit 61e4b0510941de558bbb18539bd59bc0929c7b52 Author: Devil505 Date: Sat Apr 9 08:45:21 2011 +0200 kdegraphics-4.6.2-1-i686 * version bump diff --git a/source/kde/kdegraphics/FrugalBuild b/source/kde/kdegraphics/FrugalBuild index dacea94..ead1884 100644 --- a/source/kde/kdegraphics/FrugalBuild +++ b/source/kde/kdegraphics/FrugalBuild @@ -9,7 +9,7 @@ archs=('i686' 'x86_64' 'ppc') Finclude kde makedepends=("${makedepends[@]}" "ksgmltools2>=${_F_kde_ver}" "libqtdesigner=>$_F_kde_qtver" \ "docbook-xsl" "libdbusmenu-qt>=0.8.0" "attica>=0.2.0") -sha1sums=('8a96d927be9a41ff9a7d222474d0e4759346415b') +sha1sums=('9c9f31c88c1c9e6dcaa7fb177847402d874ffc94') Qt4="${_F_kde_qtver}" Kde4="${_F_kde_ver}" From devil505linux at gmail.com Sat Apr 9 08:46:52 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:46:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdegames-4.6.2-1-i686 * version bump Message-ID: <20110409064652.2C6BD135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d16b1ee1077cd193ca75747bf1388e05b965611a commit d16b1ee1077cd193ca75747bf1388e05b965611a Author: Devil505 Date: Sat Apr 9 08:46:36 2011 +0200 kdegames-4.6.2-1-i686 * version bump diff --git a/source/kde/kdegames/FrugalBuild b/source/kde/kdegames/FrugalBuild index 8417be4..167432d 100644 --- a/source/kde/kdegames/FrugalBuild +++ b/source/kde/kdegames/FrugalBuild @@ -15,7 +15,7 @@ depends=("libqt3support>=$_F_kde_qtver" 'qca' 'libgcc' 'libice' 'libxrender' 'ut 'libxi' 'libglu' 'ggz-client-libs') makedepends=("${makedepends[@]}" "kdelibs-compiletime>=$_F_kde_ver" "docbook-xsl" \ "libdbusmenu-qt>=0.8.0") -sha1sums=('4c7ef990bcf9eedb1a666491514fbe5e04ab9421') +sha1sums=('91ec7347488504931b4019182a3f2b91a60d8065') subpkgs=("${subpkgs[@]}" "$pkgname-docs") subdescs=("${subdescs[@]}" "$pkgname Documentation") From devil505linux at gmail.com Sat Apr 9 08:57:49 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdetoys-4.6.2-1-i686 * version bump Message-ID: <20110409065749.DD54C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=369a22aa274c0759d8a9f5f74c98e04b507419ce commit 369a22aa274c0759d8a9f5f74c98e04b507419ce Author: Devil505 Date: Sat Apr 9 08:54:07 2011 +0200 kdetoys-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdetoys/FrugalBuild b/source/kde-extra/kdetoys/FrugalBuild index 7629872..5d6ee23 100644 --- a/source/kde-extra/kdetoys/FrugalBuild +++ b/source/kde-extra/kdetoys/FrugalBuild @@ -10,7 +10,7 @@ makedepends=("${makedepends[@]}" "kdebase-workspace-compiletime>=${_F_kde_ver}" "docbook-xsl" "libdbusmenu-qt>=0.8.0") groups=('kde-extra') archs=('i686' 'x86_64') -sha1sums=('f4870f9f2c38d7a81b08790957a143b4a9e359b2') +sha1sums=('4619d2124abe0887ce5aca24f1333419f7cd88c5') subpkgs=("${subpkgs[@]}" "$pkgname-docs") subdescs=("${subdescs[@]}" "$pkgname Documentation") From devil505linux at gmail.com Sat Apr 9 08:57:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeaccessibility-4.6.2-1-i686 * version bump Message-ID: <20110409065750.0131DBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d834e9166c4d8f9b1bcc46c016c16ffd9af73312 commit d834e9166c4d8f9b1bcc46c016c16ffd9af73312 Author: Devil505 Date: Sat Apr 9 08:54:20 2011 +0200 kdeaccessibility-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdeaccessibility/FrugalBuild b/source/kde-extra/kdeaccessibility/FrugalBuild index e060be0..d83b99a 100644 --- a/source/kde-extra/kdeaccessibility/FrugalBuild +++ b/source/kde-extra/kdeaccessibility/FrugalBuild @@ -16,6 +16,6 @@ subdescs=("Kdeaccessibility Documentation") subdepends=('') subgroups=('docs-extra kde-docs') subarchs=('i686 x86_64') -sha1sums=('820c3d85b01e0714826a0e00c779d4ca84ddf093') +sha1sums=('5e8e92a312b2c995602a66cc775009839122053d') # optimization OK From devil505linux at gmail.com Sat Apr 9 08:57:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeartwork-4.6.2-1-i686 * version bump Message-ID: <20110409065750.0CB70BAC006@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c16898841bfc8b58836e6a998e70a0a226c8772 commit 3c16898841bfc8b58836e6a998e70a0a226c8772 Author: Devil505 Date: Sat Apr 9 08:54:51 2011 +0200 kdeartwork-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdeartwork/FrugalBuild b/source/kde-extra/kdeartwork/FrugalBuild index 8d393de..3dd0343 100644 --- a/source/kde-extra/kdeartwork/FrugalBuild +++ b/source/kde-extra/kdeartwork/FrugalBuild @@ -14,7 +14,7 @@ depends=() makedepends=("${makedepends[@]}" 'xscreensaver' 'eigen>=2.0.6' "kdelibs>=${_F_kde_ver}" \ "kdelibs-compiletime>=${_F_kde_ver}" "kdebase-workspace-compiletime>=${_F_kde_ver}" \ "kscreensaver>=${_F_kde_ver}" "docbook-xsl" "kwin>=${_F_kde_ver}" "libdbusmenu-qt>=0.8.0") -sha1sums=('47c55cccd39f634a9754e9ff0b2dd9791aaf3ee4') +sha1sums=('2a264081e50f2d2d78d98080db8f013f3148f9b2') subpkgs=("$pkgname-desktoptheme-slim-glow") subdescs=("KDE4 Plasma Theme") From devil505linux at gmail.com Sat Apr 9 08:57:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeedu-4.6.2-1-i686 * version bump Message-ID: <20110409065750.13B53BAC007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=31cec0758a728c83649f87182d084580965f851a commit 31cec0758a728c83649f87182d084580965f851a Author: Devil505 Date: Sat Apr 9 08:56:05 2011 +0200 kdeedu-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdeedu/FrugalBuild b/source/kde-extra/kdeedu/FrugalBuild index 8d59d55..06235a0 100644 --- a/source/kde-extra/kdeedu/FrugalBuild +++ b/source/kde-extra/kdeedu/FrugalBuild @@ -16,7 +16,7 @@ makedepends=("${makedepends[@]}" 'boost' 'cfitsio' 'eigen' 'facile' 'gmm' 'ocaml provides=('kalgebra' 'koctave') replaces=('kalgebra' 'koctave') conflicts=('kalgebra' 'koctave') -sha1sums=('90843f6a472aa38ece3fc2a237fffd020572fad7') +sha1sums=('7c94a10f5c17237dcd5c348a8ac129973934cf05') subpkgs=("${subpkgs[@]}" "marble") subdescs=("${subdescs[@]}" "Desktop Globe / World Atlas for KDE") From devil505linux at gmail.com Sat Apr 9 08:57:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdewebdev-4.6.2-1-i686 * version bump Message-ID: <20110409065750.1BD0B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2e0f1bfe2de3b2788caadf85ebeb39eee3e6122e commit 2e0f1bfe2de3b2788caadf85ebeb39eee3e6122e Author: Devil505 Date: Sat Apr 9 08:56:36 2011 +0200 kdewebdev-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdewebdev/FrugalBuild b/source/kde-extra/kdewebdev/FrugalBuild index 3c05b2c..95a9a06 100644 --- a/source/kde-extra/kdewebdev/FrugalBuild +++ b/source/kde-extra/kdewebdev/FrugalBuild @@ -14,7 +14,7 @@ makedepends=("${makedepends[@]}" 'ruby>=1.9.1' 'boost' "kdepimlibs-compiletime>= "ksgmltools2>=${_F_kde_ver}" "docbook-xsl" "kdelibs>=${_F_kde_ver}" "libdbusmenu-qt>=0.8.0") groups=('kde-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('e915e8ea6d886f46ddc770f60362d3758b593713') +sha1sums=('80f709845fb871919fbb2c293d1cc8f40160509b') subpkgs=("${subpkgs[@]}" "$pkgname-docs") subdescs=("${subdescs[@]}" "$pkgname Documentation") From devil505linux at gmail.com Sat Apr 9 08:57:50 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 08:57:50 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdemultimedia-4.6.2-1-i686 * version bump Message-ID: <20110409065750.241841358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=448ecf697554d063c5568dd3fc38a6608b217913 commit 448ecf697554d063c5568dd3fc38a6608b217913 Author: Devil505 Date: Sat Apr 9 08:57:37 2011 +0200 kdemultimedia-4.6.2-1-i686 * version bump diff --git a/source/kde/kdemultimedia/FrugalBuild b/source/kde/kdemultimedia/FrugalBuild index 970595f..c152510 100644 --- a/source/kde/kdemultimedia/FrugalBuild +++ b/source/kde/kdemultimedia/FrugalBuild @@ -15,7 +15,7 @@ provides=('mplayerthumbs') replaces=('mplayerthumbs' 'codeine') conflicts=('mplayerthumbs') archs=('i686' 'x86_64' 'ppc') -sha1sums=('ad8f6e45d60d2b9cc0fd806e000076fcc0c07a5f') +sha1sums=('4447d26488e3b97c43580d86ad47cee77ff98578') subpkgs=("${subpkgs[@]}" "dragonplayer") subdescs=("${subdescs[@]}" "KDE Video Player") From hermier at frugalware.org Sat Apr 9 09:00:03 2011 From: hermier at frugalware.org (Michel Hermier) Date: Sat, 9 Apr 2011 09:00:03 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-video-nouveau-0.0.16.g8378443-1-i686 Message-ID: <20110409070003.796E91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=3f33bd04175377a73273d9d41c123af9803eb482 commit 3f33bd04175377a73273d9d41c123af9803eb482 Author: Michel Hermier Date: Sat Apr 9 08:59:20 2011 +0200 xf86-video-nouveau-0.0.16.g8378443-1-i686 * Bump to last git revision. diff --git a/source/x11/xf86-video-nouveau/FrugalBuild b/source/x11/xf86-video-nouveau/FrugalBuild index 21f23ea..324f704 100644 --- a/source/x11/xf86-video-nouveau/FrugalBuild +++ b/source/x11/xf86-video-nouveau/FrugalBuild @@ -5,7 +5,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-video-nouveau pkgver=0.0.16 -pkgrel=2 +pkgrel=1 pkgdesc="X.Org driver for Nvidia cards (opensource)" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64' 'ppc') @@ -23,10 +23,10 @@ conflicts=("${provides[@]}") unset source # Git only for now _F_scm_type="git" if Fuse $USE_DEVEL; then - pkgver="$pkgver.g92db2bc" + pkgver="$pkgver.g8378443" _F_scm_url="git://anongit.freedesktop.org/nouveau/xf86-video-nouveau" else - pkgver="$pkgver.g92db2bc" + pkgver="$pkgver.g8378443" _F_scm_url="git://git.frugalware.org/pub/other/sources/xf86-video-nouveau" fi _F_scm_tag="$pkgver" From devil505linux at gmail.com Sat Apr 9 09:51:59 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 09:51:59 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdesdk-4.6.2-1-i686 * version bump Message-ID: <20110409075159.E765C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=218f7fc6aa618901c0f5ae0c4df2b407cda8cc14 commit 218f7fc6aa618901c0f5ae0c4df2b407cda8cc14 Author: Devil505 Date: Sat Apr 9 09:29:59 2011 +0200 kdesdk-4.6.2-1-i686 * version bump diff --git a/source/kde-extra/kdesdk/FrugalBuild b/source/kde-extra/kdesdk/FrugalBuild index 8191a14..7aec256 100644 --- a/source/kde-extra/kdesdk/FrugalBuild +++ b/source/kde-extra/kdesdk/FrugalBuild @@ -146,6 +146,6 @@ _F_kde_subpkgs=("${subpkgs[@]}") rodepends=("${rodepends[@]}" "${subpkgs[@]}") -sha1sums=('b46270c338ebee84ee2fd069d1551d19e1f37d30') +sha1sums=('d246f5571aa772d4a4d0538456b142799c17c146') # optimization OK From devil505linux at gmail.com Sat Apr 9 09:52:00 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 09:52:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeutils-4.6.2-1-i686 * version bump Message-ID: <20110409075200.0BA641358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5508e0411d33ec28dcf1c99e18a2a0263a0bcca6 commit 5508e0411d33ec28dcf1c99e18a2a0263a0bcca6 Author: Devil505 Date: Sat Apr 9 09:48:30 2011 +0200 kdeutils-4.6.2-1-i686 * version bump diff --git a/source/kde/kdeutils/FrugalBuild b/source/kde/kdeutils/FrugalBuild index 311b38d..d594a0b 100644 --- a/source/kde/kdeutils/FrugalBuild +++ b/source/kde/kdeutils/FrugalBuild @@ -12,7 +12,7 @@ depends=("${depends[@]}" "kdelibs>=${_F_kde_ver}" "kdepimlibs>=${_F_kde_ver}" \ 'libqt3support') makedepends=("${makedepends[@]}" "kdepimlibs-compiletime>=${_F_kde_ver}" 'openssl>=1.0.0' \ 'docbook-xsl' "libdbusmenu-qt>=0.8.0" "kdebase-workspace-compiletime>=${_F_kde_ver}") -sha1sums=('f3fa79f15bc23cd38c6d72170ce957ec3d96e0db') +sha1sums=('621d77f8f75bdd867316768f48ea257829f7def1') subpkgs=("${subpkgs[@]}" "ark") subdescs=("${subdescs[@]}" 'Ark is a program for managing various archive formats.') From devil505linux at gmail.com Sat Apr 9 09:52:00 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 09:52:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdebindings-4.6.2-1-i686 * version bump Message-ID: <20110409075200.2E0A5135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=262e009239bb61cab7ff1a2b2c05ba647396b7f0 commit 262e009239bb61cab7ff1a2b2c05ba647396b7f0 Author: Devil505 Date: Sat Apr 9 09:48:59 2011 +0200 kdebindings-4.6.2-1-i686 * version bump diff --git a/source/kde/kdebindings/FrugalBuild b/source/kde/kdebindings/FrugalBuild index 8c5e5d8..448d40b 100644 --- a/source/kde/kdebindings/FrugalBuild +++ b/source/kde/kdebindings/FrugalBuild @@ -15,7 +15,7 @@ makedepends=("${makedepends[@]}" 'sip' "qimageblitz>=0.0.4-2" "kdewebdev>=$_F_k "kdesdk>=$_F_kde_ver" 'boost' "kdegraphics>=$_F_kde_ver" 'gcc-gcj' \ "kdebase-workspace>=${_F_kde_ver}" "kdebase-workspace-compiletime>=${_F_kde_ver}" 'libqtmultimedia' \ 'docbook-xsl' "libqtdeclarative>=_F_kde_qtver") -sha1sums=('1a71e656df19a4b132546242aa344778554693ff') +sha1sums=('eff4b5785b09958fffe4e23583f5af75c796aa9e') makedepends=(${makedepends[@]} "ruby>=1.9.1-3") build() { unset MAKEFLAGS From devil505linux at gmail.com Sat Apr 9 09:52:00 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 09:52:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeadmin-4.6.2-1-i686 * version bump Message-ID: <20110409075200.34849135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=18d52849b807da0dc1122336a4a76e91f0da1474 commit 18d52849b807da0dc1122336a4a76e91f0da1474 Author: Devil505 Date: Sat Apr 9 09:49:16 2011 +0200 kdeadmin-4.6.2-1-i686 * version bump diff --git a/source/kde/kdeadmin/FrugalBuild b/source/kde/kdeadmin/FrugalBuild index 96422d8..d51c5fb 100644 --- a/source/kde/kdeadmin/FrugalBuild +++ b/source/kde/kdeadmin/FrugalBuild @@ -22,6 +22,6 @@ subdepends=("${subdepends[@]}" '') subgroups=("${subgroups[@]}" 'docs-extra kde-docs') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') -sha1sums=('b8eec397c97c19ea12f969134f8cf56886c03a26') +sha1sums=('33d756b1cef42d272b617bfba400e9116b34f311') # optimization OK From devil505linux at gmail.com Sat Apr 9 09:52:00 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 09:52:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdegraphics-4.6.2-1-i686 * fixing deps Message-ID: <20110409075200.405D21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9519d6458d323de14620a8b87adc79668a5475a9 commit 9519d6458d323de14620a8b87adc79668a5475a9 Author: Devil505 Date: Sat Apr 9 09:51:38 2011 +0200 kdegraphics-4.6.2-1-i686 * fixing deps diff --git a/source/kde/kdegraphics/FrugalBuild b/source/kde/kdegraphics/FrugalBuild index ead1884..46c1019 100644 --- a/source/kde/kdegraphics/FrugalBuild +++ b/source/kde/kdegraphics/FrugalBuild @@ -7,7 +7,7 @@ pkgdesc="KDE Graphics Programs" groups=('kde') archs=('i686' 'x86_64' 'ppc') Finclude kde -makedepends=("${makedepends[@]}" "ksgmltools2>=${_F_kde_ver}" "libqtdesigner=>$_F_kde_qtver" \ +makedepends=("${makedepends[@]}" "ksgmltools2>=${_F_kde_ver}" "libqtdesigner>=$_F_kde_qtver" \ "docbook-xsl" "libdbusmenu-qt>=0.8.0" "attica>=0.2.0") sha1sums=('9c9f31c88c1c9e6dcaa7fb177847402d874ffc94') From devil505linux at gmail.com Sat Apr 9 10:40:06 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 10:40:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kde-l10n-4.6.2-1-i686 * version bump Message-ID: <20110409084006.8FC741358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a495953811ab47e8828b3dc8c7d7630ce8e7877c commit a495953811ab47e8828b3dc8c7d7630ce8e7877c Author: Devil505 Date: Sat Apr 9 10:39:41 2011 +0200 kde-l10n-4.6.2-1-i686 * version bump diff --git a/source/locale-extra/kde-l10n/FrugalBuild b/source/locale-extra/kde-l10n/FrugalBuild index c7d4f2b..61d40d2 100644 --- a/source/locale-extra/kde-l10n/FrugalBuild +++ b/source/locale-extra/kde-l10n/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=kde-l10n -pkgver=4.6.1 +pkgver=4.6.2 pkgrel=1 pkgdesc="Dummy package." url="http://www.kde.org" @@ -68,57 +68,57 @@ build() -sha1sums=('dc902dc6ee3b0919ecdddb285399cad4aad27e20' \ - '85ca18581fa94d52d273aee882bc9a56a3598f1b' \ - '00e3602c97837c831599e663322aa286fac51c5b' \ - 'd1b35d8074f4daf3629f7b390cb06e3dc32a76bb' \ - 'e53ffb569fb7929233d49dbec3b38d49141af92f' \ - '07fd5113014e410b50850df4c7c6d6038570d421' \ - '8a3f1686e046a41b53b03a9625073c1a7a4bf09e' \ - '70c4a15e545c02ba11db332bca3ba69717c32d02' \ - 'a42ba859ac980b5307e50d9e8b9628ffde3e3a11' \ - '1950f34a4a71fa121e7088af22512e32eab745cf' \ - '24ec9bb03cc773740d16265da39f9cd0a4e1fe54' \ - 'fbeeec1a7786b3654a5008c48197028b56d1fbb3' \ - 'fd5cbe9acb8bed8c03469b44dbd20f47848b98c7' \ - 'ea084d25fd877399d279f671b2717c505e457134' \ - '9fd40e870101c4c558492465b563e3852ef947ae' \ - '17cf4d245cbf5581838f00278f3542f2a034d466' \ - '2e81f9c5d3990c0fa64b1be21f7aeb4b83a428e6' \ - 'dbc94303b20e721ba749e8f96b48db90caf18153' \ - '658cb7c7efe2d026f74eb860c48b1cd0a03c250b' \ - '23e5fb35817aae8a60c6c5544545b32b26ab0806' \ - '39f568ca7e6601a680ad6d8689aacbd691d2c240' \ - 'c916233b62bdf579e7331b76a9ee80f437dd1974' \ - '63dd065d5c75aa1b63b0145819b859377c5de5c5' \ - 'df0bd05803712a28ca7e07b1fa50ca444ef18445' \ - '76317151bb7f83c466fa79f860b4e72a85353b06' \ - 'c83b76d672b750adf18b89cc9a49765a4a909569' \ - '25db84403cdc84bd4124a593655eff9bad4f40fa' \ - 'b85b3a8fca7b89cc4b712d5c6454f9f5f7792fcf' \ - 'b7ec7f220b7faa6f398988c4306c6013352e2e73' \ - '8a75397011d1ef3e4e51785a3d64f54827e07570' \ - 'b750af0f7f10ac67a2a94a10a15aef1919c5571f' \ - '2e48e837e5f1c1c7dedbbb4430ef31db0fd7c29a' \ - 'ae472fce60ef67a77b77686a2c5b1e8c819a0edf' \ - '42e58cd2c111add887329be8477f5dd3673dbef2' \ - 'c096dafde826a1d65de26cb32fa26347cba3d605' \ - 'fb5b8bb0d1d47af5ec9fa84d8d1dd0609b391796' \ - '1f515bc18da09c9bd05fdbf3764e9034b540a79f' \ - 'c0a60a56aa61b937c968c98b647c071ac811cfb6' \ - '54cf9a73935a96dba0adafd541a891bca59cbe4c' \ - '6afa384a6e0fc668f50bdea43dba8f553b2554c5' \ - 'b839e780b72395d4a5728443a7ece72b994ba163' \ - '1c8b1dc40c599a5a77e2ed2e412b8de0f519896e' \ - 'f8c18e7e628337a8882f0e210d49460aa44c0572' \ - '716ed34fd4aac0c53878821e391feae11a7376cf' \ - 'bf1409adcba4ebdde869a525b50f8efec2852f69' \ - '1167f83cc357467bca964b949fd57d353ca74694' \ - '3c6b33bc873d39d9d58b5771e132385f3eddc9e2' \ - '5ffc75b3a1e70d3555d8da3adf8099c0984bd043' \ - '87ce85073ab40bd78ee893195e36a88f105c2f7a' \ - '48c2f62bb0fb29071c9d4a095d110a44189c6ea8' \ - '53294565829125e75c111087ccfbc4cf4adc33cc' \ - 'f17622fb8b91ef18c0d7f0e5d005ad5b8b07550e' \ - '0b5c2f28291aa06208c8e8e9925b826df601d4f3') +sha1sums=('150bdd9faa20b79fbd1140552a3a5d857fe6b46a' \ + 'd1751a3a6b2ad92282554db2623b3d33bfc4a007' \ + 'e8cffe949f965873c1ef6d87eed3aa718aa5639d' \ + 'd3174092e1f3257f058dfaa1d790fb0a4844a644' \ + '2b3216f206db681dc4d3d7ea9055202f4b45b03e' \ + '1d7a49db97f170b2ad18d95c9967095efab563e2' \ + 'd2cba2f6f424aceebfb12d44e0b0c82ab4173252' \ + 'e48be5ca269843ace229847b8f8b19726d67c5af' \ + '18d9a7e5b5e90d50b8353cf711f6c92dc805c700' \ + '1beaffeec608392d48674a80d3bccd40ea53897c' \ + '0ae89aaa42a11b494926724fb4b21791a5e69527' \ + 'b1eeab261c76aab4efd780a8c2278cbca0c5503d' \ + '41127ac24ff70bc30ce1d76ba3000be67affc2c2' \ + 'cf01dc4c47cd2939d9ca6cf5cca9389c0953b3e2' \ + 'dbe3ac2a99c951711f239d270f322e94d91c7f1b' \ + 'fd3ea6a6c71f1c44abdd71ca9bab0bb66df48e9c' \ + '3199303576415332a7d28748f951954cf38d1bdb' \ + '37e8d387a910bc392b7ad73e3aa843d5e48c81ea' \ + '162f40695b1cc8b7795dc1978dc23b1ccc8094af' \ + 'a07e8c7326d8d427b43e50e5a68987649b8d882e' \ + '5539ec0bc5571308d9567d713dbd6f6708f96dea' \ + 'd0a7c355ecdb3ca985fa96ac3697c1ec5bcb0372' \ + '93c3af7aa5ac47c9967b566d11f866224d90c5de' \ + '5c8d2468639bc146557e5d9b509028756537a112' \ + '8ae0add6e904cd4432e4806218a760877359f1cc' \ + '0d9517ee8eb130f0c47a26728dc73da4ab35d6a5' \ + 'b7ba76576e8342b49d132855570753101cc4327b' \ + '3ab10a605df76f4e34bdbe8c47f8869573fa5a5a' \ + '684d38eb04ad376647a6e70cac40b5eb7c8701b5' \ + 'a820c43bf72fb1f957fa297925125e9c4251c78b' \ + 'a125aa3f00c14184762a6e1c445b6e9911c57082' \ + 'cce1e4adf8706ae78a3011aaffad75f0aad84f10' \ + 'aad32f4e280e7c79db1e714a80b1ba34d58cb481' \ + 'dc3d43d9c57a81cb44c4212a56a9f00f0cef6b65' \ + '64483b5a00c11f5cd2c53e4ebe63bf357bfa768b' \ + '5a2725ad591f92077afe5974f11305357fb8f33b' \ + 'aafe0ca9a7b472e00c74d04192b37df4fd662c69' \ + 'b5f3ac67c03819c1e77b586a088a1ca786a68aab' \ + 'f2514ab34bf926950810762ef9d2382a83e4f588' \ + '4575af70c37ca88bc73db0bdd7833ab1a8e8e15a' \ + 'cb98e921834217e565eb5e48a3087ced8da7e85e' \ + '5aec2c7aeba7d4e7ebff61743ea5dd5241c7edb7' \ + 'f52023f0183f45b7808b225b0e262d9d136f2de0' \ + 'ab69b258d5534d3c9818eb68e6090f4997743a57' \ + 'c623f474d5541780c5a987f4951cffbfaa1e687a' \ + '90d10f3bd0bf3cda5bfb5acc6d5d87e02f4110b0' \ + '0d63e27aa27cadc146e3b02956478a1f3aadd0c1' \ + '379436f15b8b5e1e813e246347a240b488ae255c' \ + '12224e60b6fe733d4d70e43ad2654dc73ae3c05b' \ + 'caa5d491b0c43c7ca1100b613048eadc0f2fd107' \ + '7bd8311dc9883adb6f76e279ef95c0cdb93182db' \ + 'e6d917974fc9f38233d73600f1df20ca1f5fbc10' \ + '70f8d0ddab84075eb88d6173dc21f8b4e59417e8') From bouleetbil at frogdev.info Sat Apr 9 10:43:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 10:43:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: swfdec-mozilla-0.8.2-4-x86_64 *fix dep Message-ID: <20110409084307.D71D31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4d29d48fd9c04c84caa105c7a87c74c9b70b017b commit 4d29d48fd9c04c84caa105c7a87c74c9b70b017b Author: bouleetbil Date: Sat Apr 9 10:42:47 2011 +0200 swfdec-mozilla-0.8.2-4-x86_64 *fix dep diff --git a/source/xlib-extra/swfdec-mozilla/FrugalBuild b/source/xlib-extra/swfdec-mozilla/FrugalBuild index f0e6896..a3dbcf8 100644 --- a/source/xlib-extra/swfdec-mozilla/FrugalBuild +++ b/source/xlib-extra/swfdec-mozilla/FrugalBuild @@ -3,11 +3,11 @@ pkgname=swfdec-mozilla pkgver=0.8.2 -pkgrel=3 +pkgrel=4 pkgdesc="Mozilla plugin that uses the Swfdec library for playing SWF files in a browser capable of loading NS-Plugins" url="http://swfdec.freedesktop.org/" license="LGPL" -depends=('swfdec=0.8.4-9' 'firefox>=3.6.3-2') +depends=('swfdec=0.8.4' 'firefox>=4.0') options=('scriptlet') groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') From devil505linux at gmail.com Sat Apr 9 11:00:49 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 11:00:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kdeplasma-addons-4.6.2-1-i686 * version bump Message-ID: <20110409090049.B38EB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b8e9f135748a2b6b944f9962b39892cc13aa439a commit b8e9f135748a2b6b944f9962b39892cc13aa439a Author: Devil505 Date: Sat Apr 9 10:59:00 2011 +0200 kdeplasma-addons-4.6.2-1-i686 * version bump diff --git a/source/kde/kdeplasma-addons/FrugalBuild b/source/kde/kdeplasma-addons/FrugalBuild index b7d0506..fb0b99e 100644 --- a/source/kde/kdeplasma-addons/FrugalBuild +++ b/source/kde/kdeplasma-addons/FrugalBuild @@ -11,7 +11,7 @@ Finclude kde depends=("${depends[@]}" "kdebase-workspace>=${_F_kde_ver}" "kdegraphics>=${_F_kde_ver}") makedepends=("${makedepends[@]}" 'eigen' "kdebase-workspace-compiletime>=${_F_kde_ver}" "marble>=${_F_kde_ver}" \ "scim" "docbook-xsl" "boost" "libdbusmenu-qt>=0.8.0" "libqtdeclarative>=_F_kde_qtver") -sha1sums=('8b959c1e2aa5f00b2f0897c9415ba018b018a3d7') +sha1sums=('f888908e937453c9799c6ad71c514a5227e13700') # optimization OK From devil505linux at gmail.com Sat Apr 9 11:12:17 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 11:12:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bleachbit-0.8.7-2-i686 * added python-sqlite3 to depends() (thx Melko) Message-ID: <20110409091217.ADC3B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10a57d6a43d52be8c4fbf611ad48767cf7e142c6 commit 10a57d6a43d52be8c4fbf611ad48767cf7e142c6 Author: Devil505 Date: Sat Apr 9 11:11:10 2011 +0200 bleachbit-0.8.7-2-i686 * added python-sqlite3 to depends() (thx Melko) diff --git a/source/xapps-extra/bleachbit/FrugalBuild b/source/xapps-extra/bleachbit/FrugalBuild index 476c5e5..345281e 100644 --- a/source/xapps-extra/bleachbit/FrugalBuild +++ b/source/xapps-extra/bleachbit/FrugalBuild @@ -3,9 +3,9 @@ pkgname=bleachbit pkgver=0.8.7 -pkgrel=1 +pkgrel=2 pkgdesc="BleachBit deletes unnecessary files to free valuable disk space and maintain privacy." -depends=('pygtk>=2.14.1-2') +depends=('pygtk>=2.14.1-2' 'python-sqlite3') options=('scriptlet') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge From devil505linux at gmail.com Sat Apr 9 12:02:34 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 12:02:34 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * added news for GNOME 3.0 availability * added french translation Message-ID: <20110409100234.8EAF21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=3778697ac75967bbc8cfc9efcbbb416a51aafc4f commit 3778697ac75967bbc8cfc9efcbbb416a51aafc4f Author: Devil505 Date: Sat Apr 9 12:01:57 2011 +0200 * added news for GNOME 3.0 availability * added french translation diff --git a/frugalware/images/gnome3.png b/frugalware/images/gnome3.png new file mode 100644 index 0000000..3cdde65 Binary files /dev/null and b/frugalware/images/gnome3.png differ diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index b5d948d..1326771 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -21,6 +21,19 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + + 203 + GNOME 3 now available! + Sat, 9 April 2011 11:54:15 +0100 + Devil505 + 0 + GNOME 3 now available! + The Frugalware Developer Team is pleased to announce the availability of the new major version of GNOME Desktop (3.0) into frugalware current repository.
> + ]]> +
+ /images/icons/info.png +
202 Frugalware Newsletter Issue 77 diff --git a/frugalware/xml/news_fr.xml b/frugalware/xml/news_fr.xml index 175461c..7ad8f60 100644 --- a/frugalware/xml/news_fr.xml +++ b/frugalware/xml/news_fr.xml @@ -21,6 +21,19 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + + 203 + GNOME 3 est maintenant disponible! + Sat, 9 April 2011 11:54:15 +0100 + Devil505 + 0 + GNOME 3 now available! + L'??quipe de d??veloppement de Frugalware a le plaisir de vous annon??er la disponibilit?? de la nouvelle version majeure du bureau GNOME (3.0) sur le d??p??t frugalware current.
> + ]]> +
+ /images/icons/info.png +
202 Frugalware Newsletter Num??ro 77 From devil505linux at gmail.com Sat Apr 9 12:03:15 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 12:03:15 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * fixing typo Message-ID: <20110409100315.E7F801358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e316b4fa980d7b524c5cc95efd161318d330f90e commit e316b4fa980d7b524c5cc95efd161318d330f90e Author: Devil505 Date: Sat Apr 9 12:03:07 2011 +0200 * fixing typo diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 1326771..7d3411d 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -29,7 +29,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> 0 GNOME 3 now available! - The Frugalware Developer Team is pleased to announce the availability of the new major version of GNOME Desktop (3.0) into frugalware current repository.
> + The Frugalware Developer Team is pleased to announce the availability of the new major version of GNOME Desktop (3.0) into frugalware current repository.
]]>
/images/icons/info.png diff --git a/frugalware/xml/news_fr.xml b/frugalware/xml/news_fr.xml index 7ad8f60..ce31a4a 100644 --- a/frugalware/xml/news_fr.xml +++ b/frugalware/xml/news_fr.xml @@ -29,7 +29,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> 0 GNOME 3 now available! - L'??quipe de d??veloppement de Frugalware a le plaisir de vous annon??er la disponibilit?? de la nouvelle version majeure du bureau GNOME (3.0) sur le d??p??t frugalware current.
> + L'??quipe de d??veloppement de Frugalware a le plaisir de vous annon??er la disponibilit?? de la nouvelle version majeure du bureau GNOME (3.0) sur le d??p??t frugalware current.
]]>
/images/icons/info.png From devil505linux at gmail.com Sat Apr 9 12:03:57 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 12:03:57 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * removed useless link Message-ID: <20110409100357.3E7F81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=28f5ec5efcc9f4e8fa7c796c76fff6db7612fe0b commit 28f5ec5efcc9f4e8fa7c796c76fff6db7612fe0b Author: Devil505 Date: Sat Apr 9 12:03:45 2011 +0200 * removed useless link diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 7d3411d..1437676 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -29,7 +29,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> 0 GNOME 3 now available! - The Frugalware Developer Team is pleased to announce the availability of the new major version of GNOME Desktop (3.0) into frugalware current repository.
+ The Frugalware Developer Team is pleased to announce the availability of the new major version of GNOME Desktop (3.0) into frugalware current repository.
]]>
/images/icons/info.png From lorddarthfener at gmail.com Sat Apr 9 13:08:07 2011 From: lorddarthfener at gmail.com (Melko) Date: Sat, 9 Apr 2011 13:08:07 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: Italian translation of News 203 Message-ID: <20110409110807.A24241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=aa6294bb3336ed8d2749e106951c5ef12bff15b7 commit aa6294bb3336ed8d2749e106951c5ef12bff15b7 Author: Melko Date: Sat Apr 9 13:07:51 2011 +0200 Italian translation of News 203 diff --git a/frugalware/xml/news_it.xml b/frugalware/xml/news_it.xml index 47c974b..a86b7cd 100644 --- a/frugalware/xml/news_it.xml +++ b/frugalware/xml/news_it.xml @@ -22,6 +22,19 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + 203 + GNOME 3 ?? ora disponibile! + Sat, 9 April 2011 11:54:15 +0100 + Devil505 + 0 + GNOME 3 now available! + Il team di Frugalware ?? lieto di annunciare la disponibilit?? della nuova versione di GNOME Desktop (3.0) nei repository di frugalware current.
+ ]]> +
+ /images/icons/info.png +
+ 202 Frugalware Newsletter 77 Thu, 24 Mar 2011 22:35:54 +1000 From lorddarthfener at gmail.com Sat Apr 9 13:10:59 2011 From: lorddarthfener at gmail.com (Melko) Date: Sat, 9 Apr 2011 13:10:59 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * add space Message-ID: <20110409111059.88DB01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=9cbcca4d36bd9d0d8ee9de070258df8b6cb9f7a0 commit 9cbcca4d36bd9d0d8ee9de070258df8b6cb9f7a0 Author: Melko Date: Sat Apr 9 13:10:21 2011 +0200 * add space diff --git a/frugalware/xml/news_it.xml b/frugalware/xml/news_it.xml index a86b7cd..515478e 100644 --- a/frugalware/xml/news_it.xml +++ b/frugalware/xml/news_it.xml @@ -23,7 +23,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> 203 - GNOME 3 ?? ora disponibile! + GNOME 3 ?? ora disponibile! Sat, 9 April 2011 11:54:15 +0100 Devil505 0 From vmiklos at frugalware.org Sat Apr 9 15:39:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 15:39:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: linkchecker-6.6-1-i686 Message-ID: <20110409133915.A58901358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=81384545473844799c2285939e5c3b14706d87e8 commit 81384545473844799c2285939e5c3b14706d87e8 Author: Miklos Vajna Date: Sat Apr 9 15:15:35 2011 +0200 linkchecker-6.6-1-i686 - version bump diff --git a/source/network-extra/linkchecker/FrugalBuild b/source/network-extra/linkchecker/FrugalBuild index 5ff3e4c..45e671e 100644 --- a/source/network-extra/linkchecker/FrugalBuild +++ b/source/network-extra/linkchecker/FrugalBuild @@ -2,21 +2,24 @@ # Maintainer: Miklos Vajna pkgname=linkchecker -pkgver=5.0.2 -pkgrel=2 +pkgver=6.6 +pkgrel=1 pkgdesc="Check websites and HTML documents for broken links." depends=('python>=2.7') +makedepends=('qt4-assistant' 'libqtsql' 'qt4-plugin-sqlite3') groups=('network-extra') archs=('i686' 'x86_64') _F_sourceforge_name="LinkChecker" +_F_sourceforge_ext=".tar.bz2" Finclude sourceforge -up2date="lynx -dump $url|grep linkchecker-stable|sed 's/.*linkchecker-stable - //'" -source=(${source/linkchecker-/$_F_archive_name-}) -sha1sums=('1cf26ed30b3d3bddd0e31dd45952202d9527a6af') +sha1sums=('c839bf3e232b92b66a019ba39a28d127e3cd9660') build() { Fcd + cd doc/html + make || return 1 + cd - rm -f Makefile Fbuild } From vmiklos at frugalware.org Sat Apr 9 15:39:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 15:39:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bash-completion-1.3-1-i686 Message-ID: <20110409133915.AFD64BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8c33d691d4b3ff68c37860865ed33a8184ca57d4 commit 8c33d691d4b3ff68c37860865ed33a8184ca57d4 Author: Miklos Vajna Date: Sat Apr 9 15:19:53 2011 +0200 bash-completion-1.3-1-i686 - version bump - amr.diff is now in upstream - turned fpm.diff to an Fsed diff --git a/source/apps/bash-completion/FrugalBuild b/source/apps/bash-completion/FrugalBuild index a6af397..0fbeecf 100644 --- a/source/apps/bash-completion/FrugalBuild +++ b/source/apps/bash-completion/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=bash-completion -pkgver=1.2 -pkgrel=2 +pkgver=1.3 +pkgrel=1 pkgdesc="Programmable completion for bash" url='http://bash-completion.alioth.debian.org/' depends=('bash') @@ -11,15 +11,14 @@ groups=('apps') archs=('i686' 'x86_64' 'ppc' 'arm') up2date="lynx -dump ${url} |Flasttar" source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2 \ - bash_completion.sh frugalware fpm.diff mplayer-amr.diff) -sha1sums=('47e6fb919ae227e74172870379b0fe999a2ae70d' \ + bash_completion.sh frugalware) +sha1sums=('6a46b93f44c56cc336632ab28d90c0595fbcc98f' \ '48bbdacd715f5aac9ca8c8906326f5f645d8035e' \ - '00f63fffacf0cf69b66febbc615f0f673b9960bd' \ - '2fcbf666dab3329f6191fd8cc03f5203129a4c9d' \ - '77185c97d703b4bfa39715756db9a1d745211e36') + '00f63fffacf0cf69b66febbc615f0f673b9960bd') build() { + Fsed 'xz\|lzma' 'xz\|lzma\|fpm\|fdb' completions/xz Fbuild Fexe /etc/profile.d/bash_completion.sh diff --git a/source/apps/bash-completion/fpm.diff b/source/apps/bash-completion/fpm.diff deleted file mode 100644 index bfbe48c..0000000 --- a/source/apps/bash-completion/fpm.diff +++ /dev/null @@ -1,12 +0,0 @@ -diff -aur bash-completion-1.1/bash_completion fw_bash-completion-1.1//bash_completion ---- bash-completion-1.1/bash_completion 2009-10-10 16:26:09.000000000 +0200 -+++ fw_bash-completion-1.1//bash_completion 2010-05-22 19:35:54.000000000 +0200 -@@ -105,7 +105,7 @@ - complete -f -X '!*.Z' uncompress - # lzcmp, lzdiff intentionally not here, see Debian: #455510 - complete -f -X '!*.lzma' lzcat lzegrep lzfgrep lzgrep lzless lzmore unlzma --complete -f -X '!*.@(xz|lzma)' unxz xzcat -+complete -f -X '!*.@(xz|lzma|fpm)' unxz xzcat - complete -f -X '!*.@(gif|jp?(e)g|miff|tif?(f)|pn[gm]|p[bgp]m|bmp|xpm|ico|xwd|tga|pcx|GIF|JP?(E)G|MIFF|TIF?(F)|PN[GM]|P[BGP]M|BMP|XPM|ICO|XWD|TGA|PCX)' ee - complete -f -X '!*.@(gif|jp?(e)g|tif?(f)|png|p[bgp]m|bmp|x[bp]m|rle|rgb|pcx|fits|pm|GIF|JPG|JP?(E)G|TIF?(F)|PNG|P[BGP]M|BMP|X[BP]M|RLE|RGB|PCX|FITS|PM)' xv qiv - complete -f -X '!*.@(@(?(e)ps|?(E)PS|pdf|PDF)?(.gz|.GZ|.bz2|.BZ2|.Z))' gv ggv kghostview diff --git a/source/apps/bash-completion/mplayer-amr.diff b/source/apps/bash-completion/mplayer-amr.diff deleted file mode 100644 index db20abe..0000000 --- a/source/apps/bash-completion/mplayer-amr.diff +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/contrib/mplayer b/contrib/mplayer -index 63af312..812da26 100644 ---- a/contrib/mplayer -+++ b/contrib/mplayer -@@ -236,7 +236,7 @@ _mplayer() - -e "/^-\(Total\|.*\*\)\{0,1\}$/!p" )' -- "$cur" ) ) - ;; - *) -- _filedir '@(mp?(e)g|MP?(E)G|wm[av]|WM[AV]|avi|AVI|asf|ASF|vob|VOB|bin|BIN|dat|DAT|vcd|VCD|ps|PS|pes|PES|fl[iv]|FL[IV]|fxm|FXM|viv|VIV|rm?(j)|RM?(J)|ra?(m)|RA?(M)|yuv|YUV|mov|MOV|qt|QT|mp[234]|MP[234]|m4[av]|M4[AV]|og[gmavx]|OG[GMAVX]|w?(a)v|W?(A)V|dump|DUMP|mk[av]|MK[AV]|m4a|M4A|aac|AAC|m[24]v|M[24]V|dv|DV|rmvb|RMVB|mid|MID|t[ps]|T[PS]|3g[p2]|mpc|MPC|flac|FLAC|vro|VRO|divx|DIVX|aif?(f)|AIF?(F)|m2ts|M2TS|vdr|VDR|xvid|XVID|ape|APE)' -+ _filedir '@(mp?(e)g|MP?(E)G|wm[av]|WM[AV]|avi|AVI|asf|ASF|vob|VOB|bin|BIN|dat|DAT|vcd|VCD|ps|PS|pes|PES|fl[iv]|FL[IV]|fxm|FXM|viv|VIV|rm?(j)|RM?(J)|ra?(m)|RA?(M)|yuv|YUV|mov|MOV|qt|QT|mp[234]|MP[234]|m4[av]|M4[AV]|og[gmavx]|OG[GMAVX]|w?(a)v|W?(A)V|dump|DUMP|mk[av]|MK[AV]|m4a|M4A|aac|AAC|m[24]v|M[24]V|dv|DV|rmvb|RMVB|mid|MID|t[ps]|T[PS]|3g[p2]|mpc|MPC|flac|FLAC|vro|VRO|divx|DIVX|aif?(f)|AIF?(F)|m2ts|M2TS|vdr|VDR|xvid|XVID|ape|APE|amr)' - ;; - esac - From vmiklos at frugalware.org Sat Apr 9 15:39:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 15:39:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libjpeg-8c-1-i686 Message-ID: <20110409133915.B6DF3BAC006@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d5434e18b2ab4f6c53c641a4ac659155b2d1a163 commit d5434e18b2ab4f6c53c641a4ac659155b2d1a163 Author: Miklos Vajna Date: Sat Apr 9 15:20:49 2011 +0200 libjpeg-8c-1-i686 - version bump diff --git a/source/lib/libjpeg/FrugalBuild b/source/lib/libjpeg/FrugalBuild index a4c47ae..f54f555 100644 --- a/source/lib/libjpeg/FrugalBuild +++ b/source/lib/libjpeg/FrugalBuild @@ -5,7 +5,7 @@ pkgname=libjpeg _F_archive_name=jpegsrc Fpkgversep='.v' -pkgver=8b +pkgver=8c pkgrel=1 pkgdesc="Library of JPEG support functions" url="http://www.ijg.org/" @@ -14,7 +14,7 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc' 'arm') up2date="Flasttar $url" source=($url/files/$_F_archive_name$Fpkgversep$pkgver.tar.gz) -sha1sums=('15dc1939ea1a5b9d09baea11cceb13ca59e4f9df') +sha1sums=('f0a3b88ac4db19667798bee971537eeed552bce9') build() { From vmiklos at frugalware.org Sat Apr 9 15:39:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 15:39:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: b2evolution-4.0.5-1-i686 Message-ID: <20110409133915.C015CBAC007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9edbd39d5931d308f1a07b819ca1d5143bcb94e8 commit 9edbd39d5931d308f1a07b819ca1d5143bcb94e8 Author: Miklos Vajna Date: Sat Apr 9 15:22:53 2011 +0200 b2evolution-4.0.5-1-i686 - version bump diff --git a/source/network-extra/b2evolution/FrugalBuild b/source/network-extra/b2evolution/FrugalBuild index a7d1dd6..7ad1d0e 100644 --- a/source/network-extra/b2evolution/FrugalBuild +++ b/source/network-extra/b2evolution/FrugalBuild @@ -2,22 +2,22 @@ # Maintainer: Miklos Vajna pkgname=b2evolution -pkgver=4.0.3 +pkgver=4.0.5 pkgrel=1 pkgdesc="A powerful blog tool you can install on your own website." _F_sourceforge_dirname="evocms" # see http://b2evolution.net/downloads/index.html -_F_sourceforge_ext="-stable-2010-12-24.zip" +_F_sourceforge_ext="-stable-2011-03-23.zip" Finclude sourceforge url="http://b2evolution.net/" rodepends=('apache' 'php' 'mysql' 'webappconfig') depends=() groups=('network-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://b2evolution.net/downloads/index.html|grep Stable|sed 's/ \+\([0-9.]\+\)-stable .*/\1/;q'" +#up2date="lynx -dump http://b2evolution.net/downloads/index.html|grep Stable|sed 's/.* \([0-9.]\+\)-stable .*/\1/;q'" backup=(var/www/b2evolution/blogs/conf/_basic_config.php) source=($source b2evosetup README.Frugalware) -sha1sums=('9ecdc9df2f07833f8e989a9d8f31997c4747852f' \ +sha1sums=('963e38cbfac05cfb607d867ee1a69f474ae8a8ca' \ '8341c7f3831489959840a5d0f5eb55c6afb6fc58' \ '3b1583125ff4604da9519c05675e2e7a310681cb') options=('stick') From vmiklos at frugalware.org Sat Apr 9 15:39:15 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 15:39:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: codeville-0.8.0-4-i686 Message-ID: <20110409133915.D0B35BAC008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9f73f3815fbe19426a091b28af461ec9eb531b28 commit 9f73f3815fbe19426a091b28af461ec9eb531b28 Author: Miklos Vajna Date: Sat Apr 9 15:25:41 2011 +0200 codeville-0.8.0-4-i686 - bin, "The project has now been abandoned.", according to wikipedia - project website dead diff --git a/source/devel-extra/codeville/FrugalBuild b/source/devel-extra/codeville/FrugalBuild deleted file mode 100644 index 32494ad..0000000 --- a/source/devel-extra/codeville/FrugalBuild +++ /dev/null @@ -1,20 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: Miklos Vajna - -pkgname=codeville -pkgver=0.8.0 -pkgrel=4 -pkgdesc="A distributed version control system." -url="http://codeville.org/" -depends=('python') -groups=('devel-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump $url/download.php|grep gz$|sed 's/.*-\(.*\)\.t.*/\1/'" -source=($url/download/Codeville-$pkgver.tar.gz) -sha1sums=('5f3bbbf80dd07d34ad0f95c0f7f1aea44d21e257') - -build() -{ - Fcd Codeville-$pkgver - Fbuild -} diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 7732ab1..d30b535 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -8,7 +8,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} USE_HTMLMAN=${USE_HTMLMAN:-"y"} pkgname=git -pkgver=1.7.4.3 +pkgver=1.7.4.4 Fuse $USE_DEVEL && pkgver=1.6.1.87.g1562445 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." From vmiklos at frugalware.org Sat Apr 9 16:35:16 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 16:35:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: texlive-20100722-4-i686 Message-ID: <20110409143516.CCD741358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=08627f49734f6b58139a4660ca63ee09ad244b10 commit 08627f49734f6b58139a4660ca63ee09ad244b10 Author: Miklos Vajna Date: Sat Apr 9 16:22:09 2011 +0200 texlive-20100722-4-i686 - rebuild with poppler>=0.16.3 diff --git a/source/xapps-extra/texlive/FrugalBuild b/source/xapps-extra/texlive/FrugalBuild index 563d629..1b72591 100644 --- a/source/xapps-extra/texlive/FrugalBuild +++ b/source/xapps-extra/texlive/FrugalBuild @@ -3,10 +3,10 @@ pkgname=texlive pkgver=20100722 -pkgrel=3 +pkgrel=4 pkgdesc="A complete TeX distribution" archs=('i686' 'x86_64' 'ppc') -depends=('t1lib' 'gd' 'ncurses' 'poppler>=0.16.0' 'icu4c>=4.2') +depends=('t1lib' 'gd' 'ncurses' 'poppler>=0.16.3' 'icu4c>=4.2') rodepends=('ghostscript') makedepends=('clisp' 'ffcall') url='http://tug.org/texlive/' From devil505linux at gmail.com Sat Apr 9 17:37:32 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 9 Apr 2011 17:37:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gpodder-2.14-1-i686 * version bump Message-ID: <20110409153732.DE3BF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6d68ef6f12e03dcc63b3945b93f7dc2464e8f68b commit 6d68ef6f12e03dcc63b3945b93f7dc2464e8f68b Author: Devil505 Date: Sat Apr 9 17:36:54 2011 +0200 gpodder-2.14-1-i686 * version bump diff --git a/source/gnome-extra/gpodder/FrugalBuild b/source/gnome-extra/gpodder/FrugalBuild index 95822bc..8247322 100644 --- a/source/gnome-extra/gpodder/FrugalBuild +++ b/source/gnome-extra/gpodder/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gpodder -pkgver=2.13 +pkgver=2.14 pkgrel=1 pkgdesc="A podcast receiver/catcher." depends=('pygtk' 'pyxml' 'wget' 'python>=2.7' 'libglade' 'imagemagick>=6.4.8_9' 'feedparser' 'pysqlite2' 'python-mygpoclient>=1.5' 'python-sqlite3') @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude berlios gnome-scriptlet -sha1sums=('d87de1ae8cfc6d757b5b957ecda7f5687f69f1b7') +sha1sums=('878f4fb451f76dba31229fb9a23fe6f8e41f333f') From achevaux at gmail.com Sat Apr 9 18:57:46 2011 From: achevaux at gmail.com (centuri0) Date: Sat, 9 Apr 2011 18:57:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qtcurve-qt4-1.8.7-1-i686 Message-ID: <20110409165746.836571358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fde3a0e9172aed25104c0981b987f365fe64ffcf commit fde3a0e9172aed25104c0981b987f365fe64ffcf Author: centuri0 Date: Sat Apr 9 18:54:59 2011 +0200 qtcurve-qt4-1.8.7-1-i686 * version bump diff --git a/source/xlib-extra/qtcurve-qt4/FrugalBuild b/source/xlib-extra/qtcurve-qt4/FrugalBuild index a429aa3..1f6fbee 100644 --- a/source/xlib-extra/qtcurve-qt4/FrugalBuild +++ b/source/xlib-extra/qtcurve-qt4/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling time: 0.21 SBU -# Maintainer: crazy +# Compiling time: 0.16 SBU +# Maintainer: centuri0 pkgname=qtcurve-qt4 -pkgver=1.8.5 +pkgver=1.8.7 pkgrel=1 pkgdesc="QtCurve QT4 Theme" depends=('libqtdbus' 'libqtgui' 'libuuid') @@ -14,6 +14,6 @@ source=(http://craigd.wikispaces.com/file/view/QtCurve-KDE4-$pkgver.tar.bz2) up2date="lynx -dump '$url'|grep 'Source (KDE 4.*)'|sed 's/.* - \(.*\).*)/\1/'" _F_cmake_confopts="-DQTC_QT_ONLY=true" Finclude cmake -sha1sums=('313ac1ddea46b575f16007dd46f4d1ee8711c0fa') +sha1sums=('5d19595a4b6894726508d52ecbf07b440d05e2c5') # optimization OK From achevaux at gmail.com Sat Apr 9 18:57:46 2011 From: achevaux at gmail.com (centuri0) Date: Sat, 9 Apr 2011 18:57:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kde-theme-qtcurve-1.8.7-1-i686 Message-ID: <20110409165746.9BBEDBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1ebe3d9827590731d6a92c3b2045f7cd75ace236 commit 1ebe3d9827590731d6a92c3b2045f7cd75ace236 Author: centuri0 Date: Sat Apr 9 18:57:28 2011 +0200 kde-theme-qtcurve-1.8.7-1-i686 * version bump diff --git a/source/kde/kde-theme-qtcurve/FrugalBuild b/source/kde/kde-theme-qtcurve/FrugalBuild index f9f85d8..f3d6da5 100644 --- a/source/kde/kde-theme-qtcurve/FrugalBuild +++ b/source/kde/kde-theme-qtcurve/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling time: 0.29 SBU +# Compiling time: 0.26 SBU # Maintainer: centuri0 pkgname=kde-theme-qtcurve -pkgver=1.8.6 +pkgver=1.8.7 pkgrel=1 pkgdesc="KDE QtCurve Theme" groups=('kde') @@ -16,6 +16,6 @@ makedepends=("${makedepends[@]}" "kdelibs-compiletime>=$_F_kde_ver") _F_cd_path="QtCurve-KDE4-$pkgver" source=(http://craigd.wikispaces.com/file/view/QtCurve-KDE4-$pkgver.tar.bz2) up2date="lynx -dump '$url'|grep 'Source (KDE 4.*)'|sed 's/.* - \(.*\).*)/\1/'" -sha1sums=('0e703ed63975a97aa1dac2dea96f280fdb7611da') +sha1sums=('5d19595a4b6894726508d52ecbf07b440d05e2c5') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 19:33:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 19:33:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-python-desktop-2.32.0-5-x86_64 *fix conflicts Message-ID: <20110409173355.E97841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=39f692af8d37dd6fd093c2044663f1ae263075bc commit 39f692af8d37dd6fd093c2044663f1ae263075bc Author: bouleetbil Date: Sat Apr 9 19:33:09 2011 +0200 gnome-python-desktop-2.32.0-5-x86_64 *fix conflicts diff --git a/source/gnome-extra/gnome-python-desktop/FrugalBuild b/source/gnome-extra/gnome-python-desktop/FrugalBuild index f7b9307..5d36142 100644 --- a/source/gnome-extra/gnome-python-desktop/FrugalBuild +++ b/source/gnome-extra/gnome-python-desktop/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gnome-python-desktop pkgver=2.32.0 -pkgrel=4 +pkgrel=5 pkgdesc="Python bindings for GNOME desktop" url="http://www.pygtk.org/" depends=('gnome-python>=2.28.1-2') @@ -213,6 +213,8 @@ build() { #Fsplit $pkgname-brasero $_F_python_libdir/gtk-2.0/brasero* # ...phew! + + Frm usr/lib/python2.7/site-packages/gtk-2.0/bugbudd* } sha1sums=('dae15fe9fea61ecbde5af513c94de2ff1a66369c') From bouleetbil at frogdev.info Sat Apr 9 21:46:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 21:46:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: Merge branch 'master' of git.frugalware.org:/pub/other/people/bouleetbil/gnometesting Message-ID: <20110409194654.40F5E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1a8927594e4514a4c84a30c3a0f3d0c319a22afb commit 1a8927594e4514a4c84a30c3a0f3d0c319a22afb Merge: 39f692a 4d55a39 Author: bouleetbil Date: Sat Apr 9 21:46:09 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/other/people/bouleetbil/gnometesting From bouleetbil at frogdev.info Sat Apr 9 22:24:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 22:24:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: librest-0.7.9-1-i686 *fix up2date Message-ID: <20110409202411.919FD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea532b30956c1d0d5194706d43fc952b0559a207 commit ea532b30956c1d0d5194706d43fc952b0559a207 Author: bouleetbil Date: Sat Apr 9 22:24:08 2011 +0200 librest-0.7.9-1-i686 *fix up2date diff --git a/source/gnome/librest/FrugalBuild b/source/gnome/librest/FrugalBuild index 26cb05a..21ca3ed 100644 --- a/source/gnome/librest/FrugalBuild +++ b/source/gnome/librest/FrugalBuild @@ -10,6 +10,7 @@ depends=('libsoup-gnome>=2.32.0' 'libxml2') makedepends=('gtk-doc' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome sha1sums=('1628c0a1733e0e6ebc4cb8b027f30a4e5f0f25d2') From lorddarthfener at gmail.com Sat Apr 9 22:46:53 2011 From: lorddarthfener at gmail.com (Melko) Date: Sat, 9 Apr 2011 22:46:53 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * fix title Message-ID: <20110409204653.EDB041358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=3acb97d98338231c2c7141a549fd56e3d919bb9c commit 3acb97d98338231c2c7141a549fd56e3d919bb9c Author: Melko Date: Sat Apr 9 22:46:36 2011 +0200 * fix title diff --git a/frugalware/xml/news_it.xml b/frugalware/xml/news_it.xml index 515478e..4a1d8e3 100644 --- a/frugalware/xml/news_it.xml +++ b/frugalware/xml/news_it.xml @@ -23,7 +23,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> 203 - GNOME 3 ?? ora disponibile! + Rilasciato GNOME 3! Sat, 9 April 2011 11:54:15 +0100 Devil505 0 From bouleetbil at frogdev.info Sat Apr 9 22:54:16 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 22:54:16 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: libx11-1.4.3-1-x86_64 Message-ID: <20110409205416.4B8C41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=bafc1de0f2a6029f46e1f6f17a86788078d910a8 commit bafc1de0f2a6029f46e1f6f17a86788078d910a8 Author: bouleetbil Date: Sat Apr 9 22:54:01 2011 +0200 libx11-1.4.3-1-x86_64 *Version bump diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild index bc5ae14..daa1f8d 100644 --- a/source/x11/libx11/FrugalBuild +++ b/source/x11/libx11/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libx11 _F_xorg_name=libX11 -pkgver=1.4.1 +pkgver=1.4.3 pkgrel=1 pkgdesc="X.Org X11 library" url="http://xorg.freedesktop.org" @@ -14,6 +14,6 @@ makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ 'xextproto' 'xcmiscproto' 'inputproto>=2.0' 'util-macros>=1.1.5-2') Finclude xorg Fconfopts="$Fconfopts --enable-ipv6 --enable-loadable-i18n --enable-xlocaledir --enable-xlocale" -sha1sums=('83590cdac5071b7154b223d73655edcfc82095c1') +sha1sums=('174270a0e51614b5077026fc6c20701d4e09aef8') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 22:56:40 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 22:56:40 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xorg-sgml-doctools-1.7-1-x86_64 Message-ID: <20110409205640.331C31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=921697dbf853d4f30af8015d6fa11c4d424b58e0 commit 921697dbf853d4f30af8015d6fa11c4d424b58e0 Author: bouleetbil Date: Sat Apr 9 22:56:26 2011 +0200 xorg-sgml-doctools-1.7-1-x86_64 *Version bump diff --git a/source/x11/xorg-sgml-doctools/FrugalBuild b/source/x11/xorg-sgml-doctools/FrugalBuild index edce1b0..a970832 100644 --- a/source/x11/xorg-sgml-doctools/FrugalBuild +++ b/source/x11/xorg-sgml-doctools/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xorg-sgml-doctools -pkgver=1.6 +pkgver=1.7 pkgrel=1 pkgdesc="X.Org SGML Doctools" url="http://xorg.freedesktop.org" @@ -10,4 +10,4 @@ groups=('x11' 'xorg-core' 'xorg-doc') archs=('i686' 'x86_64' 'ppc') depends=() Finclude xorg -sha1sums=('adb6da74caadde7a568cfd6e8933e8e2f3179a54') +sha1sums=('5301166d1e36df9cd796adf944d003f32b7b4945') From bouleetbil at frogdev.info Sat Apr 9 22:58:29 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 22:58:29 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: dconf-0.7.3-1-i686 *fix up2date Message-ID: <20110409205829.8D7DC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6b6550a1fc19b9b82f3c545b7af0d50707ead7cf commit 6b6550a1fc19b9b82f3c545b7af0d50707ead7cf Author: bouleetbil Date: Sat Apr 9 22:58:25 2011 +0200 dconf-0.7.3-1-i686 *fix up2date diff --git a/source/gnome/dconf/FrugalBuild b/source/gnome/dconf/FrugalBuild index 3b9e1dc..37a9510 100644 --- a/source/gnome/dconf/FrugalBuild +++ b/source/gnome/dconf/FrugalBuild @@ -9,6 +9,7 @@ depends=('dbus-glib' 'libxml2>=2.7.8') makedepends=('vala' 'gobject-introspection' 'libgee') groups=('gnome') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome sha1sums=('ef4a5f6b998743887ee7e6e26c0324a6e26607cc') From bouleetbil at frogdev.info Sat Apr 9 22:59:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 22:59:33 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: fixesproto-5.0-1-x86_64 Message-ID: <20110409205933.C09D11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=2463e48fbf5a3ab1743625b1080b15ca500d84d0 commit 2463e48fbf5a3ab1743625b1080b15ca500d84d0 Author: bouleetbil Date: Sat Apr 9 22:59:20 2011 +0200 fixesproto-5.0-1-x86_64 *Version bump diff --git a/source/x11/fixesproto/FrugalBuild b/source/x11/fixesproto/FrugalBuild index c725359..84a5193 100644 --- a/source/x11/fixesproto/FrugalBuild +++ b/source/x11/fixesproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=fixesproto -pkgver=4.1.2 +pkgver=5.0 pkgrel=1 pkgdesc="X.Org Fixes extension headers" url="http://xorg.freedesktop.org" @@ -12,4 +12,4 @@ depends=() makedepends=('pkgconfig') _F_xorg_nr=1 Finclude xorg -sha1sums=('c9cda7ff37849250c328f8dc52dc0f6e546df3a5') +sha1sums=('ab605af5da8c98c0c2f8b2c578fed7c864ee996a') From bouleetbil at frogdev.info Sat Apr 9 23:00:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:00:11 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: libxfixes-5.0-1-x86_64 Message-ID: <20110409210011.490F61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=5cbc5c21708c063eb1a419ee42437e313713c581 commit 5cbc5c21708c063eb1a419ee42437e313713c581 Author: bouleetbil Date: Sat Apr 9 22:59:58 2011 +0200 libxfixes-5.0-1-x86_64 *Version bump diff --git a/source/x11/libxfixes/FrugalBuild b/source/x11/libxfixes/FrugalBuild index 1388c1c..4b133f7 100644 --- a/source/x11/libxfixes/FrugalBuild +++ b/source/x11/libxfixes/FrugalBuild @@ -3,15 +3,15 @@ pkgname=libxfixes _F_xorg_name=libXfixes -pkgver=4.0.5 +pkgver=5.0 pkgrel=1 pkgdesc="X.Org Xfixes library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64' 'ppc') -depends=('libx11>=1.3.4' 'fixesproto>=4.0' 'xproto>=7.0.15' 'xextproto>=7.0.5') +depends=('libx11>=1.4.3' 'fixesproto>=4.0' 'xproto>=7.0.15' 'xextproto>=7.0.5') makedepends=('pkgconfig' 'inputproto>=1.5') Finclude xorg -sha1sums=('255dfb9a8c50d795c60711ec4764f76cd0620cbf') +sha1sums=('3e4d374e9026111a04cd669d4b3434273fc34fe0') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 23:04:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:04:08 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xrdb-1.0.9-1-x86_64 Message-ID: <20110409210408.6555B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=48904637f9973be24c3283aa962c1da68862c478 commit 48904637f9973be24c3283aa962c1da68862c478 Author: bouleetbil Date: Sat Apr 9 23:03:55 2011 +0200 xrdb-1.0.9-1-x86_64 *Version bump diff --git a/source/x11/xrdb/FrugalBuild b/source/x11/xrdb/FrugalBuild index 1ce1897..e7ad95f 100644 --- a/source/x11/xrdb/FrugalBuild +++ b/source/x11/xrdb/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xrdb -pkgver=1.0.8 +pkgver=1.0.9 pkgrel=1 pkgdesc="X.Org xrdb application" url="http://xorg.freedesktop.org" @@ -11,5 +11,5 @@ archs=('i686' 'x86_64' 'ppc') depends=('libxmu>=1.0.4-2' 'libx11>=1.3') makedepends=('inputproto>=2.0') Finclude xorg -sha1sums=('9bfdd09a2b303b962439910f7bccaddd69b6ca8a') +sha1sums=('efa5f2420411988d6a6e142934393fd272507857') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 23:06:01 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:06:01 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-input-synaptics-1.4.0-1-x86_64 Message-ID: <20110409210601.051141358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=317b44340d2f951a5b7af42d3fbdbfd631968095 commit 317b44340d2f951a5b7af42d3fbdbfd631968095 Author: bouleetbil Date: Sat Apr 9 23:05:43 2011 +0200 xf86-input-synaptics-1.4.0-1-x86_64 *Version bump diff --git a/source/x11/xf86-input-synaptics/FrugalBuild b/source/x11/xf86-input-synaptics/FrugalBuild index 1ef3bc7..e20c43a 100644 --- a/source/x11/xf86-input-synaptics/FrugalBuild +++ b/source/x11/xf86-input-synaptics/FrugalBuild @@ -4,13 +4,13 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-input-synaptics -pkgver=1.3.99.901 +pkgver=1.4.0 Fuse $USE_DEVEL && pkgver=1.1.99.31.gc9527bdc Finclude xorg replaces=('synaptics') _F_cd_path="$pkgname-$pkgver" source=($source README.Frugalware) -sha1sums=('6d029f47e0227e8f7dcb25cbe454d14e09d6aa14' \ +sha1sums=('96541b063482568e177f883a9fcfbe9a22c25569' \ 'fcc70fb810074bfdc9a89cc1211fc8d75c1c964b') if Fuse $USE_DEVEL; then unset source sha1sums @@ -22,7 +22,7 @@ fi archs=(${archs[@]} 'ppc') makedepends=(${makedepends[@]} 'util-macros') -pkgrel=4 +pkgrel=1 build() { From bouleetbil at frogdev.info Sat Apr 9 23:07:18 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:07:18 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: libxi-1.4.2-1-x86_64 Message-ID: <20110409210718.D9DC41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=be72517b148091ecad89ffdff5b038d60645366f commit be72517b148091ecad89ffdff5b038d60645366f Author: bouleetbil Date: Sat Apr 9 23:07:05 2011 +0200 libxi-1.4.2-1-x86_64 *Version bump diff --git a/source/x11/libxi/FrugalBuild b/source/x11/libxi/FrugalBuild index 9fb82ee..04bf758 100644 --- a/source/x11/libxi/FrugalBuild +++ b/source/x11/libxi/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libxi _F_xorg_name=libXi -pkgver=1.4.1 +pkgver=1.4.2 pkgrel=1 pkgdesc="X input extension library" url="http://xorg.freedesktop.org" @@ -13,6 +13,6 @@ depends=('libx11>=1.2.1' 'libxext>=1.0.5-3' 'inputproto>=2.0') makedepends=('pkgconfig' 'xproto>=7.0.15') Finclude xorg _F_cd_path="$_F_xorg_name-$pkgver" -sha1sums=('15c9d369cc76c73b5e3833ba3b39355e6cc06636') +sha1sums=('97e60a60dd789287e47df807e487f4952dd4ff95') # optimization OK From lorddarthfener at gmail.com Sat Apr 9 23:07:56 2011 From: lorddarthfener at gmail.com (Melko) Date: Sat, 9 Apr 2011 23:07:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pdfcrack-0.11-1-i686 Message-ID: <20110409210756.D5D221358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fab59019038b01a9fe021050c922245e09853d7b commit fab59019038b01a9fe021050c922245e09853d7b Author: Melko Date: Sat Apr 9 23:06:55 2011 +0200 pdfcrack-0.11-1-i686 * new package diff --git a/source/apps-extra/pdfcrack/FrugalBuild b/source/apps-extra/pdfcrack/FrugalBuild new file mode 100644 index 0000000..53e1100 --- /dev/null +++ b/source/apps-extra/pdfcrack/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.01 SBU +# Maintainer: Melko + +pkgname=pdfcrack +pkgver=0.11 +pkgrel=1 +pkgdesc="Password recovery tool for PDF-files" +depends=('glibc') +groups=('apps-extra') +archs=('i686' 'x86_64') +Finclude sourceforge +sha1sums=('e8069837d879677ecc388326db8a005e83702fc1') + +build() { + Fmake + Fexerel /usr/bin/$pkgname +} From bouleetbil at frogdev.info Sat Apr 9 23:09:07 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:09:07 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-input-keyboard-1.6.0-1-x86_64 Message-ID: <20110409210907.A4C711358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=9e747596885339e02f48cf1ddb997858f216a2c2 commit 9e747596885339e02f48cf1ddb997858f216a2c2 Author: bouleetbil Date: Sat Apr 9 23:08:51 2011 +0200 xf86-input-keyboard-1.6.0-1-x86_64 *Version bump diff --git a/source/x11/xf86-input-keyboard/FrugalBuild b/source/x11/xf86-input-keyboard/FrugalBuild index c1c834d..b3be640 100644 --- a/source/x11/xf86-input-keyboard/FrugalBuild +++ b/source/x11/xf86-input-keyboard/FrugalBuild @@ -4,12 +4,12 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-input-keyboard -pkgver=1.5.99.901 +pkgver=1.6.0 Fuse $USE_DEVEL && pkgver=1.3.2.27.g158d33c pkgrel=1 Finclude xorg archs=(${archs[@]} 'ppc') -sha1sums=('cc945d72418021a72a0af63bbebe3e89ab5c6ad9') +sha1sums=('8e845086749f8c4b64fdfa852b4b26cf7bb62dc9') if Fuse $USE_DEVEL; then unset source sha1sums _F_scm_type="git" From bouleetbil at frogdev.info Sat Apr 9 23:11:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:11:55 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-video-ati-6.14.1-1-x86_64 Message-ID: <20110409211155.43C091358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=6e55a5ef24c6fa4e0fb876e4b1e4bed56fdcde20 commit 6e55a5ef24c6fa4e0fb876e4b1e4bed56fdcde20 Author: bouleetbil Date: Sat Apr 9 23:11:41 2011 +0200 xf86-video-ati-6.14.1-1-x86_64 *Version bump diff --git a/source/x11/xf86-video-ati/FrugalBuild b/source/x11/xf86-video-ati/FrugalBuild index 9e90fc7..bc5cbd4 100644 --- a/source/x11/xf86-video-ati/FrugalBuild +++ b/source/x11/xf86-video-ati/FrugalBuild @@ -4,7 +4,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-video-ati -pkgver=6.14.0 +pkgver=6.14.1 Fuse $USE_DEVEL && pkgver=6.12.2.127.g794ae74 pkgrel=1 pkgdesc="X.Org driver for ATI cards" @@ -12,12 +12,12 @@ url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') replaces=('fglrx') archs=('i686' 'x86_64' 'ppc') -depends=('xorg-server>=1.9.0') +depends=('xorg-server>=1.10.0') # to help upgraders. can be removed after 0.9 is out rodepends=('xf86-video-mach64' 'xf86-video-r128') makedepends=('xproto>=7.0.17' 'randrproto>=1.3.0' 'renderproto' 'xf86driproto>=2.0.4' 'videoproto>=2.2.2' 'xf86miscproto' 'xineramaproto' 'glproto' 'dri2proto') Finclude xorg -sha1sums=('132a6b1ed6e03f7365659cdcf520516746a8fc27') +sha1sums=('89b8a64a23fc307646a11cd2c2636a8125fada8f') Fconfopts="$Fconfopts --enable-dri" # NOTE: TVout interface not available on x86_64 From bouleetbil at frogdev.info Sat Apr 9 23:23:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:23:59 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-input-mouse-1.7.0-1-x86_64 Message-ID: <20110409212359.41A771358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=19c1fbbe27b3fb88264c89ab065eca100042432e commit 19c1fbbe27b3fb88264c89ab065eca100042432e Author: bouleetbil Date: Sat Apr 9 23:23:42 2011 +0200 xf86-input-mouse-1.7.0-1-x86_64 *Version bump diff --git a/source/x11/xf86-input-mouse/FrugalBuild b/source/x11/xf86-input-mouse/FrugalBuild index a5625fd..84b9ef6 100644 --- a/source/x11/xf86-input-mouse/FrugalBuild +++ b/source/x11/xf86-input-mouse/FrugalBuild @@ -4,13 +4,13 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-input-mouse -pkgver=1.6.99.901 +pkgver=1.7.0 Fuse $USE_DEVEL && pkgver=1.4.0.27.gf292f23 pkgrel=1 pkgdesc="X.org Mouse input driver" Finclude xorg archs=(${archs[@]} 'ppc') -sha1sums=('6fb5ba215b9c97fbb6bde73221ddb9fcd76b846c') +sha1sums=('8b99054e5e4feafd7e08c87b936e64386b74ae8f') replaces=('xf86-input-calcomp' 'xf86-input-digitaledge' 'xf86-input-dmc' \ 'xf86-input-dynapro' 'xf86-input-elo2300' 'xf86-input-jamstudio' \ 'xf86-input-magellan' 'xf86-input-palmax' 'xf86-input-spaceorb' \ From bouleetbil at frogdev.info Sat Apr 9 23:26:30 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:26:30 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: util-macros-1.13.0-1-x86_64 Message-ID: <20110409212630.2BC431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=e2695e05a189da589879e0ae91d5c659b28910ae commit e2695e05a189da589879e0ae91d5c659b28910ae Author: bouleetbil Date: Sat Apr 9 23:26:13 2011 +0200 util-macros-1.13.0-1-x86_64 *Version bump diff --git a/source/x11/util-macros/FrugalBuild b/source/x11/util-macros/FrugalBuild index 93d318c..fe5efd6 100644 --- a/source/x11/util-macros/FrugalBuild +++ b/source/x11/util-macros/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=util-macros -pkgver=1.12.0 +pkgver=1.13.0 pkgrel=1 pkgdesc="X.Org autotools utility macros" groups=('x11' 'xorg-core' 'xorg-util') @@ -10,4 +10,4 @@ archs=('i686' 'x86_64' 'ppc') depends=() makedepends=('pkgconfig') Finclude xorg -sha1sums=('07e817b8808b67279a0f0e34dcd57c79ac4d081f') +sha1sums=('5d86ac2a4c0aa3428d72aff35dacc07baf883121') From bouleetbil at frogdev.info Sat Apr 9 23:27:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:27:54 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xproto-7.0.21-1-x86_64 Message-ID: <20110409212754.3FF511358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=5656043d7b103714186093c8c194d81473c16800 commit 5656043d7b103714186093c8c194d81473c16800 Author: bouleetbil Date: Sat Apr 9 23:27:41 2011 +0200 xproto-7.0.21-1-x86_64 *Version bump diff --git a/source/x11/xproto/FrugalBuild b/source/x11/xproto/FrugalBuild index 3b4534f..b6298f0 100644 --- a/source/x11/xproto/FrugalBuild +++ b/source/x11/xproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xproto -pkgver=7.0.20 +pkgver=7.0.21 pkgrel=1 pkgdesc="X.Org xproto protocol headers" url="http://xorg.freedesktop.org" @@ -12,4 +12,4 @@ archs=('i686' 'x86_64' 'ppc') makedepends=('pkgconfig') _F_xorg_ind=1 Finclude xorg -sha1sums=('a55d051c8ad9c50e90429c9319d6d3af821f0696') +sha1sums=('608290fa354b1aff4a075c905f1057d979c62ac9') From bouleetbil at frogdev.info Sat Apr 9 23:30:44 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:30:44 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: libxt-1.1.1-1-x86_64 Message-ID: <20110409213044.B728A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=15fd3f64f71e43ab2a10ef59724b183aed4d7ab5 commit 15fd3f64f71e43ab2a10ef59724b183aed4d7ab5 Author: bouleetbil Date: Sat Apr 9 23:30:31 2011 +0200 libxt-1.1.1-1-x86_64 *Version bump diff --git a/source/x11/libxt/FrugalBuild b/source/x11/libxt/FrugalBuild index b96dd5d..f571a8c 100644 --- a/source/x11/libxt/FrugalBuild +++ b/source/x11/libxt/FrugalBuild @@ -3,16 +3,16 @@ pkgname=libxt _F_xorg_name=libXt -pkgver=1.0.9 +pkgver=1.1.1 pkgrel=1 pkgdesc="X Toolkit Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64' 'ppc') -depends=('libx11>=1.3' 'libsm>=1.1.0' 'xproto>=7.0.15') +depends=('libx11>=1.3' 'libsm>=1.1.0' 'xproto>=7.0.21') makedepends=('pkgconfig' 'inputproto>=2.0') _F_xorg_ind=1 Finclude xorg -sha1sums=('3222c028b37e70a1d0d88feba5e52c2408e6bd5c') +sha1sums=('a29a97f8521bdc7a95364e163f0ce474de572ae5') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 23:34:19 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:34:19 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: dejavu-ttf-2.33-1-x86_64 Message-ID: <20110409213420.0FD171358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=d975b7525a1aa2491d93d9bd4564f3eedd43aade commit d975b7525a1aa2491d93d9bd4564f3eedd43aade Author: bouleetbil Date: Sat Apr 9 23:34:05 2011 +0200 dejavu-ttf-2.33-1-x86_64 *Version bump diff --git a/source/x11/dejavu-ttf/FrugalBuild b/source/x11/dejavu-ttf/FrugalBuild index 428f953..d1aa4c7 100644 --- a/source/x11/dejavu-ttf/FrugalBuild +++ b/source/x11/dejavu-ttf/FrugalBuild @@ -8,7 +8,7 @@ else fi pkgname=dejavu-ttf -pkgver=2.32 +pkgver=2.33 pkgrel=1 pkgdesc="DejaVu fonts" _F_sourceforge_dirname="dejavu" @@ -21,7 +21,7 @@ Fuse $USE_JAVA && makedepends=('fop' 'java-gcj-compat') groups=('x11' 'xorg-core' 'xorg-fonts') archs=('i686' 'x86_64' 'ppc') source=($source dejavu-ttf.xml) -sha1sums=('30865ca2c5c0b983eff6fe32d75aacc32d08a5a2' \ +sha1sums=('4459d6adc3d5cfeb08e5fbe7a4310da96a58f752' \ '9e154157924424d76d7a53d916ae8df7352e9d5a') build() From bouleetbil at frogdev.info Sat Apr 9 23:36:04 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:36:04 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: dejavu-lgc-ttf-2.33-1-x86_64 Message-ID: <20110409213604.B70501358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=471f835f007f89b09290f55603f574dbfc6aa600 commit 471f835f007f89b09290f55603f574dbfc6aa600 Author: bouleetbil Date: Sat Apr 9 23:35:50 2011 +0200 dejavu-lgc-ttf-2.33-1-x86_64 *Version bump diff --git a/source/x11/dejavu-lgc-ttf/FrugalBuild b/source/x11/dejavu-lgc-ttf/FrugalBuild index 48c708e..684fdfb 100644 --- a/source/x11/dejavu-lgc-ttf/FrugalBuild +++ b/source/x11/dejavu-lgc-ttf/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=dejavu-lgc-ttf -pkgver=2.32 +pkgver=2.33 pkgrel=1 pkgdesc="DejaVu fonts (LGC)" _F_sourceforge_dirname="dejavu" @@ -21,4 +21,4 @@ build() Ffilerel *.ttf /usr/share/fonts/X11/TTF } -sha1sums=('033ec14a6b371a78b932d63b703deefe6a8fef25') +sha1sums=('b5214356cbe0a1e85066a054736894595872b0d8') From vmiklos at frugalware.org Sat Apr 9 23:36:55 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 23:36:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mysql-5.5.11-1-i686 Message-ID: <20110409213655.5A0111358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=39603f56770f7eabae66fdb696f03739354e76fa commit 39603f56770f7eabae66fdb696f03739354e76fa Author: Miklos Vajna Date: Sat Apr 9 23:17:53 2011 +0200 mysql-5.5.11-1-i686 - version bump diff --git a/source/apps-extra/mysql/FrugalBuild b/source/apps-extra/mysql/FrugalBuild index 42c501d..17f3e61 100644 --- a/source/apps-extra/mysql/FrugalBuild +++ b/source/apps-extra/mysql/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Miklos Vajna pkgname=mysql -pkgver=5.5.10 -pkgrel=2 +pkgver=5.5.11 +pkgrel=1 extrapkgver= pkgdesc="A fast SQL database server" url="http://www.mysql.com/" From vmiklos at frugalware.org Sat Apr 9 23:36:55 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 23:36:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: flac-1.2.1-2-i686 Message-ID: <20110409213655.746FA1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=51d7002abf0654b3dc6c2d7fc8125ee0c5dd64b4 commit 51d7002abf0654b3dc6c2d7fc8125ee0c5dd64b4 Author: Miklos Vajna Date: Sat Apr 9 23:21:00 2011 +0200 flac-1.2.1-2-i686 - up2date fix diff --git a/source/multimedia/flac/FrugalBuild b/source/multimedia/flac/FrugalBuild index c1c1f46..b174f0e 100644 --- a/source/multimedia/flac/FrugalBuild +++ b/source/multimedia/flac/FrugalBuild @@ -9,8 +9,8 @@ depends=('libogg') makedepends=('xmms') groups=('multimedia') archs=('i686' 'x86_64' 'ppc') +_F_archive_grepv="linux" Finclude sourceforge -up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=13478|grep -m1 'flac-\(.*\)-src'|sed 's/.*flac-\(.*\)-src.*/\1/'" source=($source gcc43.patch) sha1sums=('bd54354900181b59db3089347cc84ad81e410b38' \ 'a7f3ffa1293f5733b8f339ac92fb2daa7fab2d24') From vmiklos at frugalware.org Sat Apr 9 23:36:55 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 9 Apr 2011 23:36:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libmrss-0.19.2-1-i686 Message-ID: <20110409213655.91112135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fa88bc2d65c0ded062c278773073730f5827af44 commit fa88bc2d65c0ded062c278773073730f5827af44 Author: Miklos Vajna Date: Sat Apr 9 23:23:09 2011 +0200 libmrss-0.19.2-1-i686 - up2date fix diff --git a/source/lib-extra/libmrss/FrugalBuild b/source/lib-extra/libmrss/FrugalBuild index 1975ec4..46e4a8b 100644 --- a/source/lib-extra/libmrss/FrugalBuild +++ b/source/lib-extra/libmrss/FrugalBuild @@ -5,11 +5,11 @@ pkgname=libmrss pkgver=0.19.2 pkgrel=1 pkgdesc="A C library for parsing, writing and creating RSS (0.91, 0.92, 1.0, 2.0) files or streams." -url="http://www2.autistici.org/bakunin/libmrss/" +url="http://www.autistici.org/bakunin/libmrss/" depends=('libnxml>=0.9-2') groups=('lib-extra') archs=('i686' 'x86_64') -up2date="lynx -dump $url |Flasttar" +up2date="Flasttar $url" source=($url/libmrss-$pkgver.tar.gz) sha1sums=('3723b0f41151873de11eb56bb3743a4f72d446ce') # optimization OK From bouleetbil at frogdev.info Sat Apr 9 23:42:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:42:02 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: xf86-input-joystick-1.5.99.901-1-x86_64 Message-ID: <20110409214202.B552C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=65faf1d1be42c5fdc0e973b1e262335fa9176a37 commit 65faf1d1be42c5fdc0e973b1e262335fa9176a37 Author: bouleetbil Date: Sat Apr 9 23:41:49 2011 +0200 xf86-input-joystick-1.5.99.901-1-x86_64 *Version bump diff --git a/source/x11/xf86-input-joystick/FrugalBuild b/source/x11/xf86-input-joystick/FrugalBuild index 338755c..8dd9773 100644 --- a/source/x11/xf86-input-joystick/FrugalBuild +++ b/source/x11/xf86-input-joystick/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-joystick -pkgver=1.5.0 +pkgver=1.5.99.901 Finclude xorg -sha1sums=('a9fed6827d55f59b7166185247952049b4e6d152') -pkgrel=3 +sha1sums=('9a7919d34ec048ce57f21673dcda68450a7e17c8') +pkgrel=1 # optimization OK From bouleetbil at frogdev.info Sat Apr 9 23:47:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:47:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: NEWS *added gnome 3 Message-ID: <20110409214752.245741358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4afa8b2299e2b96170d4cd4b6580fe1203842f62 commit 4afa8b2299e2b96170d4cd4b6580fe1203842f62 Author: bouleetbil Date: Sat Apr 9 23:46:09 2011 +0200 NEWS *added gnome 3 diff --git a/NEWS b/NEWS index 35544e8..0d2f7a9 100644 --- a/NEWS +++ b/NEWS @@ -9,3 +9,4 @@ Frugalware (1.5) * systemd is now the default init system * Initial ARM port * XFCE now has lcdfilter for fonts like GNOME + * Gnome 3.0 From bouleetbil at frogdev.info Sat Apr 9 23:47:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 9 Apr 2011 23:47:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: NEWS *added gnome3 to update packages section Message-ID: <20110409214752.38917BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7814fad9ae81c4b90f889e7ce14b9379b8a53cc9 commit 7814fad9ae81c4b90f889e7ce14b9379b8a53cc9 Author: bouleetbil Date: Sat Apr 9 23:47:06 2011 +0200 NEWS *added gnome3 to update packages section diff --git a/NEWS b/NEWS index 0d2f7a9..69b2011 100644 --- a/NEWS +++ b/NEWS @@ -5,8 +5,8 @@ Frugalware (1.5) * XFCE 4.8 with some bug fix releases (4.8.1), see here the details brought by this version. * 1.0 release of the core EFL libraries (details) * KDE 4.6 + * Gnome 3.0 * New features: * systemd is now the default init system * Initial ARM port * XFCE now has lcdfilter for fonts like GNOME - * Gnome 3.0 From devil505linux at gmail.com Sun Apr 10 09:10:48 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 09:10:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: * fixing KDE version in NEWS Message-ID: <20110410071048.7906E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=53c3c142c9b7f324e433f00c3d4ecd2f6ae95d2f commit 53c3c142c9b7f324e433f00c3d4ecd2f6ae95d2f Author: Devil505 Date: Sun Apr 10 08:03:31 2011 +0200 * fixing KDE version in NEWS diff --git a/NEWS b/NEWS index 69b2011..5f4da11 100644 --- a/NEWS +++ b/NEWS @@ -4,7 +4,7 @@ Frugalware (1.5) * Package updates: * XFCE 4.8 with some bug fix releases (4.8.1), see here the details brought by this version. * 1.0 release of the core EFL libraries (details) - * KDE 4.6 + * KDE 4.6.2 * Gnome 3.0 * New features: * systemd is now the default init system From devil505linux at gmail.com Sun Apr 10 09:10:48 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 09:10:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: desktopcouch-1.0.7-1-i686 * version bump Message-ID: <20110410071048.8BC0EBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=22855a3ef34a9f2337a0b456676e33ecdbd0466b commit 22855a3ef34a9f2337a0b456676e33ecdbd0466b Author: Devil505 Date: Sun Apr 10 09:10:02 2011 +0200 desktopcouch-1.0.7-1-i686 * version bump diff --git a/source/devel-extra/desktopcouch/FrugalBuild b/source/devel-extra/desktopcouch/FrugalBuild index 3cafb00..9c67b7c 100644 --- a/source/devel-extra/desktopcouch/FrugalBuild +++ b/source/devel-extra/desktopcouch/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=desktopcouch -pkgver=1.0.6 +pkgver=1.0.7 pkgrel=1 pkgdesc="Desktop-oriented interface to CouchDB" depends=('gnome-keyring' 'couchdb' 'gnome-python-desktop' 'python-couchdb' 'python-oauth' 'pyxdg') @@ -10,5 +10,5 @@ makedepends=('python-distutils-extra>=2.19-3' 'setuptools' 'intltool') groups=('devel-extra') archs=('i686' 'x86_64') Finclude launchpad -sha1sums=('1005ee1cb9a20cd87e1f33828b112656e510cc96') +sha1sums=('4de5d43791dfc37b1bde207ec5b69e0d996cabff') From boobaa at frugalware.org Sun Apr 10 09:33:32 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 09:33:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: perl-xml-rss-1.49-1-x86_64 Message-ID: <20110410073332.13C021358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70f5ab3f4d7e6aca25cc9db797fa77abb12c4b8d commit 70f5ab3f4d7e6aca25cc9db797fa77abb12c4b8d Author: CS?CSY L?szl? Date: Sun Apr 10 09:33:22 2011 +0200 perl-xml-rss-1.49-1-x86_64 version bump diff --git a/source/devel-extra/perl-xml-rss/FrugalBuild b/source/devel-extra/perl-xml-rss/FrugalBuild index c6188b6..255a12d 100644 --- a/source/devel-extra/perl-xml-rss/FrugalBuild +++ b/source/devel-extra/perl-xml-rss/FrugalBuild @@ -3,7 +3,7 @@ _F_perl_name=XML-RSS _F_perl_author=S/SH/SHLOMIF -pkgver=1.48 +pkgver=1.49 pkgrel=1 pkgdesc="A perl module to manage RDF Site Summary (RSS) files" url="http://search.cpan.org/dist/XML-RSS/" @@ -12,4 +12,4 @@ makedepends=('perl-test-manifest') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('8b26c8b555fddb6c303020d0cdefc9b0fef796b9') +sha1sums=('ec0a04e8d37a2f77ff56c2ab380f443807d37830') From boobaa at frugalware.org Sun Apr 10 09:40:39 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 09:40:39 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: perl-dbd-pg-2.18.0-1-x86_64 Message-ID: <20110410074039.6EEF11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cadd80a0b67dd8d442d7a591df6b9f7eb3f2d177 commit cadd80a0b67dd8d442d7a591df6b9f7eb3f2d177 Author: CS?CSY L?szl? Date: Sun Apr 10 09:40:27 2011 +0200 perl-dbd-pg-2.18.0-1-x86_64 version bump diff --git a/source/devel-extra/perl-dbd-pg/FrugalBuild b/source/devel-extra/perl-dbd-pg/FrugalBuild index 057970a..33c2755 100644 --- a/source/devel-extra/perl-dbd-pg/FrugalBuild +++ b/source/devel-extra/perl-dbd-pg/FrugalBuild @@ -4,11 +4,11 @@ _F_perl_name=DBD-Pg _F_perl_author=T/TU/TURNSTEP -pkgver=2.17.2 +pkgver=2.18.0 pkgrel=1 pkgdesc="PostgreSQL database driver for the DBI module" depends=('perl-dbi>=1.609' 'postgresql>=8.4.0') Finclude perl archs=(${archs[@]} 'x86_64') -sha1sums=('e4509a8e1a06cc196ed6fc3e7976c124633bfeb8') +sha1sums=('af86fc2a8fac98cef69284688df5c9dd07cf9cb0') # optimization OK From devil505linux at gmail.com Sun Apr 10 09:57:00 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 09:57:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libunity-misc-0.2.1-4-i686 * version bump Message-ID: <20110410075700.A77CD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=579373a5a03b31ffa3afea9e546eea341651ad9e commit 579373a5a03b31ffa3afea9e546eea341651ad9e Author: Devil505 Date: Sun Apr 10 09:52:03 2011 +0200 libunity-misc-0.2.1-4-i686 * version bump diff --git a/source/ayatana-extra/libunity-misc/FrugalBuild b/source/ayatana-extra/libunity-misc/FrugalBuild index de7e092..2ffec04 100644 --- a/source/ayatana-extra/libunity-misc/FrugalBuild +++ b/source/ayatana-extra/libunity-misc/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libunity-misc pkgver=0.2.1 -pkgrel=3 +pkgrel=4 pkgdesc="Misc. differently licensed stuff for Unity" url="https://launchpad.net/libunity-misc/" -depends=('clutter' 'libuuid') +depends=('clutter' 'libuuid' 'gtk+2') groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" From jercel16 at gmail.com Sun Apr 10 10:15:42 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:15:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: perl-proc-daemon-0.10-1-x86_64 Message-ID: <20110410081542.2C0A11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0b13821943fd09517b235ca85fbdcce25775db34 commit 0b13821943fd09517b235ca85fbdcce25775db34 Author: jercel Date: Sun Apr 10 10:15:22 2011 +0200 perl-proc-daemon-0.10-1-x86_64 * Version bump diff --git a/source/devel-extra/perl-proc-daemon/FrugalBuild b/source/devel-extra/perl-proc-daemon/FrugalBuild index 067c1d0..cab79c2 100644 --- a/source/devel-extra/perl-proc-daemon/FrugalBuild +++ b/source/devel-extra/perl-proc-daemon/FrugalBuild @@ -3,10 +3,10 @@ _F_perl_name=Proc-Daemon _F_perl_author=D/DE/DETI -pkgver=0.09 +pkgver=0.10 pkgrel=1 pkgdesc="Run Perl program as a daemon process" Finclude perl archs=('i686' 'x86_64') source=(http://mir2.ovh.net/ftp.cpan.org/authors/id/D/DE/DETI/Proc/$_F_perl_name-$pkgver.tar.gz) -sha1sums=('98b520b22469519276987adbe9952bf2e803541a') +sha1sums=('1b0b90b54b54f4e7f10f48fc585a5915012d7395') From jercel16 at gmail.com Sun Apr 10 10:20:32 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:20:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: activesupport-3.0.6-1-x86_64 Message-ID: <20110410082032.7062D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6480dfa6c49bfa87eb7d5fdddd5ee9a774698d47 commit 6480dfa6c49bfa87eb7d5fdddd5ee9a774698d47 Author: jercel Date: Sun Apr 10 10:18:22 2011 +0200 activesupport-3.0.6-1-x86_64 * Version Bump diff --git a/source/devel-extra/activesupport/FrugalBuild b/source/devel-extra/activesupport/FrugalBuild index c221cfc..871140c 100644 --- a/source/devel-extra/activesupport/FrugalBuild +++ b/source/devel-extra/activesupport/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: jercel pkgname=activesupport -pkgver=3.0.5 +pkgver=3.0.6 pkgrel=1 pkgdesc="Eases web-request routing, handling, and response." url="http://rubyforge.org/projects/actionpack/" groups=('devel-extra') archs=('i686' 'x86_64') Finclude gem -sha1sums=('195fa3f7fa044134703a655cdb906edb515286c4') +sha1sums=('175ba6286f7802edeeaab30f900d87a38f516728') From jercel16 at gmail.com Sun Apr 10 10:20:32 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:20:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: actionpack-3.0.6-1-x86_64 Message-ID: <20110410082032.81308BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d6aecf22db963dd704cd4e580324db100c89fa63 commit d6aecf22db963dd704cd4e580324db100c89fa63 Author: jercel Date: Sun Apr 10 10:19:37 2011 +0200 actionpack-3.0.6-1-x86_64 * Version Bump diff --git a/source/devel-extra/actionpack/FrugalBuild b/source/devel-extra/actionpack/FrugalBuild index c0556c9..be15406 100644 --- a/source/devel-extra/actionpack/FrugalBuild +++ b/source/devel-extra/actionpack/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: jercel pkgname=actionpack -pkgver=3.0.5 +pkgver=3.0.6 pkgrel=1 pkgdesc="Eases web-request routing, handling, and response." url="http://rubyforge.org/projects/actionpack/" -depends=('activesupport>=3.0.5') +depends=('activesupport>=3.0.6') groups=('devel-extra') archs=('i686' 'x86_64') Finclude gem -sha1sums=('0a6f7f9ac2960ff224c913877a2917e1bea80df3') +sha1sums=('e8fbefd5b0a46408dd557331700ea514a4c199ab') From jercel16 at gmail.com Sun Apr 10 10:20:32 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:20:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: atk-emul-2.0.0_1-1-x86_64 Message-ID: <20110410082032.9E474BAC006@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc9bf57d26c02fec473a7948695011d14787492b commit cc9bf57d26c02fec473a7948695011d14787492b Author: jercel Date: Sun Apr 10 10:20:18 2011 +0200 atk-emul-2.0.0_1-1-x86_64 version bump diff --git a/source/emul-extra/atk-emul/FrugalBuild b/source/emul-extra/atk-emul/FrugalBuild index faab364..91ef206 100644 --- a/source/emul-extra/atk-emul/FrugalBuild +++ b/source/emul-extra/atk-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=atk-emul -pkgver=1.32.0_1 +pkgver=2.0.0_1 pkgrel=1 pkgdesc="A library of accessibility functions used by GNOME (32bit emul)" url="http://www.gtk.org" @@ -10,4 +10,4 @@ depends=('glib2-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('4f27722ba040463246ee0b11a0733e700aa730cc') +sha1sums=('e8d6d10b1ce39ed8804ed39cbd58d5628f1a75c7') From jercel16 at gmail.com Sun Apr 10 10:23:04 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:23:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: actionmailer-3.0.6-1-x86_64 Message-ID: <20110410082304.32DEE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=19dc181921ee8482a9430e4ee388b628e3a40a0c commit 19dc181921ee8482a9430e4ee388b628e3a40a0c Author: jercel Date: Sun Apr 10 10:21:33 2011 +0200 actionmailer-3.0.6-1-x86_64 * Version bump diff --git a/source/devel-extra/actionmailer/FrugalBuild b/source/devel-extra/actionmailer/FrugalBuild index 9a7662f..d232d2e 100644 --- a/source/devel-extra/actionmailer/FrugalBuild +++ b/source/devel-extra/actionmailer/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: jercel pkgname=actionmailer -pkgver=3.0.5 +pkgver=3.0.6 pkgrel=1 pkgdesc="Framework for designing email-service layers" url="http://rubyforge.org/projects/actionmailer/" -depends=('actionpack>=3.0.5') +depends=('actionpack>=3.0.6') groups=('devel-extra') archs=('i686' 'x86_64') Finclude gem -sha1sums=('b25750c8126aa21db27d7b0ee829b2e94e525ebc') +sha1sums=('fc7b0503bdf99d1ec08dc0dcee3677ca1dd29f0f') From jercel16 at gmail.com Sun Apr 10 10:23:04 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:23:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-libs-emul-2.24.4_1-1-x86_64 Message-ID: <20110410082304.4AAF5BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2dfb4062f3c1da5bd4ebc14c4b38c02b054dc1fb commit 2dfb4062f3c1da5bd4ebc14c4b38c02b054dc1fb Author: jercel Date: Sun Apr 10 10:22:30 2011 +0200 gtk+2-libs-emul-2.24.4_1-1-x86_64 version bump diff --git a/source/emul-extra/gtk+2-libs-emul/FrugalBuild b/source/emul-extra/gtk+2-libs-emul/FrugalBuild index f271687..9ecc8dc 100644 --- a/source/emul-extra/gtk+2-libs-emul/FrugalBuild +++ b/source/emul-extra/gtk+2-libs-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gtk+2-libs-emul -pkgver=2.22.0_4 +pkgver=2.24.4_1 pkgrel=1 pkgdesc="GTK+2 core libraries. (32bit emul)" url="http://www.gtk.org/" @@ -12,5 +12,5 @@ depends=('libxinerama-emul' 'libxi-emul' 'libxrandr-emul' \ groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('71ec26ab91a7018f4bb5e6370408ce34950fc497') +sha1sums=('02bc5cd0f5c337d9632cf9316a669cb059c85978') From jercel16 at gmail.com Sun Apr 10 10:24:28 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:24:28 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: activerecord-3.0.6-1-x86_64 Message-ID: <20110410082428.37BBD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e89b1eee06fee26f9ef85edfbf12bccf9649152d commit e89b1eee06fee26f9ef85edfbf12bccf9649152d Author: jercel Date: Sun Apr 10 10:23:22 2011 +0200 activerecord-3.0.6-1-x86_64 * Version bump diff --git a/source/devel-extra/activerecord/FrugalBuild b/source/devel-extra/activerecord/FrugalBuild index a529175..2e98621 100644 --- a/source/devel-extra/activerecord/FrugalBuild +++ b/source/devel-extra/activerecord/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: jercel pkgname=activerecord -pkgver=3.0.5 +pkgver=3.0.6 pkgrel=1 pkgdesc="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" url="http://rubyforge.org/projects/actionpack/" -depends=('activesupport>=3.0.5') +depends=('activesupport>=3.0.6') groups=('devel-extra') archs=('i686' 'x86_64') Finclude gem -sha1sums=('33dd05d7362931564f6f15ea7130cc27a5fc09e8') +sha1sums=('3b392e811ba342a5bf430d89cf4f060d119aba64') From jercel16 at gmail.com Sun Apr 10 10:24:28 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:24:28 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pango-emul-1.28.4_1-1-x86_64 Message-ID: <20110410082428.51F41BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c48f6dfbc538eee866947c06f21fcc57639589eb commit c48f6dfbc538eee866947c06f21fcc57639589eb Author: jercel Date: Sun Apr 10 10:24:10 2011 +0200 pango-emul-1.28.4_1-1-x86_64 version bump diff --git a/source/emul-extra/pango-emul/FrugalBuild b/source/emul-extra/pango-emul/FrugalBuild index 8f9aa30..04c92d1 100644 --- a/source/emul-extra/pango-emul/FrugalBuild +++ b/source/emul-extra/pango-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=pango-emul -pkgver=1.28.3_1 +pkgver=1.28.4_1 pkgrel=1 pkgdesc="A library for layout and rendering of text (32bit emul)" url="http://www.gtk.org" @@ -10,4 +10,4 @@ depends=('cairo-emul' 'libxft-emul' 'glib2-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('f1a223f1d723e587e3fc9a8753a1314b585d8981') +sha1sums=('9e879da0bac97f4ef2f1e8cac4d9696822261e6e') From jercel16 at gmail.com Sun Apr 10 10:26:02 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:26:02 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: perl-critic-1.115-1-x86_64 Message-ID: <20110410082602.7DE5F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9d536768ca7199e930b664d343febd9e009a6d43 commit 9d536768ca7199e930b664d343febd9e009a6d43 Author: jercel Date: Sun Apr 10 10:24:33 2011 +0200 perl-critic-1.115-1-x86_64 * Version bump diff --git a/source/devel-extra/perl-critic/FrugalBuild b/source/devel-extra/perl-critic/FrugalBuild index 41422b9..ab2876d 100644 --- a/source/devel-extra/perl-critic/FrugalBuild +++ b/source/devel-extra/perl-critic/FrugalBuild @@ -3,7 +3,7 @@ _F_perl_name=Perl-Critic _F_perl_author=E/EL/ELLIOTJS -pkgver=1.114 +pkgver=1.115 pkgrel=1 pkgdesc="Critique Perl source code for best-practices." Finclude perl @@ -11,4 +11,4 @@ depends=('perl-list-moreutils' 'perl-io-string' 'perl-test-exception' 'perl-conf 'perl-b-keywords' 'perl-ppi' 'perl-exception-class' 'perl-readonly' 'perl-string-format') pkgname=perl-critic archs=('i686' 'x86_64' 'ppc') -sha1sums=('33ccda83f66762603fba8940d678b9b44975eeb0') +sha1sums=('752ef6da0627084944f04db0a42995127678942a') From jercel16 at gmail.com Sun Apr 10 10:26:02 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:26:02 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libxml2-emul-2.7.8_2-1-x86_64 Message-ID: <20110410082602.8FFCBBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e4cc954e628e4af1a746978e8d53df031f976569 commit e4cc954e628e4af1a746978e8d53df031f976569 Author: jercel Date: Sun Apr 10 10:25:33 2011 +0200 libxml2-emul-2.7.8_2-1-x86_64 version bump diff --git a/source/emul-extra/libxml2-emul/FrugalBuild b/source/emul-extra/libxml2-emul/FrugalBuild index f8610ec..52a3de5 100644 --- a/source/emul-extra/libxml2-emul/FrugalBuild +++ b/source/emul-extra/libxml2-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libxml2-emul -pkgver=2.7.7_3 +pkgver=2.7.8_2 pkgrel=1 pkgdesc="libxml2 for emulation of i686 on x86_64" url="http://www.xmlsoft.org" @@ -10,4 +10,4 @@ depends=('glibc-emul' 'zlib-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('cb896383864d577cd24c113750accee124e9b470') +sha1sums=('1dcb4f9ef6c6d28d8c2921e4531f185b5c5a43c8') From jercel16 at gmail.com Sun Apr 10 10:26:02 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:26:02 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mako-0.4.1-1-x86_64 Message-ID: <20110410082602.96AAFBAC006@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=af2c47e06acfb700d7ae4646ff3a1a874d28177a commit af2c47e06acfb700d7ae4646ff3a1a874d28177a Author: jercel Date: Sun Apr 10 10:25:36 2011 +0200 mako-0.4.1-1-x86_64 * Version bump diff --git a/source/devel-extra/mako/FrugalBuild b/source/devel-extra/mako/FrugalBuild index 73c654e..2451bea 100644 --- a/source/devel-extra/mako/FrugalBuild +++ b/source/devel-extra/mako/FrugalBuild @@ -4,7 +4,7 @@ pkgname=mako _F_archive_name="Mako" -pkgver=0.4.0 +pkgver=0.4.1 pkgrel=1 pkgdesc="Mako is a template library written in Python." url="http://www.makotemplates.org" @@ -14,5 +14,5 @@ groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') _F_pypi_name='Mako' Finclude pypi -sha1sums=('05ce25d0d72fb9dc1d5ad4447db07aee9b94c199') +sha1sums=('a4e30660794aab5224e0c776d03c45f3c8b5fa7e') _F_makepkg_chkdep="python" From jercel16 at gmail.com Sun Apr 10 10:27:38 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:27:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: perl-html-tree-4.2-1-x86_64 Message-ID: <20110410082738.8C3BF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5413d6bc7e585ad35d5c55e20678dbfebcd04b33 commit 5413d6bc7e585ad35d5c55e20678dbfebcd04b33 Author: jercel Date: Sun Apr 10 10:26:27 2011 +0200 perl-html-tree-4.2-1-x86_64 * Verson bump diff --git a/source/devel-extra/perl-html-tree/FrugalBuild b/source/devel-extra/perl-html-tree/FrugalBuild index 42eac25..128873e 100644 --- a/source/devel-extra/perl-html-tree/FrugalBuild +++ b/source/devel-extra/perl-html-tree/FrugalBuild @@ -3,9 +3,9 @@ _F_perl_name=HTML-Tree _F_perl_author=J/JF/JFEARN -pkgver=4.1 +pkgver=4.2 pkgdesc="overview of HTML::TreeBuilder et al" depends=('perl-html-parser>=3.46') Finclude perl -sha1sums=('0aebf7cc76834095c8f169ef7fcdb47b8d625280') +sha1sums=('90fc3f3a2269b32a224f2d905e6e47b5ec4bd600') archs=(${archs[@]} 'x86_64') From jercel16 at gmail.com Sun Apr 10 10:27:38 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:27:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ncurses-emul-5.9_1-1-x86_64 Message-ID: <20110410082738.A04B4BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=90843ed31942639072361f39745744599fe0f353 commit 90843ed31942639072361f39745744599fe0f353 Author: jercel Date: Sun Apr 10 10:27:11 2011 +0200 ncurses-emul-5.9_1-1-x86_64 version bump diff --git a/source/emul-extra/ncurses-emul/FrugalBuild b/source/emul-extra/ncurses-emul/FrugalBuild index 07a719e..b7f43fd 100644 --- a/source/emul-extra/ncurses-emul/FrugalBuild +++ b/source/emul-extra/ncurses-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=ncurses-emul -pkgver=5.8_1 +pkgver=5.9_1 pkgrel=1 pkgdesc="A System V Release 4.0 curses emulation library for emulation of i686 on x86_64" url="http://www.gnu.org/software/ncurses/ncurses.html" @@ -12,4 +12,4 @@ archs=('!i686' 'x86_64') Finclude emul # optimization OK -sha1sums=('f47d4d716d005e30ebb2bb6abb74edbf49c2fcf3') +sha1sums=('6b55524c8df4b109312b3408951966286be81728') From jercel16 at gmail.com Sun Apr 10 10:29:06 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:29:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: lcms-emul-1.19_3-1-x86_64 Message-ID: <20110410082906.1FD7A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1a71572a2465966d3e88a19cb88d0f2a9fc6fb4f commit 1a71572a2465966d3e88a19cb88d0f2a9fc6fb4f Author: jercel Date: Sun Apr 10 10:28:48 2011 +0200 lcms-emul-1.19_3-1-x86_64 version bump diff --git a/source/emul-extra/lcms-emul/FrugalBuild b/source/emul-extra/lcms-emul/FrugalBuild index 4cbe6a7..15df79d 100644 --- a/source/emul-extra/lcms-emul/FrugalBuild +++ b/source/emul-extra/lcms-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=lcms-emul -pkgver=1.19_2 +pkgver=1.19_3 pkgrel=1 pkgdesc="LCMS libraries for emulation of i686 on x86_64" url="http://www.gnu.org/software/tar/tar.html" @@ -10,4 +10,4 @@ depends=('libtiff-emul' 'libjpeg-emul' 'zlib-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('21efbbe11cdfa216e88342feefc02d7ce1fc3fc2') +sha1sums=('47375c1019c86de5b064a4d542bc0dddca950f4c') From devil505linux at gmail.com Sun Apr 10 10:31:03 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 10:31:03 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: yad-0.10.1-1-i686 * version bump Message-ID: <20110410083103.9A51E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ace00cfdd5f547cbb6d81b808cc88a4ec52307fc commit ace00cfdd5f547cbb6d81b808cc88a4ec52307fc Author: Devil505 Date: Sun Apr 10 10:29:56 2011 +0200 yad-0.10.1-1-i686 * version bump diff --git a/source/xlib-extra/yad/FrugalBuild b/source/xlib-extra/yad/FrugalBuild index 2648720..a3b19b4 100644 --- a/source/xlib-extra/yad/FrugalBuild +++ b/source/xlib-extra/yad/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=yad -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc="Display graphical dialogs from shell scripts or command line" _F_googlecode_ext=".tar.xz" @@ -12,4 +12,4 @@ makedepends=('intltool') options=('scriptlet') groups=('xlib-extra') archs=('i686' 'x86_64') -sha1sums=('c861b8b8d097aa385ab394634600d144d8b10d9c') +sha1sums=('cf5f5c5f907795a2cc59a12f5d15db3f2ee4c332') From jercel16 at gmail.com Sun Apr 10 10:33:31 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:33:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libvirt-0.9.0-1-x86_64 Message-ID: <20110410083331.ADEA81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=370fdf5cb80919a9d638a159406557213d3774e8 commit 370fdf5cb80919a9d638a159406557213d3774e8 Author: jercel Date: Sun Apr 10 10:29:20 2011 +0200 libvirt-0.9.0-1-x86_64 * Version bump diff --git a/source/xlib-extra/libvirt/FrugalBuild b/source/xlib-extra/libvirt/FrugalBuild index 7ed0cd3..b095ce4 100644 --- a/source/xlib-extra/libvirt/FrugalBuild +++ b/source/xlib-extra/libvirt/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: jercel pkgname=libvirt -pkgver=0.8.8 -pkgrel=4 +pkgver=0.9.0 +pkgrel=1 pkgdesc="libvirt is a library providing access to information from various virtualization tools" url="http://libvirt.org" depends=('libxml2' 'gnutls' 'cyrus-sasl' 'parted>=2.3' 'lvm2' 'libnl' 'systemd') @@ -14,7 +14,7 @@ archs=('x86_64' 'i686') up2date="lynx -dump ftp://libvirt.org/libvirt/|grep "[0-9].tar.gz$"|sed 's/.*-\(.*\).t.*/\1/'|Fsort|sed -n '$ p'" source=(ftp://ftp.libvirt.org/libvirt/$pkgname-$pkgver.tar.gz rc.libvirtd rc.libvirt-guests \ fix_iptables_path.patch qemu-no-cgroup.patch) -sha1sums=('b80374768d7bc3234735c1221aa554c75fe79ab8' \ +sha1sums=('c540578acbd59ff77540664b99b7521bc94c4898' \ 'c14b6de4e3bf04c12757606223e165f37ffc9ea7' \ '1ede84a711b8ca63c04af077fd1e915f6491221a' \ '3ef036f94a6903e871e2ae8ea2b01fa81943e375' \ From jercel16 at gmail.com Sun Apr 10 10:33:31 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:33:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: cairo-emul-1.10.2_6-1-x86_64 Message-ID: <20110410083331.C064A1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e1b479484b0cb58491c8b4c46317486ee2bed686 commit e1b479484b0cb58491c8b4c46317486ee2bed686 Author: jercel Date: Sun Apr 10 10:30:31 2011 +0200 cairo-emul-1.10.2_6-1-x86_64 version bump diff --git a/source/emul-extra/cairo-emul/FrugalBuild b/source/emul-extra/cairo-emul/FrugalBuild index 107388d..b1b8506 100644 --- a/source/emul-extra/cairo-emul/FrugalBuild +++ b/source/emul-extra/cairo-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=cairo-emul -pkgver=1.10.2_4 +pkgver=1.10.2_6 pkgrel=1 pkgdesc="A vector graphics library with cross-device output support (32bit emul)" url="http://cairographics.org" @@ -10,4 +10,4 @@ depends=('glitz-emul' 'libxrender-emul' 'fontconfig-emul' 'libpng-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('84af8fd3159890c8707b7ceddd632378bf425cc1') +sha1sums=('4ffa854d8a50c40e0cb0682720cd3504743c5954') From jercel16 at gmail.com Sun Apr 10 10:37:19 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:37:19 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qt-emul-3.3.8_13-1-x86_64 Message-ID: <20110410083719.ACF0C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f0636282ccf8f21bb2deb2e4aa38da4de67266cb commit f0636282ccf8f21bb2deb2e4aa38da4de67266cb Author: jercel Date: Sun Apr 10 10:35:17 2011 +0200 qt-emul-3.3.8_13-1-x86_64 version bump diff --git a/source/emul-extra/qt-emul/FrugalBuild b/source/emul-extra/qt-emul/FrugalBuild index 839c8d2..bf187d2 100644 --- a/source/emul-extra/qt-emul/FrugalBuild +++ b/source/emul-extra/qt-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=qt-emul -pkgver=3.3.8_12 +pkgver=3.3.8_13 pkgrel=1 pkgdesc="The QT GUI toolkit for emulation of i686 on x86_64" url="http://www.trolltech.com/products/qt" @@ -12,4 +12,4 @@ depends=('libpng-emul' 'libjpeg-emul' 'libsm-emul' 'libmng-emul' 'mesa-emul' \ groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('b45c9ededab7f73cb6a8a75e0ff6dee27ed1f8a6') +sha1sums=('af2a08121723bc8b5d0421db4deebc65d1ecd2ed') From jercel16 at gmail.com Sun Apr 10 10:38:49 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:38:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-tools-emul-2.24.4_1-1-x86_64 Message-ID: <20110410083849.892481358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0353f9cb6eeb2e4cade1d0ac2708a1a1d36a9a25 commit 0353f9cb6eeb2e4cade1d0ac2708a1a1d36a9a25 Author: jercel Date: Sun Apr 10 10:38:40 2011 +0200 gtk+2-tools-emul-2.24.4_1-1-x86_64 version bump diff --git a/source/emul-extra/gtk+2-tools-emul/FrugalBuild b/source/emul-extra/gtk+2-tools-emul/FrugalBuild index 263d356..28d3917 100644 --- a/source/emul-extra/gtk+2-tools-emul/FrugalBuild +++ b/source/emul-extra/gtk+2-tools-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gtk+2-tools-emul -pkgver=2.22.0_4 +pkgver=2.24.4_1 pkgrel=1 pkgdesc="GTK+2 commandline tools. (32bit emul)" url="http://www.gtk.org/" @@ -10,5 +10,5 @@ depends=('gtk+2-libs-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('4a24b4e50965e48fe73555f1c0dee791ffb0bdab') +sha1sums=('b8f4112254a92d956301cf9855f923acfb807515') From jercel16 at gmail.com Sun Apr 10 10:42:25 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:42:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libgl-emul-7.10_4-1-x86_64 Message-ID: <20110410084225.3A9A91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a8b506cf4a588ebe76e574cfe78cfa8f0ac5144a commit a8b506cf4a588ebe76e574cfe78cfa8f0ac5144a Author: jercel Date: Sun Apr 10 10:40:32 2011 +0200 libgl-emul-7.10_4-1-x86_64 version bump diff --git a/source/emul-extra/libgl-emul/FrugalBuild b/source/emul-extra/libgl-emul/FrugalBuild index d7056be..754b0c5 100644 --- a/source/emul-extra/libgl-emul/FrugalBuild +++ b/source/emul-extra/libgl-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libgl-emul -pkgver=7.10_3 +pkgver=7.10_4 pkgrel=1 pkgdesc="GL (Mesa) libraries for emulation of i686 on x86_64" url="http://mesa3d.sf.net" @@ -10,4 +10,4 @@ depends=('mesa-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('94b20db08030682460ab4a9d769828278e17fb20') +sha1sums=('63948baddf68f9a76d1e765309aa35fc33319b01') From jercel16 at gmail.com Sun Apr 10 10:43:45 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:43:45 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libjpeg-emul-8c_1-1-x86_64 Message-ID: <20110410084345.9CE3E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f97e254b2bc5bfe465d8b391d5f8945c7e3615ab commit f97e254b2bc5bfe465d8b391d5f8945c7e3615ab Author: jercel Date: Sun Apr 10 10:43:30 2011 +0200 libjpeg-emul-8c_1-1-x86_64 version bump diff --git a/source/emul-extra/libjpeg-emul/FrugalBuild b/source/emul-extra/libjpeg-emul/FrugalBuild index 6466e44..ba598b7 100644 --- a/source/emul-extra/libjpeg-emul/FrugalBuild +++ b/source/emul-extra/libjpeg-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libjpeg-emul -pkgver=8b_1 +pkgver=8c_1 pkgrel=1 pkgdesc="Library of JPEG support functions for emulation of i686 on x86_64" url="ftp://ftp.uu.net/graphics/jpeg/" @@ -11,4 +11,4 @@ groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('d204e6b29e9d43fdddc8c563779ed020f9478931') +sha1sums=('7784fe7f430fa3645043b77f6d06597b086ae8e6') From jercel16 at gmail.com Sun Apr 10 10:45:07 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:45:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libxft-emul-2.2.0_2-1-x86_64 Message-ID: <20110410084507.C92DB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e705d33157e61ad4bcaf797388a586f62f4b793e commit e705d33157e61ad4bcaf797388a586f62f4b793e Author: jercel Date: Sun Apr 10 10:44:56 2011 +0200 libxft-emul-2.2.0_2-1-x86_64 version bump diff --git a/source/emul-extra/libxft-emul/FrugalBuild b/source/emul-extra/libxft-emul/FrugalBuild index b0e46e7..2ded8dd 100644 --- a/source/emul-extra/libxft-emul/FrugalBuild +++ b/source/emul-extra/libxft-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libxft-emul -pkgver=2.2.0_1 +pkgver=2.2.0_2 pkgrel=1 pkgdesc="Xorg XFT libraries for emulation of i686 on x86_64" url="http://www.gnu.org/software/tar/tar.html" @@ -10,4 +10,4 @@ depends=('libx11-emul' 'libxrender-emul' 'libxext-emul' 'fontconfig-emul' 'freet groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('1b7f58cdce870d6ac66cc8bee27075744ac331ac') +sha1sums=('b3d8392bbfda9f84e6c7364708b8821975cb0dc4') From jercel16 at gmail.com Sun Apr 10 10:46:48 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:46:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fontconfig-emul-2.8.0_4-1-x86_64 Message-ID: <20110410084648.3866C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e242203442264e0889ddc0fb4216f2ef8994e36a commit e242203442264e0889ddc0fb4216f2ef8994e36a Author: jercel Date: Sun Apr 10 10:46:21 2011 +0200 fontconfig-emul-2.8.0_4-1-x86_64 version bump diff --git a/source/emul-extra/fontconfig-emul/FrugalBuild b/source/emul-extra/fontconfig-emul/FrugalBuild index 5e68988..0c3dcd9 100644 --- a/source/emul-extra/fontconfig-emul/FrugalBuild +++ b/source/emul-extra/fontconfig-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=fontconfig-emul -pkgver=2.8.0_3 +pkgver=2.8.0_4 pkgrel=1 pkgdesc="A library for configuring and customizing font access for emulation of i686 on x86_64" url="http://fontconfig.org/" @@ -10,4 +10,4 @@ depends=('freetype2-emul' 'expat-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('e04bcd669f894b999dc34498529944b56e8ad7e3') +sha1sums=('8be95dc551b599bf53c27e4907ba65d089656dc7') From jercel16 at gmail.com Sun Apr 10 10:52:18 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:52:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: glibc-emul-2.13_2-1-x86_64 Message-ID: <20110410085218.618911358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e864dba15f32d3dff0a2d78ce5096abfcfe12f90 commit e864dba15f32d3dff0a2d78ce5096abfcfe12f90 Author: jercel Date: Sun Apr 10 10:48:55 2011 +0200 glibc-emul-2.13_2-1-x86_64 version bump diff --git a/source/emul-extra/glibc-emul/FrugalBuild b/source/emul-extra/glibc-emul/FrugalBuild index 09e983b..dab6c28 100644 --- a/source/emul-extra/glibc-emul/FrugalBuild +++ b/source/emul-extra/glibc-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=glibc-emul -pkgver=2.13_1 +pkgver=2.13_2 pkgrel=1 pkgdesc="GNU C Library for emulation of i686 on x86_64" url="http://www.gnu.org/software/libc/libc.html" @@ -10,4 +10,4 @@ depends=('glibc') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('44491fe3f42c9a9fbe90f7fce9f6e3a66bcbf2d3') +sha1sums=('1b974d8049979e68034fb9aa305f7c563fa39234') From jercel16 at gmail.com Sun Apr 10 10:53:37 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:53:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: frugalware-emul-1.4_2-1-x86_64 Message-ID: <20110410085337.C0CEA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=77cee351652e0e02e0df74c5d6cc0e274dcf56e6 commit 77cee351652e0e02e0df74c5d6cc0e274dcf56e6 Author: jercel Date: Sun Apr 10 10:53:31 2011 +0200 frugalware-emul-1.4_2-1-x86_64 version bump diff --git a/source/emul-extra/frugalware-emul/FrugalBuild b/source/emul-extra/frugalware-emul/FrugalBuild index 606f76e..12fda4c 100644 --- a/source/emul-extra/frugalware-emul/FrugalBuild +++ b/source/emul-extra/frugalware-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=frugalware-emul -pkgver=1.4_1 +pkgver=1.4_2 pkgrel=1 pkgdesc="Basic Frugalware Linux filesystem package (32 emulation)" url="http://frugalware.org" @@ -22,4 +22,4 @@ build() { ln -s . $Fdestdir/usr/lib/chroot32/usr/X11R6 || Fdie Fmkdir /usr/lib/chroot32/usr/share/fonts/X11 } -sha1sums=('26b85e80952d821c827cd0f13bfe9cef044ad139') +sha1sums=('674cab16134bda4cecd81360174c4d9dfa989ffb') From jercel16 at gmail.com Sun Apr 10 10:54:58 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:54:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libidl-emul-0.8.14_1-1-x86_64 Message-ID: <20110410085458.2A0421358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70c61a9c05fbb8511f5451fe45d37791377ef60e commit 70c61a9c05fbb8511f5451fe45d37791377ef60e Author: jercel Date: Sun Apr 10 10:54:47 2011 +0200 libidl-emul-0.8.14_1-1-x86_64 version bump diff --git a/source/emul-extra/libidl-emul/FrugalBuild b/source/emul-extra/libidl-emul/FrugalBuild index a662a88..dfa4be0 100644 --- a/source/emul-extra/libidl-emul/FrugalBuild +++ b/source/emul-extra/libidl-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libidl-emul -pkgver=0.8.13_1 +pkgver=0.8.14_1 pkgrel=1 pkgdesc="A library for creating trees of CORBA IDL files (32bit emul)" url="http://www.gnome.org" @@ -10,4 +10,4 @@ depends=('glib2-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('f2819a754b84c19a47960256540ab1fd91a8f571') +sha1sums=('753727e3147f4a3f9781940b66e2d8be1c4fcbdc') From jercel16 at gmail.com Sun Apr 10 10:56:25 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:56:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: shadow-emul-4.1.4.3_3-1-x86_64 Message-ID: <20110410085625.53BA91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fea1bc7dfb8ec6b219b709eca62b4667d89a8ad5 commit fea1bc7dfb8ec6b219b709eca62b4667d89a8ad5 Author: jercel Date: Sun Apr 10 10:55:58 2011 +0200 shadow-emul-4.1.4.3_3-1-x86_64 version bump diff --git a/source/emul-extra/shadow-emul/FrugalBuild b/source/emul-extra/shadow-emul/FrugalBuild index 60d4059..5c60a14 100644 --- a/source/emul-extra/shadow-emul/FrugalBuild +++ b/source/emul-extra/shadow-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=shadow-emul -pkgver=4.1.4.3_2 +pkgver=4.1.4.3_3 pkgrel=1 pkgdesc="Shadow password file utilities" url="http://shadow.pld.org.pl" @@ -10,4 +10,4 @@ depends=('glibc' 'pam-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('c9d8cb31a1338270867202736bd0c0d987e29411') +sha1sums=('cfba22ce831016ed185ef7fa0c95e29da6dd0a27') From devil505linux at gmail.com Sun Apr 10 10:57:36 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 10:57:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: identicurse-0.7.1-1-i686 * version bump Message-ID: <20110410085736.C263C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c31b59824047dca96ee81d03678e1cc54b76801 commit 3c31b59824047dca96ee81d03678e1cc54b76801 Author: Devil505 Date: Sun Apr 10 10:56:38 2011 +0200 identicurse-0.7.1-1-i686 * version bump diff --git a/source/apps-extra/identicurse/FrugalBuild b/source/apps-extra/identicurse/FrugalBuild index af77b22..0262b0f 100644 --- a/source/apps-extra/identicurse/FrugalBuild +++ b/source/apps-extra/identicurse/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=identicurse -pkgver=0.6.4 +pkgver=0.7.1 pkgrel=1 pkgdesc="Ncurses based identi.ca/status.net client." url="http://identicurse.net" @@ -12,12 +12,12 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" Finclude python -source=($url/release/0.6/$pkgname-$pkgver.tar.gz) -sha1sums=('e189f44f460249ebea3eadc8ccac1f8abde2b9f0') +source=($url/release/0.7/$pkgname-$pkgver.tar.gz) +sha1sums=('eb93d2487bbfda1371cb79e9d555cabb242567c3') build() { - Fcd "$pkgname-0.6" + Fcd "$pkgname-0.7" python setup.py install --prefix=/usr --install-data=/usr/share --root="$Fdestdir" || Fdie Finstallrel 644 conf/config.json $_F_python_libdir/$pkgname/config.json } From jercel16 at gmail.com Sun Apr 10 10:59:21 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 10:59:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-emul-2.24.4_1-1-x86_64 Message-ID: <20110410085921.92CAF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=839edf44acdd86a5e88f82deef6e576272177ff9 commit 839edf44acdd86a5e88f82deef6e576272177ff9 Author: jercel Date: Sun Apr 10 10:58:09 2011 +0200 gtk+2-emul-2.24.4_1-1-x86_64 version bump diff --git a/source/emul-extra/gtk+2-emul/FrugalBuild b/source/emul-extra/gtk+2-emul/FrugalBuild index c33de07..c6a16b1 100644 --- a/source/emul-extra/gtk+2-emul/FrugalBuild +++ b/source/emul-extra/gtk+2-emul/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: jercel pkgname=gtk+2-emul -pkgver=2.22.0_4 -pkgrel=2 +pkgver=2.24.4_1 +pkgrel=1 pkgdesc="The GTK+ Toolkit (2.x series) (32bit emul)" url="http://www.gtk.org/" depends=('libtiff-emul' 'atk-emul' 'libxi-emul' 'libxinerama-emul' 'fontconfig-emul' 'libjpeg-emul' \ @@ -12,4 +12,4 @@ depends=('libtiff-emul' 'atk-emul' 'libxi-emul' 'libxinerama-emul' 'fontconfig-e groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('6f27c2c6446bcfbcb4c08fdac39457331e66f691') +sha1sums=('fe2a44ec0c454dc9f05af1a7e183126725771082') From jercel16 at gmail.com Sun Apr 10 11:01:11 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 11:01:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: glib2-emul-2.28.5_1-1-x86_64 Message-ID: <20110410090111.BF8B41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eb90dd3a49f82b3b95d6708b619013e784812fbe commit eb90dd3a49f82b3b95d6708b619013e784812fbe Author: jercel Date: Sun Apr 10 11:00:18 2011 +0200 glib2-emul-2.28.5_1-1-x86_64 version bump diff --git a/source/emul-extra/glib2-emul/FrugalBuild b/source/emul-extra/glib2-emul/FrugalBuild index 9aeb152..2c9fac8 100644 --- a/source/emul-extra/glib2-emul/FrugalBuild +++ b/source/emul-extra/glib2-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=glib2-emul -pkgver=2.26.1_1 +pkgver=2.28.5_1 pkgrel=1 pkgdesc="Common C routines used by GTK+2 and other libraries" url="http://www.gtk.org" @@ -10,4 +10,4 @@ depends=('glibc-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('cd57b53b59ed08cc1596e35e9ed782d07c24f7c3') +sha1sums=('6ad7f9862ea5882d663e39bbea150d86f0e0bc45') From jercel16 at gmail.com Sun Apr 10 11:02:16 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 11:02:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-engines-emul-2.20.2_2-1-x86_64 Message-ID: <20110410090216.6990C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6cff230b655b43f33cb31cd3c2879b15241534df commit 6cff230b655b43f33cb31cd3c2879b15241534df Author: jercel Date: Sun Apr 10 11:02:13 2011 +0200 gtk+2-engines-emul-2.20.2_2-1-x86_64 version bump diff --git a/source/emul-extra/gtk+2-engines-emul/FrugalBuild b/source/emul-extra/gtk+2-engines-emul/FrugalBuild index 5bca518..6294241 100644 --- a/source/emul-extra/gtk+2-engines-emul/FrugalBuild +++ b/source/emul-extra/gtk+2-engines-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gtk+2-engines-emul -pkgver=2.20.2_1 +pkgver=2.20.2_2 pkgrel=1 pkgdesc="Theme engines for GTK+2 (32bit emul)" url="http://www.gnome.org/" @@ -10,4 +10,4 @@ depends=('gtk+2-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('7b9acc94cb179b01301860187f27f05e7ca22d1a') +sha1sums=('8fc037d7ad836159fc9789ee258eb3b5aabfb380') From jercel16 at gmail.com Sun Apr 10 11:03:08 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 11:03:08 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mesa-emul-7.10_4-1-x86_64 Message-ID: <20110410090308.DA7B41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c072627f34e469fbb1235bc3f85ba10bed85f671 commit c072627f34e469fbb1235bc3f85ba10bed85f671 Author: jercel Date: Sun Apr 10 11:02:56 2011 +0200 mesa-emul-7.10_4-1-x86_64 version bump diff --git a/source/emul-extra/mesa-emul/FrugalBuild b/source/emul-extra/mesa-emul/FrugalBuild index 4002c23..f250261 100644 --- a/source/emul-extra/mesa-emul/FrugalBuild +++ b/source/emul-extra/mesa-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=mesa-emul -pkgver=7.10_3 +pkgver=7.10_4 pkgrel=1 pkgdesc="MESA libraries for emulation of i686 on x86_64" url="http://mesa3d.sf.net" @@ -11,4 +11,4 @@ depends=('libx11-emul' 'libxext-emul' 'expat-emul' 'libxxf86vm-emul' \ groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('002f950270cca030f26c9aecd7ad4ddfb6b7ea67') +sha1sums=('d5189d03827befdb6005161718f1a7c31bbcd26e') From jercel16 at gmail.com Sun Apr 10 11:04:28 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 11:04:28 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gdk-pixbuf2-emul-2.23.3_1-1-x86_64 Message-ID: <20110410090428.909FA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=552d76165cfa13b55eb425291ef4c0af6d05ea57 commit 552d76165cfa13b55eb425291ef4c0af6d05ea57 Author: jercel Date: Sun Apr 10 11:04:09 2011 +0200 gdk-pixbuf2-emul-2.23.3_1-1-x86_64 version bump diff --git a/source/emul-extra/gdk-pixbuf2-emul/FrugalBuild b/source/emul-extra/gdk-pixbuf2-emul/FrugalBuild index 2dfec36..4878834 100644 --- a/source/emul-extra/gdk-pixbuf2-emul/FrugalBuild +++ b/source/emul-extra/gdk-pixbuf2-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gdk-pixbuf2-emul -pkgver=2.22.1_1 +pkgver=2.23.3_1 pkgrel=1 pkgdesc="An image loading library (32bit emul)" url="http://www.gtk.org" @@ -10,4 +10,4 @@ depends=('libjpeg-emul' 'libpng-emul' 'libtiff-emul') groups=('emul-extra') archs=('!i686' '!ppc' 'x86_64') Finclude emul -sha1sums=('10aa6e551454e4331a133bb713f5f1bd475b8402') +sha1sums=('fea7674d7b4db860510da64067095111c63afadc') From jercel16 at gmail.com Sun Apr 10 11:07:17 2011 From: jercel16 at gmail.com (jercel) Date: Sun, 10 Apr 2011 11:07:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gettext-emul-0.18.1.1_2-1-x86_64 Message-ID: <20110410090717.1E93A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0ec5a3d4ffa993862d0e0d35812ad9e351a01f59 commit 0ec5a3d4ffa993862d0e0d35812ad9e351a01f59 Author: jercel Date: Sun Apr 10 11:05:43 2011 +0200 gettext-emul-0.18.1.1_2-1-x86_64 version bump diff --git a/source/emul-extra/gettext-emul/FrugalBuild b/source/emul-extra/gettext-emul/FrugalBuild index eb12e23..da84f39 100644 --- a/source/emul-extra/gettext-emul/FrugalBuild +++ b/source/emul-extra/gettext-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gettext-emul -pkgver=0.18.1.1_1 +pkgver=0.18.1.1_2 pkgrel=1 pkgdesc="GNU internationalization library (32bit emul)" url="http://www.gnu.org/software/gettext" @@ -10,4 +10,4 @@ depends=('glibc-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('0ee0fc973a082bae411d892a91cd704850a0da55') +sha1sums=('c8eec5ca2a4114205bf49f264a0ca21085ec7aee') From devil505linux at gmail.com Sun Apr 10 11:10:16 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 11:10:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tmwmusic-0.3-1-i686 * version bump Message-ID: <20110410091016.6EF0A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=72eb59d9888e61885fdb4d7e9d5a5f0faf05f713 commit 72eb59d9888e61885fdb4d7e9d5a5f0faf05f713 Author: Devil505 Date: Sun Apr 10 11:09:21 2011 +0200 tmwmusic-0.3-1-i686 * version bump diff --git a/source/games-extra/tmwmusic/FrugalBuild b/source/games-extra/tmwmusic/FrugalBuild index 0cce76d..a54c3d0 100644 --- a/source/games-extra/tmwmusic/FrugalBuild +++ b/source/games-extra/tmwmusic/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=tmwmusic -pkgver=0.2 -pkgrel=3 +pkgver=0.3 +pkgrel=1 pkgdesc="Music for The Mana World." _F_sourceforge_dirname="themanaworld" _F_sourceforge_realname="TMW Music" @@ -12,7 +12,7 @@ url="http://themanaworld.org" depends=() groups=('games-extra') archs=('i686' 'x86_64') -sha1sums=('c60eb1a55222f3ade8ddf04f619998b5e3cb1d08') +sha1sums=('a712a920708271e97cc684d695c9202e1822c187') build() { Fcd From bouleetbil at frogdev.info Sun Apr 10 11:24:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:24:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-media-2.91.2-7-x86_64 *fix dep Message-ID: <20110410092422.B13A71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=31324caff1d75f44256e498d41d33cfa9e97ac4f commit 31324caff1d75f44256e498d41d33cfa9e97ac4f Author: bouleetbil Date: Sun Apr 10 11:23:54 2011 +0200 gnome-media-2.91.2-7-x86_64 *fix dep diff --git a/source/gnome/gnome-media/FrugalBuild b/source/gnome/gnome-media/FrugalBuild index 2a26b1d..c76cb11 100644 --- a/source/gnome/gnome-media/FrugalBuild +++ b/source/gnome/gnome-media/FrugalBuild @@ -3,18 +3,19 @@ pkgname=gnome-media pkgver=2.91.2 -pkgrel=6 +pkgrel=7 pkgdesc="GNOME media tools" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gst-plugins-good>=0.10.4-2' 'rarian>=0.8.0' \ 'gst-plugins-base-oil' 'gst-plugins-good-gconf' \ - 'libcanberra-gtk' 'unique' 'libglade3-gnome' 'libgnome-media-profiles') + 'libcanberra-gtk' 'unique' 'libgnome-media-profiles') makedepends=('intltool' 'gnome-doc-utils' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_iconcache="y" _F_gnome_desktop="y" _F_gnome_scrollkeeper="y" +_F_gnome_devel="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-ipv6" sha1sums=('a70789dcab3a1e9c7cba5c7388759e90580c38fa') From achevaux at gmail.com Sun Apr 10 11:25:03 2011 From: achevaux at gmail.com (centuri0) Date: Sun, 10 Apr 2011 11:25:03 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ksaolaji-0.1-1-i686 Message-ID: <20110410092503.DD7F41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1f7aa358afe0342d47a4250d40681cc2fcd1ddfe commit 1f7aa358afe0342d47a4250d40681cc2fcd1ddfe Author: centuri0 Date: Sun Apr 10 11:23:46 2011 +0200 ksaolaji-0.1-1-i686 * new package diff --git a/source/kde-extra/ksaolaji/FrugalBuild b/source/kde-extra/ksaolaji/FrugalBuild new file mode 100644 index 0000000..faf1051 --- /dev/null +++ b/source/kde-extra/ksaolaji/FrugalBuild @@ -0,0 +1,18 @@ +# Compiling Time: 0.17 SBU +# Maintainer: centuri0 + +pkgname=ksaolaji +pkgver=0.1 +pkgrel=1 +pkgdesc="A system cleaner for KDE." +depends=('libnepomuk' 'libkross' 'libknewstuff' 'libthreadweaver' 'phonon') +makedepends=("kdebase-workspace-compiletime>=$_F_kde_ver" '') +groups=(kde-extra) +archs=('i686') +Finclude kde cmake +url="http://kde-apps.org/content/show.php/?content=140679" +source=(http://kde-apps.org/CONTENT/content-files/140679-$pkgname-$pkgver.tar.bz2) +up2date="lynx -dump "http://www.kde-apps.org/content/show.php?content=140679" | grep -v http | sed -n 143p | cut -c7-9" +sha1sums=('c8ca72c42546e775692bd122ea96d481ddfa1ef5') + +# optimization OK From bouleetbil at frogdev.info Sun Apr 10 11:26:55 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:26:55 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: clutter-gst *move to xlib (cheese) Message-ID: <20110410092655.DCE901358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=03ccafda3e712999a86b5226a794311245ed02b8 commit 03ccafda3e712999a86b5226a794311245ed02b8 Author: bouleetbil Date: Sun Apr 10 11:26:10 2011 +0200 clutter-gst *move to xlib (cheese) diff --git a/source/xlib-extra/clutter-gst/FrugalBuild b/source/xlib/clutter-gst/FrugalBuild similarity index 94% rename from source/xlib-extra/clutter-gst/FrugalBuild rename to source/xlib/clutter-gst/FrugalBuild index 86dda0f..2d2a464 100644 --- a/source/xlib-extra/clutter-gst/FrugalBuild +++ b/source/xlib/clutter-gst/FrugalBuild @@ -4,12 +4,13 @@ pkgname=clutter-gst pkgver=1.3.8 -pkgrel=1 +pkgrel=2 pkgdesc="Gstreamer bindings for the clutter framework." depends=('clutter>=1.6.14' 'pango' 'zlib' 'gst-plugins-base' 'libxfixes' 'libxi' 'libxxf86vm' 'libdrm') Finclude clutter makedepends=('gobject-introspection') sha1sums=('ce25529ad1c12ea42cbd0e48ffc2106a139161d7') +groups=('xlib') # optimization OK From bouleetbil at frogdev.info Sun Apr 10 11:32:06 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:32:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: upgrade *added gst plugins Message-ID: <20110410093206.BBE731358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f046b20f6022337b9d5f293a30b2ee5d92c44522 commit f046b20f6022337b9d5f293a30b2ee5d92c44522 Author: bouleetbil Date: Sun Apr 10 11:31:27 2011 +0200 upgrade *added gst plugins diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 46bf00b..aadf8b1 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -35,7 +35,7 @@ file /etc/fstab the `smb` filesystem type has to be changed to `cifs`. //them: //---- -//# pacman-g2 -Rd gvfs-gconf +//# pacman-g2 -Rd gvfs-gconf gst-plugins-bad-alsa gst-plugins-bad-jack gst-plugins-bad-metadata //---- == Upgrading the system From bouleetbil at frogdev.info Sun Apr 10 11:42:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:42:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gupnp-vala-0.7.5-2-x86_64 *fix dep Message-ID: <20110410094242.E6CAD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0908ee9fe1def53aa4ec8dcf4b238f320646c30b commit 0908ee9fe1def53aa4ec8dcf4b238f320646c30b Author: bouleetbil Date: Sun Apr 10 11:42:23 2011 +0200 gupnp-vala-0.7.5-2-x86_64 *fix dep diff --git a/source/xlib-extra/gupnp-vala/FrugalBuild b/source/xlib-extra/gupnp-vala/FrugalBuild index 7b8d18d..d3e8ca9 100644 --- a/source/xlib-extra/gupnp-vala/FrugalBuild +++ b/source/xlib-extra/gupnp-vala/FrugalBuild @@ -3,9 +3,9 @@ pkgname=gupnp-vala pkgver=0.7.5 -pkgrel=1 +pkgrel=2 pkgdesc="GUPnP vala binding" -depends=('vala' 'gupnp-av>=0.6.0' 'gupnp-ui') +depends=('vala' 'gupnp-av>=0.6.0') url="http://www.gupnp.org" source=(http://www.gupnp.org/sites/all/files/sources/$pkgname-$pkgver.tar.gz) up2date="Flasttar http://www.gupnp.org/download" From bouleetbil at frogdev.info Sun Apr 10 11:45:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:45:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: telepthy-stream-engine *moved to xapps empathy Message-ID: <20110410094538.D61FB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d26e49b58f854942106128ed84fff5f673b2097f commit d26e49b58f854942106128ed84fff5f673b2097f Author: bouleetbil Date: Sun Apr 10 11:45:08 2011 +0200 telepthy-stream-engine *moved to xapps empathy diff --git a/source/xapps-extra/telepathy-stream-engine/FrugalBuild b/source/xapps/telepathy-stream-engine/FrugalBuild similarity index 95% rename from source/xapps-extra/telepathy-stream-engine/FrugalBuild rename to source/xapps/telepathy-stream-engine/FrugalBuild index fccf788..2df8b0d 100644 --- a/source/xapps-extra/telepathy-stream-engine/FrugalBuild +++ b/source/xapps/telepathy-stream-engine/FrugalBuild @@ -4,12 +4,12 @@ pkgname=telepathy-stream-engine pkgver=0.5.15 -pkgrel=3 +pkgrel=4 pkgdesc="A stream engine for Telepathy" url="http://telepathy.freedesktop.org/wiki/" depends=('libxml2>=2.7.8' 'libtelepathy>=0.3.3' 'farsight2>=0.0.9-1' 'dbus-glib>=0.78' 'libx11' 'imagemagick>=6.6.1_5' \ 'telepathy-farsight>=0.0.3-1' 'hal') -groups=('xapps-extra') +groups=('xapps') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/stream-engine/ | Flasttar" source=(http://telepathy.freedesktop.org/releases/stream-engine/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 11:49:32 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:49:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: telepathy-farsight *moved to xlib empathy Message-ID: <20110410094932.77D0E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=947dbaebad6b53ec857d726171ef6870da64ba1e commit 947dbaebad6b53ec857d726171ef6870da64ba1e Author: bouleetbil Date: Sun Apr 10 11:48:12 2011 +0200 telepathy-farsight *moved to xlib empathy diff --git a/source/xlib-extra/telepathy-farsight/FrugalBuild b/source/xlib/telepathy-farsight/FrugalBuild similarity index 94% rename from source/xlib-extra/telepathy-farsight/FrugalBuild rename to source/xlib/telepathy-farsight/FrugalBuild index 5ac1a90..83b8fc0 100644 --- a/source/xlib-extra/telepathy-farsight/FrugalBuild +++ b/source/xlib/telepathy-farsight/FrugalBuild @@ -3,11 +3,11 @@ pkgname=telepathy-farsight pkgver=0.0.16 -pkgrel=2 +pkgrel=3 pkgdesc="A farsight plugin for Telepathy" url="http://telepathy.freedesktop.org/wiki/" depends=('libxml2>=2.7.8' 'libtelepathy>=0.3.3' 'farsight2>=0.0.16' 'telepathy-glib>=0.9.1' 'gst-python') -groups=('xlib-extra') +groups=('xlib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/$pkgname/ | Flasttar" source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 11:55:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:55:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-bluetooth-3.0.0-2-x86_64 *remove obex-data-server but support is better with it Message-ID: <20110410095554.7C3DF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c4b7ec13c10c4b96e3fb02f830957029e4ce7667 commit c4b7ec13c10c4b96e3fb02f830957029e4ce7667 Author: bouleetbil Date: Sun Apr 10 11:55:19 2011 +0200 gnome-bluetooth-3.0.0-2-x86_64 *remove obex-data-server but support is better with it diff --git a/source/gnome/gnome-bluetooth/FrugalBuild b/source/gnome/gnome-bluetooth/FrugalBuild index 00a87ad..3363857 100644 --- a/source/gnome/gnome-bluetooth/FrugalBuild +++ b/source/gnome/gnome-bluetooth/FrugalBuild @@ -3,11 +3,11 @@ pkgname=gnome-bluetooth pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="The GNOME Bluetooth Subsystem." url="http://www.usefulinc.com/software/gnome-bluetooth/" makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils' 'gobject-introspection') -depends=('libxml2>=2.7.8' 'bluez' 'obex-data-server' 'gnome-control-center' \ +depends=('libxml2>=2.7.8' 'bluez' 'gnome-control-center' \ 'librsvg>=2.26.0' 'unique') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From devil505linux at gmail.com Sun Apr 10 11:56:33 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 11:56:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gbrainy-1.64-1-i686 * version bump Message-ID: <20110410095633.7BA0F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7734b2e607ad077752916e04d4ee5f5f07859f25 commit 7734b2e607ad077752916e04d4ee5f5f07859f25 Author: Devil505 Date: Sun Apr 10 11:55:18 2011 +0200 gbrainy-1.64-1-i686 * version bump diff --git a/source/gnome-extra/gbrainy/FrugalBuild b/source/gnome-extra/gbrainy/FrugalBuild index 9ccab31..2b90e38 100644 --- a/source/gnome-extra/gbrainy/FrugalBuild +++ b/source/gnome-extra/gbrainy/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gbrainy -pkgver=1.62 +pkgver=1.64 pkgrel=1 pkgdesc="brain teaser game and trainer" url="http://live.gnome.org/$pkgname" @@ -17,7 +17,7 @@ Finclude gnome-scriptlet groups=('gnome-extra') up2date="lynx -dump $url | Flasttar" source=(http://gent.softcatala.org/jmas/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('715d45e36ef84da5e17b5783b5fbf4d08d0dd201') +sha1sums=('6dc4bb93989c2abcdd6d71ce85dbe4a604f71b97') build() { From bouleetbil at frogdev.info Sun Apr 10 11:58:49 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 11:58:49 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: openssh-5.8p1-2-x86_64 *moved openssh-askpass to xapps for gdu Message-ID: <20110410095849.65D2B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=db1dd5da6166cb65fd80128a38f187401fd8aebe commit db1dd5da6166cb65fd80128a38f187401fd8aebe Author: bouleetbil Date: Sun Apr 10 11:58:15 2011 +0200 openssh-5.8p1-2-x86_64 *moved openssh-askpass to xapps for gdu diff --git a/source/network/openssh/FrugalBuild b/source/network/openssh/FrugalBuild index e4bb528..1d6e3bd 100644 --- a/source/network/openssh/FrugalBuild +++ b/source/network/openssh/FrugalBuild @@ -4,7 +4,7 @@ pkgname=openssh pkgver=5.8p1 -pkgrel=1 +pkgrel=2 pkgdesc='Secure Shell daemon and clients' url="http://www.openssh.com/" backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/sysconfig/tunnel') @@ -25,7 +25,7 @@ subpkgs=('openssh-askpass') subdescs=('X11 passphrase dialog for OpenSSH') subdepends=("gtk+2>=2.20.0-2") subrodepends=("openssh") -subgroups=('xapps-extra') +subgroups=('xapps') subarchs=('x86_64 i686 ppc') build() From bouleetbil at frogdev.info Sun Apr 10 12:02:34 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:02:34 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libcanberra-0.28-2-x86_64 *libcanberra-gtk2 back to gnome (metacity) Message-ID: <20110410100234.9E3E71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f04ee2a01e5b9d6d5a8d737f677a3cb9bc9ee96 commit 2f04ee2a01e5b9d6d5a8d737f677a3cb9bc9ee96 Author: bouleetbil Date: Sun Apr 10 12:01:53 2011 +0200 libcanberra-0.28-2-x86_64 *libcanberra-gtk2 back to gnome (metacity) diff --git a/source/multimedia/libcanberra/FrugalBuild b/source/multimedia/libcanberra/FrugalBuild index 8cdc1e8..23c7727 100644 --- a/source/multimedia/libcanberra/FrugalBuild +++ b/source/multimedia/libcanberra/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libcanberra pkgver=0.28 -pkgrel=1 +pkgrel=2 pkgdesc="libcanberra is an implementation of the XDG Sound Theme and Name Specifications." url="http://0pointer.de/lennart/projects/$pkgname/" depends=('libvorbis') @@ -23,7 +23,7 @@ subpkgs=("libcanberra-alsa" "libcanberra-gst" "libcanberra-gtk" "libcanberra-pul subrodepends=("libcanberra" "libcanberra" "libcanberra" "libcanberra" "libcanberra") subdepends=("alsa-lib" "gstreamer" "libxml2>=2.7.8 gtk+3>=2.99.3 gconf" "pulseaudio-hal pulseaudio-x11" "gtk+2 gconf") subdescs=('Alsa libcanberra' 'gstreamer libcanberra' 'GTK+3 libcanberra' 'pulseaudio libcanberra' 'GTK+2 libcanberra') -subgroups=('multimedia' 'xmultimedia' 'gnome' 'xmultimedia-extra' 'gnome-extra') +subgroups=('multimedia' 'xmultimedia' 'gnome' 'xmultimedia-extra' 'gnome') subarchs=('i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc') subinstall=("" "" "$_F_gnome_scriptlet" "" "") From devil505linux at gmail.com Sun Apr 10 12:17:18 2011 From: devil505linux at gmail.com (Devil505) Date: Sun, 10 Apr 2011 12:17:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: synapse-0.2.6-1-i686 * version bump Message-ID: <20110410101718.0DDB41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=08998a1af95fc7a23e86b3a4a27363c954218d8f commit 08998a1af95fc7a23e86b3a4a27363c954218d8f Author: Devil505 Date: Sun Apr 10 12:13:24 2011 +0200 synapse-0.2.6-1-i686 * version bump diff --git a/source/gnome-extra/synapse/FrugalBuild b/source/gnome-extra/synapse/FrugalBuild index 636f2d6..3325335 100644 --- a/source/gnome-extra/synapse/FrugalBuild +++ b/source/gnome-extra/synapse/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=synapse -pkgver=0.2.4.1 +pkgver=0.2.6 _pkgmainver=0.2 pkgrel=1 pkgdesc="Synapse is a semantic launcher written in Vala " @@ -16,5 +16,5 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/$_pkgmainver/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('aa15123fe3960f8204e68bbfc4c35d4db48144ea') +sha1sums=('a503276579e73945ab59d8f4c2e42a1916e5fcaf') From vmiklos at frugalware.org Sun Apr 10 12:22:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 12:22:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libksba-1.2.0-1-i686 Message-ID: <20110410102222.60E621358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2bc76110bcf28c818cda0e0d384f2376a03ddf4a commit 2bc76110bcf28c818cda0e0d384f2376a03ddf4a Author: Miklos Vajna Date: Sat Apr 9 23:25:45 2011 +0200 libksba-1.2.0-1-i686 - version bump diff --git a/source/lib/libksba/FrugalBuild b/source/lib/libksba/FrugalBuild index 4b058a5..936089c 100644 --- a/source/lib/libksba/FrugalBuild +++ b/source/lib/libksba/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=libksba -pkgver=1.1.0 +pkgver=1.2.0 pkgrel=1 pkgdesc="Libksba is a CMS and X.509 access library." url="http://www.gnupg.org/related_software/libksba/" From vmiklos at frugalware.org Sun Apr 10 12:22:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 12:22:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libssh2-1.2.8-1-i686 Message-ID: <20110410102222.4EBD51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9f1fc3907a4e66b3467850a1fb5cfa2bec2e231b commit 9f1fc3907a4e66b3467850a1fb5cfa2bec2e231b Author: Miklos Vajna Date: Sat Apr 9 23:25:12 2011 +0200 libssh2-1.2.8-1-i686 - version bump diff --git a/source/lib/libssh2/FrugalBuild b/source/lib/libssh2/FrugalBuild index 8c86626..0f69d97 100644 --- a/source/lib/libssh2/FrugalBuild +++ b/source/lib/libssh2/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=libssh2 -pkgver=1.2.7 +pkgver=1.2.8 pkgrel=1 pkgdesc="libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts." url="http://www.libssh2.org" From vmiklos at frugalware.org Sun Apr 10 12:22:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 12:22:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: lftp-4.2.1-1-i686 Message-ID: <20110410102222.73F9A135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1bc196b6f8521141eb37a293ff7fd8eeadb48ad2 commit 1bc196b6f8521141eb37a293ff7fd8eeadb48ad2 Author: Miklos Vajna Date: Sat Apr 9 23:33:50 2011 +0200 lftp-4.2.1-1-i686 - version bump diff --git a/source/network-extra/lftp/FrugalBuild b/source/network-extra/lftp/FrugalBuild index 3666c54..db7c943 100644 --- a/source/network-extra/lftp/FrugalBuild +++ b/source/network-extra/lftp/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=lftp -pkgver=4.2.0 +pkgver=4.2.1 pkgrel=1 pkgdesc="A sophisticated ftp/http client, file transfer program" url="http://lftp.yar.ru/" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64') backup=('etc/lftp.conf') up2date="Flasttar http://lftp.yar.ru/get.html" source=(http://ftp.yars.free.net/pub/source/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('51ae345d22c6b4688984ed29dff6a6eed453c475') +sha1sums=('3bc9d5e82774f5006fc21d1f61f3c8fac921f6f4') # optimization OK From vmiklos at frugalware.org Sun Apr 10 12:22:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 12:22:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: proftpd-1.3.3-7-i686 Message-ID: <20110410102222.68A62135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b152abfd24846a515bb16cded4f8780eaf1bd261 commit b152abfd24846a515bb16cded4f8780eaf1bd261 Author: Miklos Vajna Date: Sat Apr 9 23:29:28 2011 +0200 proftpd-1.3.3-7-i686 - update to patchlevel 'e' diff --git a/source/network-extra/proftpd/FrugalBuild b/source/network-extra/proftpd/FrugalBuild index 5b50446..41a3121 100644 --- a/source/network-extra/proftpd/FrugalBuild +++ b/source/network-extra/proftpd/FrugalBuild @@ -4,8 +4,8 @@ pkgname=proftpd pkgver=1.3.3 -pkgextraver=d -pkgrel=6 +pkgextraver=e +pkgrel=7 pkgdesc="Highly configurable GPL-licensed FTP server software" url="http://www.proftpd.org/" groups=('network-extra') From vmiklos at frugalware.org Sun Apr 10 12:22:22 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 12:22:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: NEWS: add kernel2638 and firefox4 Message-ID: <20110410102222.7E507135844C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=db296a8fe93630c42b437100f6b678a6e63ef802 commit db296a8fe93630c42b437100f6b678a6e63ef802 Author: Miklos Vajna Date: Sun Apr 10 12:09:10 2011 +0200 NEWS: add kernel2638 and firefox4 diff --git a/NEWS b/NEWS index 5f4da11..21f0473 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,8 @@ Frugalware (1.5) * 1.0 release of the core EFL libraries (details) * KDE 4.6.2 * Gnome 3.0 + * Linux kernel 2.6.38 + * Firefox 4.0 * New features: * systemd is now the default init system * Initial ARM port From bouleetbil at frogdev.info Sun Apr 10 12:43:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mobile-broadband-provider-info *moved to lib (nm-applet) Message-ID: <20110410104357.770071358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bc78ea8e91e28033f4b76698a031be3106fe4373 commit bc78ea8e91e28033f4b76698a031be3106fe4373 Author: bouleetbil Date: Sun Apr 10 12:29:03 2011 +0200 mobile-broadband-provider-info *moved to lib (nm-applet) diff --git a/source/lib-extra/mobile-broadband-provider-info/FrugalBuild b/source/lib/mobile-broadband-provider-info/FrugalBuild similarity index 93% rename from source/lib-extra/mobile-broadband-provider-info/FrugalBuild rename to source/lib/mobile-broadband-provider-info/FrugalBuild index 8283275..8865dbc 100644 --- a/source/lib-extra/mobile-broadband-provider-info/FrugalBuild +++ b/source/lib/mobile-broadband-provider-info/FrugalBuild @@ -3,9 +3,9 @@ pkgname=mobile-broadband-provider-info pkgver=20110218 -pkgrel=1 +pkgrel=2 pkgdesc="Contains service provider specific settings of mobile broadband providers in different countries." -groups=('lib-extra') +groups=('lib') depends=() archs=('i686' 'x86_64' 'ppc') _F_gnome_devel="y" From bouleetbil at frogdev.info Sun Apr 10 12:43:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pycrypto *moved to devel (papyon msn support telepathy) Message-ID: <20110410104357.8A0661358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f0d0f82b0d4f2b36edb23dcf0243ab6bbfa49743 commit f0d0f82b0d4f2b36edb23dcf0243ab6bbfa49743 Author: bouleetbil Date: Sun Apr 10 12:30:27 2011 +0200 pycrypto *moved to devel (papyon msn support telepathy) diff --git a/source/devel-extra/pycrypto/FrugalBuild b/source/devel/pycrypto/FrugalBuild similarity index 93% rename from source/devel-extra/pycrypto/FrugalBuild rename to source/devel/pycrypto/FrugalBuild index fe63d19..d6b5f95 100644 --- a/source/devel-extra/pycrypto/FrugalBuild +++ b/source/devel/pycrypto/FrugalBuild @@ -3,12 +3,12 @@ pkgname=pycrypto pkgver=2.3 -pkgrel=1 +pkgrel=2 pkgdesc="Python Cryptography Toolkit" url="http://www.dlitz.net/software/pycrypto/" up2date="Flasttar $url" source=(http://ftp.dlitz.net/pub/dlitz/crypto/$pkgname/$pkgname-$pkgver.tar.gz) -groups=('devel-extra') +groups=('devel') archs=('i686' 'x86_64' 'ppc') depends=('python' 'gmp>=5.0.1') sha1sums=('96b33b77e729893bd0837a09a6aa7a12b5070037') From bouleetbil at frogdev.info Sun Apr 10 12:43:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pyopenssl *moved to devel (papyon) Message-ID: <20110410104357.A5BD1135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fecc91fcb5170171252f849a1d885a40348eb631 commit fecc91fcb5170171252f849a1d885a40348eb631 Author: bouleetbil Date: Sun Apr 10 12:32:04 2011 +0200 pyopenssl *moved to devel (papyon) diff --git a/source/devel-extra/pyopenssl/FrugalBuild b/source/devel/pyopenssl/FrugalBuild similarity index 93% rename from source/devel-extra/pyopenssl/FrugalBuild rename to source/devel/pyopenssl/FrugalBuild index cc9d4f7..8d1c86a 100644 --- a/source/devel-extra/pyopenssl/FrugalBuild +++ b/source/devel/pyopenssl/FrugalBuild @@ -4,13 +4,13 @@ pkgname=pyopenssl pkgver=0.9 -pkgrel=3 +pkgrel=4 pkgdesc="Python interface to the OpenSSL library" _F_sourceforge_name="pyOpenSSL" Finclude sourceforge url="http://pyopenssl.sourceforge.net/" license="LGPL2.1" -groups=('devel-extra') +groups=('devel') archs=('i686' 'x86_64' 'ppc') depends=('python' 'openssl>=1.0.0') _F_cd_path="$_F_sourceforge_name-$pkgver" From bouleetbil at frogdev.info Sun Apr 10 12:43:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libatomic_ops move to lib (pulseaudio) Message-ID: <20110410104357.C33AB135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a9bf893738816d6cd350733beae1561c22a4a46e commit a9bf893738816d6cd350733beae1561c22a4a46e Author: bouleetbil Date: Sun Apr 10 12:34:21 2011 +0200 libatomic_ops move to lib (pulseaudio) diff --git a/source/lib-extra/libatomic_ops/FrugalBuild b/source/lib/libatomic_ops/FrugalBuild similarity index 92% rename from source/lib-extra/libatomic_ops/FrugalBuild rename to source/lib/libatomic_ops/FrugalBuild index 6e0ea38..e3a3609 100644 --- a/source/lib-extra/libatomic_ops/FrugalBuild +++ b/source/lib/libatomic_ops/FrugalBuild @@ -4,11 +4,11 @@ pkgname=libatomic_ops pkgver=1.2 -pkgrel=1 +pkgrel=2 pkgdesc="Implementation for atomic memory update operations" url="http://www.hpl.hp.com/research/linux/atomic_ops/" -groups=('lib-extra') -depends=('') +groups=('lib') +depends=() archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://www.hpl.hp.com/research/linux/atomic_ops/download/ |Flasttar" source=(http://www.hpl.hp.com/research/linux/atomic_ops/download/libatomic_ops-1.2.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 12:43:58 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: notify-python *back to xlib (system-config-printer already use by kde) Message-ID: <20110410104358.1A385135844D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ba7d2566e27e5f7a052223560e1fafed40627d8c commit ba7d2566e27e5f7a052223560e1fafed40627d8c Author: bouleetbil Date: Sun Apr 10 12:40:44 2011 +0200 notify-python *back to xlib (system-config-printer already use by kde) diff --git a/source/xlib-extra/notify-python/FrugalBuild b/source/xlib/notify-python/FrugalBuild similarity index 95% rename from source/xlib-extra/notify-python/FrugalBuild rename to source/xlib/notify-python/FrugalBuild index 42bcdd8..29beed4 100644 --- a/source/xlib-extra/notify-python/FrugalBuild +++ b/source/xlib/notify-python/FrugalBuild @@ -3,11 +3,11 @@ pkgname=notify-python pkgver=0.1.1 -pkgrel=11 +pkgrel=12 pkgdesc="Galago Desktop Presence Framework - Python Notification Bindings" url="http://www.galago-project.org" depends=('libxml2>=2.7.8' 'libnotify>=0.7' 'pygtk>=pygtk-2.16.0-4' 'dbus-python>=0.80.2') -groups=('xlib-extra') +groups=('xlib') options=('scriptlet') archs=('i686' 'x86_64' 'ppc') source=($url/files/releases/source/$pkgname/$pkgname-$pkgver.tar.bz2 \ diff --git a/source/xlib-extra/notify-python/libnotify07.diff b/source/xlib/notify-python/libnotify07.diff similarity index 100% rename from source/xlib-extra/notify-python/libnotify07.diff rename to source/xlib/notify-python/libnotify07.diff From bouleetbil at frogdev.info Sun Apr 10 12:43:58 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:43:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-js-common *moved to gnome (seed) Message-ID: <20110410104358.04BD0135844C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cb5d496167f2f0d1d8012eb37cfeeeec0f8b32a1 commit cb5d496167f2f0d1d8012eb37cfeeeec0f8b32a1 Author: bouleetbil Date: Sun Apr 10 12:36:04 2011 +0200 gnome-js-common *moved to gnome (seed) diff --git a/source/gnome-extra/gnome-js-common/FrugalBuild b/source/gnome/gnome-js-common/FrugalBuild similarity index 92% rename from source/gnome-extra/gnome-js-common/FrugalBuild rename to source/gnome/gnome-js-common/FrugalBuild index 6258ddb..b0ccb25 100644 --- a/source/gnome-extra/gnome-js-common/FrugalBuild +++ b/source/gnome/gnome-js-common/FrugalBuild @@ -3,11 +3,11 @@ pkgname=gnome-js-common pkgver=0.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="Common JavaScript modules for GNOME." depends=('glibc') makedepends=('gtk-doc' 'intltool') -groups=('gnome-extra') +groups=('gnome') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') _F_gnome_devel="y" From bouleetbil at frogdev.info Sun Apr 10 12:56:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:56:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: telepathy-python *moved to devel Message-ID: <20110410105637.7F2D61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f69efa572d34df5cfa99283898777e3c1a6a1c47 commit f69efa572d34df5cfa99283898777e3c1a6a1c47 Author: bouleetbil Date: Sun Apr 10 12:46:24 2011 +0200 telepathy-python *moved to devel diff --git a/source/devel-extra/telepathy-python/FrugalBuild b/source/devel/telepathy-python/FrugalBuild similarity index 94% rename from source/devel-extra/telepathy-python/FrugalBuild rename to source/devel/telepathy-python/FrugalBuild index 925b889..5bf8aa5 100644 --- a/source/devel-extra/telepathy-python/FrugalBuild +++ b/source/devel/telepathy-python/FrugalBuild @@ -3,12 +3,12 @@ pkgname=telepathy-python pkgver=0.15.19 -pkgrel=1 +pkgrel=2 pkgdesc="Base classes for use in connection managers, and proxy classes for use in clients." url="http://telepathy.freedesktop.org/releases/$pkgname" up2date="lynx -dump $url | Flasttar" source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) depends=('dbus-python' 'libtelepathy') -groups=('devel-extra') +groups=('devel') archs=('i686' 'x86_64' 'ppc') sha1sums=('a0cc066088f2fc25849c1d005baaea2b7c6409fd') From bouleetbil at frogdev.info Sun Apr 10 12:56:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:56:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libteletpathy *move to lib Message-ID: <20110410105637.924171358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5aaa47229ad2d361aec9ed663d93be31de45f7f4 commit 5aaa47229ad2d361aec9ed663d93be31de45f7f4 Author: bouleetbil Date: Sun Apr 10 12:47:36 2011 +0200 libteletpathy *move to lib diff --git a/source/lib-extra/libtelepathy/FrugalBuild b/source/lib/libtelepathy/FrugalBuild similarity index 95% rename from source/lib-extra/libtelepathy/FrugalBuild rename to source/lib/libtelepathy/FrugalBuild index d740adf..7e8df89 100644 --- a/source/lib-extra/libtelepathy/FrugalBuild +++ b/source/lib/libtelepathy/FrugalBuild @@ -4,11 +4,11 @@ pkgname=libtelepathy pkgver=0.3.3 -pkgrel=1 +pkgrel=2 pkgdesc="A glib library to ease writing telepathy clients in glib." url="http://telepathy.freedesktop.org/wiki/" depends=('glib2' 'dbus-glib>=0.74' 'libxslt' 'telepathy-glib>=0.7.5') -groups=('lib-extra') +groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/libtelepathy/|Flasttar" source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 12:56:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:56:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ttf-droid *move to x11 xfce4 Message-ID: <20110410105637.A65C8135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71815f3961ed9d878cfd0db8fade45bf177c0ccd commit 71815f3961ed9d878cfd0db8fade45bf177c0ccd Author: bouleetbil Date: Sun Apr 10 12:49:07 2011 +0200 ttf-droid *move to x11 xfce4 diff --git a/source/x11-extra/ttf-droid/FrugalBuild b/source/x11/ttf-droid/FrugalBuild similarity index 95% rename from source/x11-extra/ttf-droid/FrugalBuild rename to source/x11/ttf-droid/FrugalBuild index c8cf546..c4db5a3 100644 --- a/source/x11-extra/ttf-droid/FrugalBuild +++ b/source/x11/ttf-droid/FrugalBuild @@ -3,10 +3,10 @@ pkgname=ttf-droid pkgver=20100513 -pkgrel=4 +pkgrel=5 pkgdesc="A font created by Ascender Corporation for use by the Open Handset Alliance platform, Android." url="http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts;hb=HEAD" -groups=('x11-extra') +groups=('x11') archs=('i686' 'x86_64' 'ppc') _F_fonts_subdir="TTF" Finclude fonts From bouleetbil at frogdev.info Sun Apr 10 12:56:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:56:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-frugalware-1.5-2-x86_64 *gtk2 back to main Message-ID: <20110410105637.AD25C135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=34b2759126e17fe1534d09b581ee7c5ec62c84c7 commit 34b2759126e17fe1534d09b581ee7c5ec62c84c7 Author: bouleetbil Date: Sun Apr 10 12:56:08 2011 +0200 gnome-frugalware-1.5-2-x86_64 *gtk2 back to main diff --git a/source/gnome/gnome-frugalware/FrugalBuild b/source/gnome/gnome-frugalware/FrugalBuild index 18fa51f..90ded0a 100644 --- a/source/gnome/gnome-frugalware/FrugalBuild +++ b/source/gnome/gnome-frugalware/FrugalBuild @@ -4,10 +4,10 @@ pkgname=gnome-frugalware pkgver=1.5 -pkgrel=1 +pkgrel=2 pkgdesc="Gnome default theme for Frugalware Linux." url="http://frugalware.org" -rodepends=('gnome-themes' "gtk+3-theme-frugalware=$pkgver" \ +rodepends=('gnome-themes' "gtk+3-theme-frugalware=$pkgver" \ 'frugalware-cursor-theme') depends=() groups=('gnome') @@ -20,7 +20,7 @@ subpkgs=('gtk+2-theme-frugalware') subdescs=('Frugalware GTK+2 theme') subdepends=('gtk+2-engines>=2.16.1 gtk+2-engines-murrine gtk+2-engines-equinox') subrodepends=('frugalware-gnome-icon-theme') -subgroups=('gnome-extra') +subgroups=('gnome') subarchs=('i686 x86_64 ppc') subpkgs=("${subpkgs[@]}" 'gtk+3-theme-frugalware') From bouleetbil at frogdev.info Sun Apr 10 12:59:54 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 12:59:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: loudmouth *move to apps Message-ID: <20110410105954.580E21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d2b7e830fb2214f05fb306f75a858bb8cd43b5a0 commit d2b7e830fb2214f05fb306f75a858bb8cd43b5a0 Author: bouleetbil Date: Sun Apr 10 12:59:26 2011 +0200 loudmouth *move to apps diff --git a/source/apps-extra/loudmouth/FrugalBuild b/source/apps/loudmouth/FrugalBuild similarity index 94% rename from source/apps-extra/loudmouth/FrugalBuild rename to source/apps/loudmouth/FrugalBuild index e202cef..dc41153 100644 --- a/source/apps-extra/loudmouth/FrugalBuild +++ b/source/apps/loudmouth/FrugalBuild @@ -3,12 +3,12 @@ pkgname=loudmouth pkgver=1.4.3 -pkgrel=3 +pkgrel=4 pkgdesc="A lightweight and easy-to-use C library for programming with the Jabber protocol." url="http://www.loudmouth-project.org/" depends=('openssl>=1.0.0' 'glib2' 'zlib' 'check') options=('scriptlet') -groups=('apps-extra') +groups=('apps') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url/download" source=(http://ftp.imendio.com/pub/imendio/$pkgname/src/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 13:01:48 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 13:01:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gperf *move to devel (webkit) *now all groups should be done Message-ID: <20110410110148.317F41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5872b3c9d4a8e54b4a42e24519b00a9e550b4c24 commit 5872b3c9d4a8e54b4a42e24519b00a9e550b4c24 Author: bouleetbil Date: Sun Apr 10 13:00:59 2011 +0200 gperf *move to devel (webkit) *now all groups should be done diff --git a/source/devel-extra/gperf/FrugalBuild b/source/devel/gperf/FrugalBuild similarity index 92% rename from source/devel-extra/gperf/FrugalBuild rename to source/devel/gperf/FrugalBuild index b53dab6..9d12780 100644 --- a/source/devel-extra/gperf/FrugalBuild +++ b/source/devel/gperf/FrugalBuild @@ -3,11 +3,11 @@ pkgname=gperf pkgver=3.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="A perfect hash function generator." url="http://www.gnu.org/software/gperf/" depends=('libstdc++') -groups=('devel-extra') +groups=('devel') archs=('i686' 'x86_64' 'ppc' 'arm') Fup2gnugz source=(http://ftp.gnu.org/pub/gnu/gperf/gperf-$pkgver.tar.gz) diff --git a/source/devel-extra/gperf/gperf.key b/source/devel/gperf/gperf.key similarity index 100% rename from source/devel-extra/gperf/gperf.key rename to source/devel/gperf/gperf.key From bouleetbil at frogdev.info Sun Apr 10 13:04:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 13:04:08 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: networkmanager-0.8.998-3-x86_64 *don't enable nm by default *for keep netconfig by default Message-ID: <20110410110408.F12E11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=365175eb97e1785606ecab6da623b7b5ade0d60f commit 365175eb97e1785606ecab6da623b7b5ade0d60f Author: bouleetbil Date: Sun Apr 10 13:03:33 2011 +0200 networkmanager-0.8.998-3-x86_64 *don't enable nm by default *for keep netconfig by default diff --git a/source/network/networkmanager/FrugalBuild b/source/network/networkmanager/FrugalBuild index b58e22d..2c2dc6b 100644 --- a/source/network/networkmanager/FrugalBuild +++ b/source/network/networkmanager/FrugalBuild @@ -4,7 +4,7 @@ pkgname=networkmanager _F_gnome_name=NetworkManager pkgver=0.8.998 -pkgrel=2 +pkgrel=3 pkgdesc="Network Management daemon" depends=('wireless_tools' 'hal' 'iproute2' 'dhcpcd>=5.1.3' 'nss' 'libgcrypt' \ 'libnl' 'ppp' 'wpa_supplicant' 'iptables' 'polkit' 'libgudev' 'ca-certificates' \ diff --git a/source/network/networkmanager/networkmanager.install b/source/network/networkmanager/networkmanager.install index 9dc2970..211288a 100644 --- a/source/network/networkmanager/networkmanager.install +++ b/source/network/networkmanager/networkmanager.install @@ -10,7 +10,7 @@ post_install() { update_host systemctl daemon-reload >/dev/null 2>&1 - systemctl enable NetworkManager.service >/dev/null 2>&1 + #systemctl enable NetworkManager.service >/dev/null 2>&1 } post_upgrade() @@ -18,7 +18,7 @@ post_upgrade() update_host systemctl daemon-reload >/dev/null 2>&1 systemctl try-restart NetworkManager.service >/dev/null 2>&1 - systemctl enable NetworkManager.service >/dev/null 2>&1 + #systemctl enable NetworkManager.service >/dev/null 2>&1 } pre_remove() From bouleetbil at frogdev.info Sun Apr 10 14:26:01 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:26:01 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: almanah-0.7.3-1-x86_64 *fix syntax error Message-ID: <20110410122601.17C1C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aabb54778a17d662214cfcd8ee1a145f2b9f6cdb commit aabb54778a17d662214cfcd8ee1a145f2b9f6cdb Author: bouleetbil Date: Sun Apr 10 14:25:39 2011 +0200 almanah-0.7.3-1-x86_64 *fix syntax error diff --git a/source/gnome-extra/almanah/FrugalBuild b/source/gnome-extra/almanah/FrugalBuild index ac6b85f..213a435 100644 --- a/source/gnome-extra/almanah/FrugalBuild +++ b/source/gnome-extra/almanah/FrugalBuild @@ -6,7 +6,9 @@ pkgver=0.7.3 pkgrel=1 pkgdesc="Diary is a small GTK+ application to allow you to keep a diary of your life." url="http://tecnocode.co.uk/projects/almanah/" -depends=('evolution-data-server>=2.91.0' 'libglade' 'sqlite3' 'e2fsprogs' 'libgnome' 'popt' 'nspr' 'openssl>=1.0.0' 'libtasn1' 'libgcrypt' 'seahorse' 'gtkspell' 'atk' 'pango>=1.24.2-2' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'libgcc' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor') +depends=('evolution-data-server>=2.91.0' 'libglade' 'sqlite3' 'e2fsprogs' 'libgnome' 'popt' 'nspr' 'openssl>=1.0.0' 'libtasn1' \ + 'libgcrypt' 'seahorse' 'gtkspell' 'atk' 'pango>=1.24.2-2' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'libgcc' 'libxdamage' \ + 'libxinerama' 'libxi' 'libxrandr' 'libxcursor') makedepends=('intltool' 'krb5') options=('scriptlet') _F_gnome_schemas=('/etc/gconf/schemas/almanah.schemas') @@ -17,6 +19,11 @@ groups=('gnome-extra') archs=('i686' 'x86_64') sha1sums=('b94ff8a6a94c34511e0ff44ddce54c23aaf94ba4') replaces=('diary') -[ "$CARCH" == "i686" ] && export CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64" + +build() { + [ "$CARCH" == "i686" ] && export CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64" + Fbuild + Fbuild_gnome_scriptlet +} # optimization OK From bouleetbil at frogdev.info Sun Apr 10 14:31:48 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:31:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libbonoboui *move to extra (deprecated) Message-ID: <20110410123148.6C0031358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10ff01a0132e08d4ffd1bc4efd5f4d815aa9f329 commit 10ff01a0132e08d4ffd1bc4efd5f4d815aa9f329 Author: bouleetbil Date: Sun Apr 10 14:31:20 2011 +0200 libbonoboui *move to extra (deprecated) diff --git a/source/gnome/libbonoboui/FrugalBuild b/source/gnome-extra/libbonoboui/FrugalBuild similarity index 93% rename from source/gnome/libbonoboui/FrugalBuild rename to source/gnome-extra/libbonoboui/FrugalBuild index a4d6056..126ac6f 100644 --- a/source/gnome/libbonoboui/FrugalBuild +++ b/source/gnome-extra/libbonoboui/FrugalBuild @@ -3,13 +3,13 @@ pkgname=libbonoboui pkgver=2.24.5 -pkgrel=1 +pkgrel=2 pkgdesc="User Interface part of libbonobo" url="http://www.gnome.org/" depends=('libgnomecanvas>=2.26.0-2' 'libgnome>=2.32.0' \ "gtk+2>=2.20.0-2" 'openssl>=1.0.0' 'libxml2>=2.7.8') makedepends=('intltool' 'gtk-doc') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome Fconfopts="$Fconfopts --disable-gtk-doc" From bouleetbil at frogdev.info Sun Apr 10 14:34:09 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:34:09 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mm-common-0.9.5-1-x86_64 *fix up2date Message-ID: <20110410123409.9407B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=97552a60fa6790695c8cc5461db3c1c68660aaa1 commit 97552a60fa6790695c8cc5461db3c1c68660aaa1 Author: bouleetbil Date: Sun Apr 10 14:33:49 2011 +0200 mm-common-0.9.5-1-x86_64 *fix up2date diff --git a/source/lib/mm-common/FrugalBuild b/source/lib/mm-common/FrugalBuild index fd83880..98a1461 100644 --- a/source/lib/mm-common/FrugalBuild +++ b/source/lib/mm-common/FrugalBuild @@ -8,6 +8,7 @@ pkgdesc="Common build files of the C++ bindings" depends=('libsigc++2') groups=('lib') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome sha1sums=('d8e4254318ec51a989d72d355854dbf4545bd874') From bouleetbil at frogdev.info Sun Apr 10 14:35:17 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:35:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-video-effects-0.3.0-1-x86_64 *fix up2date Message-ID: <20110410123517.134D31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2f07a9a343c613bff68754ee265970b7f2b1413 commit a2f07a9a343c613bff68754ee265970b7f2b1413 Author: bouleetbil Date: Sun Apr 10 14:34:58 2011 +0200 gnome-video-effects-0.3.0-1-x86_64 *fix up2date diff --git a/source/gnome/gnome-video-effects/FrugalBuild b/source/gnome/gnome-video-effects/FrugalBuild index 78113b4..d9ac502 100644 --- a/source/gnome/gnome-video-effects/FrugalBuild +++ b/source/gnome/gnome-video-effects/FrugalBuild @@ -9,5 +9,6 @@ depends=() makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome sha1sums=('ef478c450dd4cc0e962b5aedaec9e6d1ba17886f') From bouleetbil at frogdev.info Sun Apr 10 14:36:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:36:02 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: notification-daemon-0.7.1-1-x86_64 *fix up2date Message-ID: <20110410123602.43D5A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1c5e2e70c64f4ae6f7aa3687ef2ec3c3335a8e23 commit 1c5e2e70c64f4ae6f7aa3687ef2ec3c3335a8e23 Author: bouleetbil Date: Sun Apr 10 14:35:44 2011 +0200 notification-daemon-0.7.1-1-x86_64 *fix up2date diff --git a/source/xapps/notification-daemon/FrugalBuild b/source/xapps/notification-daemon/FrugalBuild index 19f9fad..6bc235a 100644 --- a/source/xapps/notification-daemon/FrugalBuild +++ b/source/xapps/notification-daemon/FrugalBuild @@ -9,6 +9,7 @@ depends=('libxml2>=2.7.8' 'libnotify>=0.7' 'libwnck' 'libcanberra-gtk' 'dbus-gli makedepends=('gnome-doc-utils' 'intltool') groups=('xapps') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome sha1sums=('f20c3eaa3a2b21b6ab6a725c8354a1aba6fa6a9e') From bouleetbil at frogdev.info Sun Apr 10 14:36:51 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:36:51 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libnotify-0.7.2-1-x86_64 *fix up2date Message-ID: <20110410123651.527AA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07c40a95b0228ead6ae7361ad71350f5186209b4 commit 07c40a95b0228ead6ae7361ad71350f5186209b4 Author: bouleetbil Date: Sun Apr 10 14:36:26 2011 +0200 libnotify-0.7.2-1-x86_64 *fix up2date diff --git a/source/xlib/libnotify/FrugalBuild b/source/xlib/libnotify/FrugalBuild index 7153d35..ae8c911 100644 --- a/source/xlib/libnotify/FrugalBuild +++ b/source/xlib/libnotify/FrugalBuild @@ -11,6 +11,7 @@ makedepends=('gtk+3' 'gobject-introspection') groups=('xlib') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') +_F_gnome_devel="y" Finclude gnome sha1sums=('d3feee5290dcc8f5476439f1f66f6dc38745607b') From bouleetbil at frogdev.info Sun Apr 10 14:37:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:37:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+3-engines-2.91.1-7-x86_64 *fix up2date Message-ID: <20110410123733.20C941358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7447bd36aa10bc821c4e85e4692e4490bcc45b4b commit 7447bd36aa10bc821c4e85e4692e4490bcc45b4b Author: bouleetbil Date: Sun Apr 10 14:37:16 2011 +0200 gtk+3-engines-2.91.1-7-x86_64 *fix up2date diff --git a/source/xlib/gtk+3-engines/FrugalBuild b/source/xlib/gtk+3-engines/FrugalBuild index fd19173..5cd3fe3 100644 --- a/source/xlib/gtk+3-engines/FrugalBuild +++ b/source/xlib/gtk+3-engines/FrugalBuild @@ -10,6 +10,7 @@ depends=('libxml2>=2.7.8' 'gtk+3>=2.99.3') makedepends=('perl-xml-parser' 'gnome-common' 'intltool' 'gdk-pixbuf2') groups=('xlib') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome _F_cd_path="gtk-engines-$pkgver" Fconfopts="$Fconfopts --enable-animation --disable-clearlooks" From bouleetbil at frogdev.info Sun Apr 10 14:38:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:38:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gdk-pixbuf2-2.23.3-1-x86_64 *fix up2date Message-ID: <20110410123820.BABAD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9cab9ab9bdf0f5b00f2c142cafe0843ab1c47047 commit 9cab9ab9bdf0f5b00f2c142cafe0843ab1c47047 Author: bouleetbil Date: Sun Apr 10 14:38:01 2011 +0200 gdk-pixbuf2-2.23.3-1-x86_64 *fix up2date diff --git a/source/xlib/gdk-pixbuf2/FrugalBuild b/source/xlib/gdk-pixbuf2/FrugalBuild index fb06ffe..67fcaf2 100644 --- a/source/xlib/gdk-pixbuf2/FrugalBuild +++ b/source/xlib/gdk-pixbuf2/FrugalBuild @@ -10,6 +10,7 @@ depends=('jasper' 'libjpeg' 'libpng' 'libtiff' 'libxcomposite' 'glib2>=2.28.1-2' groups=('xlib') makedepends=('gtk-doc' 'gobject-introspection>=0.9.0') archs=('i686' 'x86_64' 'ppc') +_F_gnome_devel="y" Finclude gnome source=($source 065_gir_set_packages.patch) _F_cd_path="$_F_gnome_name-$pkgver" From bouleetbil at frogdev.info Sun Apr 10 14:40:25 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:40:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gthumb-2.13.1-1-x86_64 *fix up2date Message-ID: <20110410124025.2637C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dd15bfeab1a58935bfb541f8547def0d26afcaf6 commit dd15bfeab1a58935bfb541f8547def0d26afcaf6 Author: bouleetbil Date: Sun Apr 10 14:40:07 2011 +0200 gthumb-2.13.1-1-x86_64 *fix up2date diff --git a/source/gnome-extra/gthumb/FrugalBuild b/source/gnome-extra/gthumb/FrugalBuild index e5f93b9..b09b4f5 100644 --- a/source/gnome-extra/gthumb/FrugalBuild +++ b/source/gnome-extra/gthumb/FrugalBuild @@ -26,6 +26,7 @@ _F_gnome_schemas=('/etc/gconf/schemas/gthumb-comments.schemas' \ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" +_F_gnome_devel="y" Finclude gnome gnome-scriptlet url="http://gthumb.sourceforge.net/" sha1sums=('91b27c845c50e4967354a28421b71d3de0814e49') From bouleetbil at frogdev.info Sun Apr 10 14:41:12 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:41:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pitivi-0.13.5-1-x86_64 *fix up2date Message-ID: <20110410124112.6E4C61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8b1c11c1e5570a82f93a43ef709e16f2545250fa commit 8b1c11c1e5570a82f93a43ef709e16f2545250fa Author: bouleetbil Date: Sun Apr 10 14:40:54 2011 +0200 pitivi-0.13.5-1-x86_64 *fix up2date diff --git a/source/gnome-extra/pitivi/FrugalBuild b/source/gnome-extra/pitivi/FrugalBuild index 763233b..00dcfd0 100644 --- a/source/gnome-extra/pitivi/FrugalBuild +++ b/source/gnome-extra/pitivi/FrugalBuild @@ -16,5 +16,6 @@ groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_iconcache="y" _F_gnome_desktop="y" +_F_gnome_devel="y" Finclude gnome gnome-scriptlet sha1sums=('294042289ed016a4d8a746402ba2fc94db149fa1') From bouleetbil at frogdev.info Sun Apr 10 14:41:57 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:41:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-dvb-daemon-0.1.23-1-x86_64 *fix up2date Message-ID: <20110410124157.052911358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ebfde90677f8744d8e37af3e64f65208a0009e09 commit ebfde90677f8744d8e37af3e64f65208a0009e09 Author: bouleetbil Date: Sun Apr 10 14:41:39 2011 +0200 gnome-dvb-daemon-0.1.23-1-x86_64 *fix up2date diff --git a/source/gnome-extra/gnome-dvb-daemon/FrugalBuild b/source/gnome-extra/gnome-dvb-daemon/FrugalBuild index 16ccd8e..5cd92f6 100644 --- a/source/gnome-extra/gnome-dvb-daemon/FrugalBuild +++ b/source/gnome-extra/gnome-dvb-daemon/FrugalBuild @@ -13,6 +13,7 @@ Fconfopts="${Fconfopts[@]} --enable-totem-plugin" groups=('gnome-extra') archs=('i686' 'x86_64') options=('scriptlet') +_F_gnome_devel="y" Finclude gnome subpkgs=('gnome-dvb-totem') subdescs=("plugin gnome-dvb-daemon for totem") From bouleetbil at frogdev.info Sun Apr 10 14:42:45 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:42:45 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ocrfeeder-0.7.4-1-x86_64 *fix up2date Message-ID: <20110410124245.5A52BBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=80eea288e8b438ec002ea4991b5cbeadf9a4efa3 commit 80eea288e8b438ec002ea4991b5cbeadf9a4efa3 Author: bouleetbil Date: Sun Apr 10 14:42:26 2011 +0200 ocrfeeder-0.7.4-1-x86_64 *fix up2date diff --git a/source/gnome-extra/ocrfeeder/FrugalBuild b/source/gnome-extra/ocrfeeder/FrugalBuild index 3d1e396..d7ab6aa 100644 --- a/source/gnome-extra/ocrfeeder/FrugalBuild +++ b/source/gnome-extra/ocrfeeder/FrugalBuild @@ -12,5 +12,6 @@ archs=('i686' 'x86_64') options=('scriptlet') _F_gnome_desktop="y" _F_gnome_iconcache="y" +_F_gnome_devel="y" Finclude gnome gnome-scriptlet sha1sums=('4e7cf9c8431897d0781af0aa9a3c249761294107') From bouleetbil at frogdev.info Sun Apr 10 14:44:46 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:44:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-applets *deprecated move to extra *no reason to keep it into main group Message-ID: <20110410124446.D0D651358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=33ae49994cfa9dd16d6c297074cbb476eab07102 commit 33ae49994cfa9dd16d6c297074cbb476eab07102 Author: bouleetbil Date: Sun Apr 10 14:43:57 2011 +0200 gnome-applets *deprecated move to extra *no reason to keep it into main group diff --git a/source/gnome/gnome-applets/FrugalBuild b/source/gnome-extra/gnome-applets/FrugalBuild similarity index 98% rename from source/gnome/gnome-applets/FrugalBuild rename to source/gnome-extra/gnome-applets/FrugalBuild index baad373..c7b0e6c 100644 --- a/source/gnome/gnome-applets/FrugalBuild +++ b/source/gnome-extra/gnome-applets/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-applets pkgver=2.91.3 -pkgrel=7 +pkgrel=8 pkgdesc="Applets for use with the GNOME panel" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gnome-panel>=2.91.0' 'libgtop>=2.28.0' 'libxklavier>=5.0' 'libwnck>=2.28.0' \ @@ -12,7 +12,7 @@ depends=('libxml2>=2.7.8' 'gnome-panel>=2.91.0' 'libgtop>=2.28.0' 'libxklavier>= 'libgweather>=2.30.0-2' 'networkmanager') rodepends=('notification-daemon>=0.4.0') makedepends=('intltool' 'gnome-doc-utils' 'git' 'gnome-common') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/battstat.schemas' '/etc/gconf/schemas/charpick.schemas' diff --git a/source/gnome/gnome-applets/README.Frugalware b/source/gnome-extra/gnome-applets/README.Frugalware similarity index 100% rename from source/gnome/gnome-applets/README.Frugalware rename to source/gnome-extra/gnome-applets/README.Frugalware diff --git a/source/gnome/gnome-applets/libnotify7.diff b/source/gnome-extra/gnome-applets/libnotify7.diff similarity index 100% rename from source/gnome/gnome-applets/libnotify7.diff rename to source/gnome-extra/gnome-applets/libnotify7.diff From bouleetbil at frogdev.info Sun Apr 10 14:57:00 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 14:57:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: cluttermm-1.3.2-2-i686 *disable broken doc Message-ID: <20110410125700.E8CAD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0a41eef6875286a8707f8ad19b37a69ae99bc116 commit 0a41eef6875286a8707f8ad19b37a69ae99bc116 Author: bouleetbil Date: Sun Apr 10 12:56:04 2011 +0200 cluttermm-1.3.2-2-i686 *disable broken doc diff --git a/source/xlib-extra/cluttermm/FrugalBuild b/source/xlib-extra/cluttermm/FrugalBuild index 4e09338..7761e51 100644 --- a/source/xlib-extra/cluttermm/FrugalBuild +++ b/source/xlib-extra/cluttermm/FrugalBuild @@ -3,7 +3,7 @@ pkgname=cluttermm pkgver=1.3.2 -pkgrel=1 +pkgrel=2 pkgdesc="cluttermm provides a C++ API for Clutter" depends=('clutter' 'pangomm' 'atkmm') groups=('xlib-extra') @@ -11,5 +11,6 @@ archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude gnome sha1sums=('69d2d9ab02abc0cd9a849f558226cf7158e3d3a2') +Fconfopts="$Fconfopts --disable-documentation" # optimization OK From boobaa at frugalware.org Sun Apr 10 17:10:31 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:10:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: monit-5.2.5-1-x86_64 Message-ID: <20110410151031.F3FF71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=55b320f57b02a2dd88e6af4270761e547bbc78d7 commit 55b320f57b02a2dd88e6af4270761e547bbc78d7 Author: CS?CSY L?szl? Date: Sun Apr 10 17:10:18 2011 +0200 monit-5.2.5-1-x86_64 version bump diff --git a/source/apps-extra/monit/FrugalBuild b/source/apps-extra/monit/FrugalBuild index 7c18c49..ef5b894 100644 --- a/source/apps-extra/monit/FrugalBuild +++ b/source/apps-extra/monit/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=monit -pkgver=5.2.4 +pkgver=5.2.5 pkgrel=1 pkgdesc="monit is a utility for managing and monitoring, processes, files, directories and devices on a UNIX system" url="http://www.tildeslash.com/monit" @@ -14,7 +14,7 @@ up2date="lynx -dump 'http://www.tildeslash.com/monit/dist/?C=M;O=A' | Flasttar" source=(http://www.tildeslash.com/monit/dist/$pkgname-$pkgver.tar.gz \ monit-4.10.1-change-conf-file-path.patch \ README.Frugalware) -sha1sums=('e7cf78d00c56764f68ef160a1cb920a1e560225e' \ +sha1sums=('41954b62a08663527d497084bd16d08b9a7b21bc' \ 'b0e0461b3cf128a036d35021c8a4aaa24254a60e' \ '933901884a93535baf97c1a629dca9acec2fc82f') Fconfopts="$Fconfopts --bindir=/usr/sbin" From boobaa at frugalware.org Sun Apr 10 17:15:51 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:15:51 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: xmoto-0.5.7-1-x86_64 Message-ID: <20110410151551.13D911358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b0c46da6bf0a02216b6dd02fb0992478834c73cf commit b0c46da6bf0a02216b6dd02fb0992478834c73cf Author: CS?CSY L?szl? Date: Sun Apr 10 17:15:34 2011 +0200 xmoto-0.5.7-1-x86_64 version bump diff --git a/source/games-extra/xmoto/FrugalBuild b/source/games-extra/xmoto/FrugalBuild index 33c6956..6071977 100644 --- a/source/games-extra/xmoto/FrugalBuild +++ b/source/games-extra/xmoto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=xmoto -pkgver=0.5.6 +pkgver=0.5.7 pkgrel=1 pkgdesc="A challenging 2D motocross platform game." url="http://xmoto.tuxfamily.org/" @@ -22,7 +22,7 @@ build() Ffilerel xmoto.desktop /usr/share/applications/ Ficonrel xmoto.xpm } -sha1sums=('5c7a7a79c9c27b1881dc8374f2088aa17aa6e20c') +sha1sums=('e781b42480a96187b5aca4126d17ecf0610ca5ac') # optimization OK From boobaa at frugalware.org Sun Apr 10 17:18:20 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:18:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: mantis-1.2.5-1-x86_64 Message-ID: <20110410151820.D15B11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e91837318d6a2051db475dc86c6c9fb35db2cb7e commit e91837318d6a2051db475dc86c6c9fb35db2cb7e Author: CS?CSY L?szl? Date: Sun Apr 10 17:18:07 2011 +0200 mantis-1.2.5-1-x86_64 version bump diff --git a/source/network-extra/mantis/FrugalBuild b/source/network-extra/mantis/FrugalBuild index 2d6bb9e..7cee984 100644 --- a/source/network-extra/mantis/FrugalBuild +++ b/source/network-extra/mantis/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=mantis -pkgver=1.2.4 +pkgver=1.2.5 pkgrel=1 pkgdesc="a free popular web-based bugtracking system" rodepends=('php>=4.0.6' 'mysql>=3.23.2') @@ -35,7 +35,7 @@ build() chown nobody:nobody $Fdestdir/var/www/$pkgname -R } -sha1sums=('87e0eef8e1d01f7785ebd7964ef3340ec407c091' \ +sha1sums=('a0ea8856125b2c6f383125533bb9763a80805dbd' \ 'e316589c6f369eeeb8a937f4b849aed3c9c73fee' \ 'c8a65e327a828a702623ea917277ef55c92cdaa8' \ 'd62d9493d254e33f8ec793a50ed3d3742e7b8110') From elentir at frugalware.org Sun Apr 10 17:24:38 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 17:24:38 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: cairo-minimal-1.10.2-1-x86_64 Message-ID: <20110410152438.5F409BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=271d7bc9228f787768ee1d78207c3b2f48d8e82f commit 271d7bc9228f787768ee1d78207c3b2f48d8e82f Author: Elentir Date: Sun Apr 10 17:23:19 2011 +0200 cairo-minimal-1.10.2-1-x86_64 * version bump diff --git a/source/xlib-extra/cairo-minimal/FrugalBuild b/source/xlib-extra/cairo-minimal/FrugalBuild index 5dcf2ed..8143971 100644 --- a/source/xlib-extra/cairo-minimal/FrugalBuild +++ b/source/xlib-extra/cairo-minimal/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Elentir pkgname=cairo-minimal -pkgver=1.10.0 -pkgrel=2 +pkgver=1.10.2 +pkgrel=1 pkgdesc="Cairo for Fwife Install CD" url="http://cairographics.org" depends=('libxrender>=0.9.4-3' 'fontconfig' 'libpng>=1.4.1' 'libx11>=1.3' \ @@ -15,7 +15,7 @@ source=($url/releases/cairo-$pkgver.tar.gz) options=("nodocs") _F_cd_path="cairo-$pkgver" Fconfopts="$Fconfopts --libdir=/usr/lib/cairo-fwife/ --includedir=/usr/include/cairo-fwife/" -sha1sums=('efe7e47408d5188690228ccadc8523652f6bf702') +sha1sums=('ccce5ae03f99c505db97c286a0c9a90a926d3c6e') export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" From boobaa at frugalware.org Sun Apr 10 17:25:54 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:25:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: amavisd-new-2.6.5-1-x86_64 Message-ID: <20110410152554.28EB91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e34694833c742b0a0b6750a866125940bc4a0db2 commit e34694833c742b0a0b6750a866125940bc4a0db2 Author: CS?CSY L?szl? Date: Sun Apr 10 17:25:43 2011 +0200 amavisd-new-2.6.5-1-x86_64 version bump diff --git a/source/network-extra/amavisd-new/FrugalBuild b/source/network-extra/amavisd-new/FrugalBuild index 1fd0ebc..5ab1777 100644 --- a/source/network-extra/amavisd-new/FrugalBuild +++ b/source/network-extra/amavisd-new/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Zoltan Kiss pkgname=amavisd-new -pkgver=2.6.4 -pkgrel=3 +pkgver=2.6.5 +pkgrel=1 pkgdesc="Amavisd-new is a high-performance interface between mailer (MTA) and content checkers" url="http://www.ijs.si/software/amavisd/" depends=('perl-archive-zip' 'perl-berkeleydb' 'perl-convert-tnef'\ @@ -17,7 +17,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url |grep -A 2 'Most recent versions'|grep 'amavis' |sed 's/.*amavisd-new-\(.*\)\.tar.*/\1/;q'" source=($url/amavisd-new-$pkgver.tar.gz 10-amavisconf 20-userconf \ rc.amavisd-new amavisconf README.Frugalware) -sha1sums=('993b7ca839ce038fd13f65351950f0ef03d99ff9' \ +sha1sums=('1f76196653e19886ee8352815c3f4d80f4984876' \ '648421546adab952f6ace5834c269f8a80256b84' \ '6c3ddac1c01b4cba1a0ee3c162814bd98a570ecd' \ 'aeffbffab4dfa54e06e8d42df88401b3cbcfcbc1' \ From elentir at frugalware.org Sun Apr 10 17:30:29 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 17:30:29 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pango-minimal-1.28.4-1-x86_64 Message-ID: <20110410153029.35A891358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=657e515fbd4233745cae6bd6c6e4199bc6929e6a commit 657e515fbd4233745cae6bd6c6e4199bc6929e6a Author: Elentir Date: Sun Apr 10 17:30:13 2011 +0200 pango-minimal-1.28.4-1-x86_64 * version bump diff --git a/source/xlib-extra/pango-minimal/FrugalBuild b/source/xlib-extra/pango-minimal/FrugalBuild index 1302400..ed27205 100644 --- a/source/xlib-extra/pango-minimal/FrugalBuild +++ b/source/xlib-extra/pango-minimal/FrugalBuild @@ -3,7 +3,7 @@ pkgname=pango-minimal _F_gnome_name=pango -pkgver=1.28.3 +pkgver=1.28.4 pkgrel=1 pkgdesc="Pango for Fwife Install CD" url="http://www.gtk.org/" @@ -16,7 +16,7 @@ _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --enable-debug=no --with-included-modules=basic-fc \ --with-dynamic-modules=no --libdir=/usr/lib/pango-fwife/ \ --includedir=/usr/include/pango-fwife/" -sha1sums=('e72887d6e147b9abf54628c003836e61d97767a1') +sha1sums=('e715954a5a3b358889d15b6235e1965303dbb622') export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" export PKG_CONFIG_PATH="/usr/lib/cairo-fwife/pkgconfig" From boobaa at frugalware.org Sun Apr 10 17:32:37 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:32:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: wordpress-3.1.1-1-x86_64 Message-ID: <20110410153237.F05DD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=56a50895487f00ac46ec80243886ea2f31eb70d9 commit 56a50895487f00ac46ec80243886ea2f31eb70d9 Author: CS?CSY L?szl? Date: Sun Apr 10 17:29:58 2011 +0200 wordpress-3.1.1-1-x86_64 version bump closes #4464 in -current diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index c0b5df1..b3ccf97 100644 --- a/source/network-extra/wordpress/FrugalBuild +++ b/source/network-extra/wordpress/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=wordpress -pkgver=3.1 +pkgver=3.1.1 pkgrel=1 pkgdesc="a state-of-the-art semantic personal publishing platform" url="http://wordpress.org/" @@ -21,4 +21,4 @@ build() Fmv ../src/$pkgname /var/www/$pkgname } -sha1sums=('8827818bf958bcad042ee96d4a20b91392ea7c68') +sha1sums=('2423c4c6b90e21eb1cc82974d923c3e7a484ec92') From boobaa at frugalware.org Sun Apr 10 17:36:33 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:36:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-1.4: wordpress-3.1.1-1nexon1-x86_64 Message-ID: <20110410153633.7E9891358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.4.git;a=commitdiff;h=e62040dd1785482fa784b0d0b0a4e22c8de56a5b commit e62040dd1785482fa784b0d0b0a4e22c8de56a5b Author: CS?CSY L?szl? Date: Sun Apr 10 17:35:30 2011 +0200 wordpress-3.1.1-1nexon1-x86_64 secfix verbump, backport of 56a5089 closes #4464 in -stable diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index 62dfc10..619379d 100644 --- a/source/network-extra/wordpress/FrugalBuild +++ b/source/network-extra/wordpress/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=wordpress -pkgver=3.0.5 +pkgver=3.1.1 pkgrel=1nexon1 pkgdesc="a state-of-the-art semantic personal publishing platform" url="http://wordpress.org/" @@ -21,4 +21,4 @@ build() Fmv ../src/$pkgname /var/www/$pkgname } -sha1sums=('4145f315ee8e2fbfa58f605e95f005ae0713f283') +sha1sums=('2423c4c6b90e21eb1cc82974d923c3e7a484ec92') From boobaa at frugalware.org Sun Apr 10 17:48:07 2011 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun, 10 Apr 2011 17:48:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: sword-tr-2.1-1-x86_64 Message-ID: <20110410154807.CE6C91358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=34d09d4c33dd9d0a2abf733c8055a1f61c9aaff9 commit 34d09d4c33dd9d0a2abf733c8055a1f61c9aaff9 Author: CS?CSY L?szl? Date: Sun Apr 10 17:47:41 2011 +0200 sword-tr-2.1-1-x86_64 version bump diff --git a/source/locale-extra/sword-tr/FrugalBuild b/source/locale-extra/sword-tr/FrugalBuild index 3800a19..dbf3683 100644 --- a/source/locale-extra/sword-tr/FrugalBuild +++ b/source/locale-extra/sword-tr/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=sword-tr -pkgver=1.2 +pkgver=2.1 pkgrel=1 pkgdesc="Textus Receptus (1550/1894) module for Sword" url='http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=TR' @@ -20,4 +20,4 @@ build() } -sha1sums=('88788094a86be99b3af00793dab59af574c7a885') +sha1sums=('029ab582561784bcfef0f51316ed351bdc3baaa7') From elentir at frugalware.org Sun Apr 10 20:12:25 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 20:12:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: dbus-glib-0.88-1-arm Message-ID: <20110410181225.C672F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9bc3c0d3553a3fbc7dfb2d4856b47915ab2bc2b commit c9bc3c0d3553a3fbc7dfb2d4856b47915ab2bc2b Author: Elentir Date: Sun Apr 10 20:01:03 2011 +0200 dbus-glib-0.88-1-arm * add arm to archs diff --git a/source/apps/dbus-glib/FrugalBuild b/source/apps/dbus-glib/FrugalBuild index 33db9d9..e1283ce 100644 --- a/source/apps/dbus-glib/FrugalBuild +++ b/source/apps/dbus-glib/FrugalBuild @@ -9,7 +9,7 @@ url="http://www.freedesktop.org/wiki/Software_2fDBusBindings" depends=('dbus>=0.93' 'glib2>=2.16.3' 'expat') makedepends=('gtk-doc' 'doxygen') ## LOL groups=('apps') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') options=('scriptlet') up2date="lynx -dump http://dbus.freedesktop.org/releases/dbus-glib/|Flasttar" source=(http://dbus.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) From bouleetbil at frogdev.info Sun Apr 10 21:28:17 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 21:28:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: desktop-data-manager *dead pkg Message-ID: <20110410192817.A79C41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=48c593b7406979dbd2e4f7a653f2c49d14c3393f commit 48c593b7406979dbd2e4f7a653f2c49d14c3393f Author: bouleetbil Date: Sun Apr 10 21:26:14 2011 +0200 desktop-data-manager *dead pkg diff --git a/source/gnome-extra/desktop-data-manager/FrugalBuild b/source/gnome-extra/desktop-data-manager/FrugalBuild deleted file mode 100644 index f2e36ac..0000000 --- a/source/gnome-extra/desktop-data-manager/FrugalBuild +++ /dev/null @@ -1,18 +0,0 @@ -# Compiling Time: 0.07 SBU -# Maintainer: bouleetbil - -pkgname=desktop-data-manager -pkgver=0.8.11 -pkgrel=4 -pkgdesc="Desktop Data Manager is a Clipboard Manager for GNOME" -depends=('gnome-sharp' 'gtk+2>=2.20.0-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' 'libxext>=1.0.5-3' 'libxml2>=2.7.8') -groups=('gnome-extra') -options=('scriptlet') -archs=('i686' 'x86_64') -_F_sourceforge_ext="_src.tar.gz" -_F_sourceforge_dirname="data-manager" -_F_sourceforge_sep="_" -_F_mono_aot=0 -Finclude sourceforge mono -sha1sums=('853a917bd6f059cd0a9551ab17712143d0a740bb') -_F_cd_path="DesktopDataManager" From bouleetbil at frogdev.info Sun Apr 10 21:28:17 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 21:28:17 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: parcellite-1.0.1-2-x86_64 *replace desktop-data-manager Message-ID: <20110410192817.C2217BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=499ee0c0767bcd979dfebd6ad5a6267728a1e0b1 commit 499ee0c0767bcd979dfebd6ad5a6267728a1e0b1 Author: bouleetbil Date: Sun Apr 10 21:27:50 2011 +0200 parcellite-1.0.1-2-x86_64 *replace desktop-data-manager diff --git a/source/xapps-extra/parcellite/FrugalBuild b/source/xapps-extra/parcellite/FrugalBuild index 240a2be..fd5fec2 100644 --- a/source/xapps-extra/parcellite/FrugalBuild +++ b/source/xapps-extra/parcellite/FrugalBuild @@ -3,7 +3,7 @@ pkgname=parcellite pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="Parcellite is a lightweight GTK+ clipboard manager." depends=('gtk+2>=2.20.0-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \ 'libxdamage' 'libxext' 'libxml2>=2.7.8') @@ -13,6 +13,6 @@ archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude sourceforge sha1sums=('14a305a9155c3668cbe13e3a9d3473a845df4183') -replaces=('parcelle') +replaces=('parcelle' 'desktop-data-manager') # optimization OK From elentir at frugalware.org Sun Apr 10 21:31:41 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 21:31:41 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libxt-1.0.9-1-arm Message-ID: <20110410193141.442241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10317e5f58d63801cc011a4ac7473f49838da47d commit 10317e5f58d63801cc011a4ac7473f49838da47d Author: Elentir Date: Sun Apr 10 18:49:18 2011 +0000 libxt-1.0.9-1-arm * add arm to archs diff --git a/source/x11/libxt/FrugalBuild b/source/x11/libxt/FrugalBuild index b96dd5d..41ad47a 100644 --- a/source/x11/libxt/FrugalBuild +++ b/source/x11/libxt/FrugalBuild @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="X Toolkit Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') depends=('libx11>=1.3' 'libsm>=1.1.0' 'xproto>=7.0.15') makedepends=('pkgconfig' 'inputproto>=2.0') _F_xorg_ind=1 From vmiklos at frugalware.org Sun Apr 10 21:39:46 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 21:39:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kernel-2.6.38-2-i686 Message-ID: <20110410193946.20A0C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9ada2ac6c8be90494d2ae851b9776cf4233db30 commit c9ada2ac6c8be90494d2ae851b9776cf4233db30 Author: Miklos Vajna Date: Sun Apr 10 21:26:20 2011 +0200 kernel-2.6.38-2-i686 - up to patchlevel .2 diff --git a/source/base/kernel/FrugalBuild b/source/base/kernel/FrugalBuild index 4c3395c..276af9f 100644 --- a/source/base/kernel/FrugalBuild +++ b/source/base/kernel/FrugalBuild @@ -1,4 +1,4 @@ -# Compiling Time: 55.48 SBU +# Compiling Time: 58.85 SBU # Maintainer: Miklos Vajna USE_DEVEL=${USE_DEVEL:-"n"} diff --git a/source/include/kernel-version.sh b/source/include/kernel-version.sh index 010eb81..fa05d2a 100644 --- a/source/include/kernel-version.sh +++ b/source/include/kernel-version.sh @@ -16,8 +16,8 @@ # * _F_kernelver_stable: the number of the -stable patch to use (if any) ### _F_kernelver_ver=2.6.38 -_F_kernelver_rel=1 -_F_kernelver_stable= +_F_kernelver_rel=2 +_F_kernelver_stable=2 ### # == APPENDED VALUES From vmiklos at frugalware.org Sun Apr 10 21:51:29 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 21:51:29 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: FSA713-phpmyadmin Message-ID: <20110410195129.047661358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=633b358dbc5f303bfc2592b94875d654388cc361 commit 633b358dbc5f303bfc2592b94875d654388cc361 Author: Miklos Vajna Date: Sun Apr 10 21:38:04 2011 +0200 FSA713-phpmyadmin diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index eefa541..2939e26 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,19 @@ + 713 + 2011-04-10 + Miklos Vajna + phpmyadmin + 3.3.9-1 + 3.3.9.2-1nexon1 + http://bugs.frugalware.org/task/4424 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0987 + A security issue has been reported in phpMyAdmin, which can be exploited by malicious users to bypass certain security restrictions. +The security issue is caused due to an error within the handling of bookmarked SQL queries, which can be exploited to e.g. trick other users into executing unintended bookmarked SQL queries. +Successful exploitation requires that the bookmarks functionality is enabled and the configuration storage is set up and enabled. + + 712 2011-02-13 Miklos Vajna From vmiklos at frugalware.org Sun Apr 10 21:56:24 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 21:56:24 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: FSA714-wordpress Message-ID: <20110410195624.26B531358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e7c5b138ab54bf2cc27d007e81c621c58fb215dd commit e7c5b138ab54bf2cc27d007e81c621c58fb215dd Author: Miklos Vajna Date: Sun Apr 10 21:43:08 2011 +0200 FSA714-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 2939e26..d6c91c6 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,23 @@ + 714 + 2011-04-10 + Miklos Vajna + wordpress + 3.0.4-1 + 3.0.5-1nexon1 + http://bugs.frugalware.org/task/4427 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0700 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0701 + Multiple vulnerabilities have been reported in WordPress, which can be exploited by malicious users to conduct script insertion attacks and disclose potentially sensitive information and by malicious people to conduct cross-site scripting attacks. +1) Input passed via the post title when performing a "Quick Edit" or "Bulk Edit" action and via the "post_status", "comment_status", and "ping_status" parameters is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. +2) Certain input passed via tags in the tags meta-box is not properly sanitised before being returned to the user. This can be exploited to execute arbitrary HTML and script code in a user's browser session in context of an affected site. +Successful exploitation of these vulnerabilities requires the "Author" or "Contributor" role. +3) The application incorrectly enforces user access restrictions when accessing posts via the media uploader and can be exploited to disclose the contents of e.g. private or draft posts. +Successful exploitation of this vulnerability requires the "Author" role. + + 713 2011-04-10 Miklos Vajna From elentir at frugalware.org Sun Apr 10 21:57:32 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 21:57:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libxmu-1.1.0-1-arm Message-ID: <20110410195732.0C3031358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8997ccd1a74d40937012f71dc61fb5e240d95858 commit 8997ccd1a74d40937012f71dc61fb5e240d95858 Author: Elentir Date: Sun Apr 10 19:33:53 2011 +0000 libxmu-1.1.0-1-arm * add arm to archs diff --git a/source/x11/libxmu/FrugalBuild b/source/x11/libxmu/FrugalBuild index a5aa0cf..11b92dc 100644 --- a/source/x11/libxmu/FrugalBuild +++ b/source/x11/libxmu/FrugalBuild @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="X.Org Xmu library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') depends=('libx11>=1.2.99.901' 'libxt>=1.0.5-2' 'libxext>=1.0.5-3') makedepends=('pkgconfig' 'xproto>=7.0.15' 'inputproto>=1.5') Finclude xorg From vmiklos at frugalware.org Sun Apr 10 22:03:47 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 22:03:47 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: FSA715-wireshark Message-ID: <20110410200347.91E921358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=5bc2207540e8a0f683650357911ca651761d71ad commit 5bc2207540e8a0f683650357911ca651761d71ad Author: Miklos Vajna Date: Sun Apr 10 21:50:31 2011 +0200 FSA715-wireshark diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index d6c91c6..910cb92 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,32 @@ + 715 + 2011-04-10 + Miklos Vajna + wireshark + 1.4.3-1 + 1.4.4-1nexon1 + http://bugs.frugalware.org/task/4443 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0538 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0713 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1138 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1139 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1140 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1141 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1142 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1143 + Multiple vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) and potentially compromise a vulnerable system. +1) An error when processing certain pcap-ng files can be exploited to free an uninitialised pointer. +2) An error when handling certain packet lengths can be exploited to cause a crash via a specially crafted pcap-ng file. +3) An error when processing Nokia DCT3 trace files can be exploited to cause a buffer overflow via a specially crafted file. +Successful exploitation of this vulnerability may allow execution of arbitrary code. +4) An error in the "dissect_ms_compressed_string()" (SMB dissector) and "dissect_mscldap_string()" (LDAP dissector) functions can be exploited to cause a crash due to an infinite recursive function call. +5) An error when processing LDAP Filter strings can be exploited to cause a crash by consuming memory resources via large filter strings. +6) A validation error in the "dissect_6lowpan_iphc()" function (epan/dissectors/packet-6lowpan.c) in the 6LoWPAN dissector when processing certain lengths can be exploited to cause a heap-based buffer overflow of a single byte resulting in a crash. +7) A NULL pointer dereference error within the "dissect_ntlmssp_string()" function in epan/dissectors/packet-ntlmssp.c when parsing a pcap file can be exploited to cause a crash. + + 714 2011-04-10 Miklos Vajna From vmiklos at frugalware.org Sun Apr 10 22:07:57 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 22:07:57 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: FSA716-wordpress Message-ID: <20110410200757.070EC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=cbf816b530a4346da17a0466abf99bfaeea483d7 commit cbf816b530a4346da17a0466abf99bfaeea483d7 Author: Miklos Vajna Date: Sun Apr 10 21:54:05 2011 +0200 FSA716-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 910cb92..4bbba9d 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,19 @@ + 716 + 2011-04-10 + Miklos Vajna + wordpress + 3.0.5-1nexon1 + 3.1.1-1nexon1 + http://bugs.frugalware.org/task/4464 + No CVE, see http://wordpress.org/news/2011/04/wordpress-3-1-1/ + Two vulnerabilities have been reported in WordPress, which can be exploited by malicious people to conduct cross-site scripting attacks and cause a DoS (Denial of Service). +1) Certain unspecified input is not properly sanitised before being returned to the user. This can be exploited to execute arbitrary HTML and script code in a user's browser session in context of an affected site. +2) The "make_clickable()" function in wp-includes/formatting.php does not properly check the URL length in comments before passing it to the PCRE library, which can be exploited to cause a crash. + + 715 2011-04-10 Miklos Vajna From bouleetbil at frogdev.info Sun Apr 10 22:19:42 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 22:19:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: esperanza *dead pkg *lxmusic already replace it Message-ID: <20110410201942.38E4D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12b1c69aa0eda817bc893308aa42fcb79fd05d4c commit 12b1c69aa0eda817bc893308aa42fcb79fd05d4c Author: bouleetbil Date: Sun Apr 10 22:17:33 2011 +0200 esperanza *dead pkg *lxmusic already replace it diff --git a/source/xmultimedia-extra/esperanza/Fix_xmms-0.5.diff b/source/xmultimedia-extra/esperanza/Fix_xmms-0.5.diff deleted file mode 100644 index 9460b4c..0000000 --- a/source/xmultimedia-extra/esperanza/Fix_xmms-0.5.diff +++ /dev/null @@ -1,54 +0,0 @@ ---- esperanza-0.4.0.orig/src/lib/playlistmodel.h -+++ esperanza-0.4.0/src/lib/playlistmodel.h -@@ -128,7 +128,11 @@ - private: - bool handle_list (const Xmms::List< unsigned int > &list); - bool handle_change (const Xmms::Dict &chg); -+#if (XMMS_IPC_PROTOCOL_VERSION > 10) -+ bool handle_update_pos (const Xmms::Dict &pos); -+#else - bool handle_update_pos (const unsigned int &pos); -+#endif - bool handle_pls_loaded (const std::string &); - bool handle_current_pls (const std::string &); - ---- esperanza-0.4.0.orig/src/lib/playlistmodel.cpp -+++ esperanza-0.4.0/src/lib/playlistmodel.cpp -@@ -27,6 +27,9 @@ - - #include "playlistmodel.h" - -+// Used to check for Protocolversion at compiletime -+#include -+ - PlaylistModel::PlaylistModel (QObject *parent, XClient *client, const QString &name) : QAbstractItemModel (parent) - { - // m_columns.append ("#"); -@@ -108,6 +111,19 @@ - return true; - } - -+#if (XMMS_IPC_PROTOCOL_VERSION > 10) -+bool -+PlaylistModel::handle_update_pos (const Xmms::Dict &posdict) -+{ -+ QString changed_pl = XClient::stdToQ (posdict.get ("name")); -+ if (changed_pl == m_name) { -+ uint32_t pos = posdict.get ("position"); -+ m_current_pos = pos; -+ emit dataChanged(index (pos, 0), index (pos, m_columns.size ())); -+ } -+ return true; -+} -+#else - bool - PlaylistModel::handle_update_pos (const uint32_t &pos) - { -@@ -115,6 +131,7 @@ - emit dataChanged(index (pos, 0), index (pos, m_columns.size ())); - return true; - } -+#endif - - QList - PlaylistModel::columns () const diff --git a/source/xmultimedia-extra/esperanza/FrugalBuild b/source/xmultimedia-extra/esperanza/FrugalBuild deleted file mode 100644 index 1a195c0..0000000 --- a/source/xmultimedia-extra/esperanza/FrugalBuild +++ /dev/null @@ -1,29 +0,0 @@ -# Compiling Time: 0.08 SBU -# Maintainer: bouleetbil - -pkgname=esperanza -pkgver=0.4.0 -pkgrel=3 -pkgdesc="Esperanza is a client xmms2" -url="http://wiki.xmms2.xmms.se/index.php/Client:Esperanza" -depends=('xmms2-libs-c++>=0.5' 'qt4' 'libboost') -makedepends=('boost') -groups=('xmultimedia-extra') -archs=('i686' 'x86_64' 'ppc') -options=('scriptlet') -up2date="lynx -dump http://exodus.xmms.se/~tru/esperanza/0.4/ | Flasttar" -source=(http://exodus.xmms.se/~tru/esperanza/0.4/$pkgname-$pkgver.tar.gz Fix_xmms-0.5.diff) -sha1sums=('88cf26c0af2ede401e5a9145628d2883ee008dab' \ - '192a691285f03843ec42d3937241efb372083e6c') -Fconfopts="${Fconfopts[@]} --prefix=$Fdestdir/usr" -_F_desktop_categories="AudioVideo;" -_F_desktop_icon="$pkgname.png" - -build(){ - Fbuild - Fmkdir /usr/share/pixmaps - cp data/images/$pkgname.png $Fdestdir/usr/share/pixmaps || Fdie - Fdesktop2 -} - -# optimization OK From elentir at frugalware.org Sun Apr 10 22:25:02 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 22:25:02 +0200 (CEST) Subject: [Frugalware-git] boost14: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110410202502.A14C31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=914db90a6700f1eac2d0565b6af2dfb9135b51ac commit 914db90a6700f1eac2d0565b6af2dfb9135b51ac Merge: 59ef55f 12b1c69 Author: Elentir Date: Sun Apr 10 22:23:53 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From elentir at frugalware.org Sun Apr 10 22:32:16 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 22:32:16 +0200 (CEST) Subject: [Frugalware-git] boost14: encfs-1.7.4-1-x86_64 Message-ID: <20110410203216.2B3741358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=25b42ac2458b17dc1af07d26d2be1ac92161ae93 commit 25b42ac2458b17dc1af07d26d2be1ac92161ae93 Author: Elentir Date: Sun Apr 10 22:31:47 2011 +0200 encfs-1.7.4-1-x86_64 * version bump * build with boost>=1.46.1 diff --git a/source/apps-extra/encfs/FrugalBuild b/source/apps-extra/encfs/FrugalBuild index 81615ee..284972f 100644 --- a/source/apps-extra/encfs/FrugalBuild +++ b/source/apps-extra/encfs/FrugalBuild @@ -2,19 +2,17 @@ # Maintainer: crazy pkgname=encfs -pkgver=1.7.3 -pkgrel=2 +pkgver=1.7.4 +pkgrel=1 pkgdesc="EncFS provides an encrypted filesystem in user-space." url="http://arg0.net/encfs" -depends=('fuse' 'openssl>=1.0.0' 'rlog>=1.4' 'libboost-mt>=1.37.0') -makedepends=('boost>=1.37.0') +depends=('fuse' 'openssl>=1.0.0' 'rlog>=1.4' 'libboost>=1.46.1') +makedepends=('boost>=1.46.1') groups=('apps-extra') archs=('i686' 'x86_64') _F_googlecode_ext=".tgz" Finclude googlecode _F_cd_path="$pkgname-`echo $pkgver|sed 's|_.*||g'`" -sha1sums=('a17b1be51737d2bd170e6556cdb7d540a892bed2') - -export LDFLAGS="$LDFLAGS -lboost_system-mt" +sha1sums=('3d824ba188dbaabdc9e36621afb72c651e6e2945') # optimization OK From elentir at frugalware.org Sun Apr 10 22:49:48 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 22:49:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: epdfview-0.1.7-5-x86_64 Message-ID: <20110410204948.287E51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=83a83bc687a0fd7550e1ccb60a38f4cd0d97a29b commit 83a83bc687a0fd7550e1ccb60a38f4cd0d97a29b Author: Elentir Date: Sun Apr 10 22:48:53 2011 +0200 epdfview-0.1.7-5-x86_64 * rebuild with poppler-glib>=0.16.3 diff --git a/source/xapps-extra/epdfview/FrugalBuild b/source/xapps-extra/epdfview/FrugalBuild index c5bade9..bc0facf 100644 --- a/source/xapps-extra/epdfview/FrugalBuild +++ b/source/xapps-extra/epdfview/FrugalBuild @@ -3,10 +3,10 @@ pkgname=epdfview pkgver=0.1.7 -pkgrel=4 +pkgrel=5 pkgdesc="ePDFView is a free lightweight PDF document viewer" url="http://trac.emma-soft.com/epdfview" -depends=('gtk+2>=2.20.0-2' 'poppler-glib>=0.14.3' 'lcms') +depends=('gtk+2>=2.20.0-2' 'poppler-glib>=0.16.3' 'lcms') groups=('xapps-extra') archs=('i686' 'x86_64') options=('scriptlet') From elentir at frugalware.org Sun Apr 10 22:53:56 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 22:53:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-minimal-2.24.4-1-x86_64 Message-ID: <20110410205356.9D56D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10ef02142221f18fba5ac43d1a13dce552d369f7 commit 10ef02142221f18fba5ac43d1a13dce552d369f7 Author: Elentir Date: Sun Apr 10 22:53:34 2011 +0200 gtk+2-minimal-2.24.4-1-x86_64 * version bump diff --git a/source/xlib-extra/gtk+2-minimal/FrugalBuild b/source/xlib-extra/gtk+2-minimal/FrugalBuild index 97dfb8f..58dc196 100644 --- a/source/xlib-extra/gtk+2-minimal/FrugalBuild +++ b/source/xlib-extra/gtk+2-minimal/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gtk+2-minimal _F_gnome_name=gtk+ -pkgver=2.20.1 +pkgver=2.24.4 pkgrel=1 pkgdesc="GTK+2 for Fwife Install CD" -depends=('atk>=1.26.0' 'fontconfig' 'libjpeg' 'libx11' 'libpng' \ +depends=('atk>=1.26.0' 'fontconfig' 'libx11' 'gdk-pixbuf2' \ 'pango-minimal>=1.28.0' 'cairo-minimal>=1.8.10' 'libxrandr' 'libsm' 'glib2>=2.20.3') rodepends=('shared-mime-info') groups=('xlib-extra') @@ -16,11 +16,10 @@ archs=('i686' 'x86_64') Finclude gnome url="http://www.gtk.org/" _F_cd_path="$_F_gnome_name-$pkgver" -Fconfopts="$Fconfopts --disable-xinerama --without-libtiff --enable-xkb --disable-largefile \ ---disable-cups --disable-papi --with-included-loaders=jpeg,png \ ---without-libjasper --with-gdktarget=x11 --with-x \ +Fconfopts="$Fconfopts --disable-xinerama --enable-xkb --disable-largefile \ +--disable-cups --disable-papi --with-gdktarget=x11 --with-x --with-xinput=yes \ --libdir=/usr/lib/gtk-fwife/ --includedir=/usr/include/gtk-fwife/" -sha1sums=('a80953b4e81c6a5bc2a986852f7fe60c8704cc02') +sha1sums=('c15a25ba49eb459b2c4cdc46baedf6cecf08cbcf') export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" export PKG_CONFIG_PATH="/usr/lib/cairo-fwife/pkgconfig:/usr/lib/pango-fwife/pkgconfig" From bouleetbil at frogdev.info Sun Apr 10 22:54:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 22:54:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-python-desktop-2.32.0-5-x86_64 *use $_F_python_libdir Message-ID: <20110410205427.ED0191358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=345f8a56d86fb86b43eb8c46723d79318a9bf57c commit 345f8a56d86fb86b43eb8c46723d79318a9bf57c Author: bouleetbil Date: Sun Apr 10 22:53:41 2011 +0200 gnome-python-desktop-2.32.0-5-x86_64 *use $_F_python_libdir diff --git a/source/gnome-extra/gnome-python-desktop/FrugalBuild b/source/gnome-extra/gnome-python-desktop/FrugalBuild index 5d36142..44c914c 100644 --- a/source/gnome-extra/gnome-python-desktop/FrugalBuild +++ b/source/gnome-extra/gnome-python-desktop/FrugalBuild @@ -214,7 +214,7 @@ build() { # ...phew! - Frm usr/lib/python2.7/site-packages/gtk-2.0/bugbudd* + Frm $_F_python_libdir/gtk-2.0/bugbudd* } sha1sums=('dae15fe9fea61ecbde5af513c94de2ff1a66369c') From elentir at frugalware.org Sun Apr 10 22:59:18 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 22:59:18 +0200 (CEST) Subject: [Frugalware-git] fwife: select-intermediate: openoffice -> libreoffice Message-ID: <20110410205918.9703F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=74aa1f2b04424454cc375ffac0fbc1319a59132d commit 74aa1f2b04424454cc375ffac0fbc1319a59132d Author: Elentir Date: Sun Apr 10 22:58:19 2011 +0200 select-intermediate: openoffice -> libreoffice diff --git a/src/plugins/select-intermediate.c b/src/plugins/select-intermediate.c index 2877851..f3d32a8 100644 --- a/src/plugins/select-intermediate.c +++ b/src/plugins/select-intermediate.c @@ -198,7 +198,7 @@ void group_changed(GtkWidget *button, gpointer data) else if(!strcmp((char*)data, "XAPP")) { if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)) == TRUE) { - selectallfiles("xapps", "openoffice.org", 1); + selectallfiles("xapps", "libreoffice", 1); if(strcmp(lang ,"en")) { ptr = g_strdup_printf("firefox-%s", lang); selectfile("locale-extra", ptr, 1); @@ -207,7 +207,7 @@ void group_changed(GtkWidget *button, gpointer data) free(ptr); } } else { - selectallfiles("xapps", "openoffice.org", 0); + selectallfiles("xapps", "libreoffice", 0); if(strcmp(lang ,"en")) { ptr = g_strdup_printf("firefox-%s", lang); selectfile("locale-extra", ptr, 0); @@ -250,16 +250,16 @@ void group_changed(GtkWidget *button, gpointer data) else if(!strcmp((char*)data, "BUR")) { if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)) == TRUE) { - selectfile("xapps", "openoffice.org", 1); + selectfile("xapps", "libreoffice", 1); if(strcmp(lang ,"en")) { - ptr = g_strdup_printf("openoffice.org-i18n-%s", lang); + ptr = g_strdup_printf("libreoffice-l10n-%s", lang); selectfile("locale-extra", ptr, 1); free(ptr); } } else { - selectfile("xapps", "openoffice.org", 0); + selectfile("xapps", "libreoffice", 0); if(strcmp(lang ,"en")) { - ptr = g_strdup_printf("openoffice.org-i18n-%s", lang); + ptr = g_strdup_printf("libreoffice-l10n-%s", lang); selectfile("locale-extra", ptr, 0); free(ptr); } @@ -326,7 +326,7 @@ GtkWidget *get_intermediate_mode_widget(void) gtk_box_pack_start(GTK_BOX(hboxtemp), pRadioE17, TRUE, FALSE, 0); gtk_box_pack_start(GTK_BOX(pvbox), hboxtemp, FALSE, FALSE, 8); gtk_box_pack_start(GTK_BOX(hboxdesktop), pvbox, TRUE, TRUE, 0); - + pvbox = gtk_vbox_new(FALSE,2); GtkWidget *pRadioXorg = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON (pRadioKDE), _("No X Server")); logo = gtk_image_new_from_file(g_strdup_printf("%s/nox.png", IMAGEDIR)); @@ -363,7 +363,7 @@ GtkWidget *get_intermediate_mode_widget(void) gtk_box_pack_start(GTK_BOX(pvbox), phbox, TRUE, TRUE, 0); phbox = gtk_hbox_new(FALSE,5); - GtkWidget *pToggleBur = gtk_check_button_new_with_label(_("OpenOffice Suite")); + GtkWidget *pToggleBur = gtk_check_button_new_with_label(_("LibreOffice Suite")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(pToggleBur) , TRUE); gtk_signal_connect(GTK_OBJECT(pToggleBur), "toggled", G_CALLBACK(group_changed), (gpointer)"BUR"); gtk_box_pack_start(GTK_BOX(phbox), pToggleBur, TRUE, FALSE, 0); From elentir at frugalware.org Sun Apr 10 23:01:35 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 23:01:35 +0200 (CEST) Subject: [Frugalware-git] fwife: select-basic: install a more coherent set of packages Message-ID: <20110410210135.C30701358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=84cf3bf1d0ec57ea7606108c29b28b0d527508e9 commit 84cf3bf1d0ec57ea7606108c29b28b0d527508e9 Author: Elentir Date: Sun Apr 10 23:01:01 2011 +0200 select-basic: install a more coherent set of packages diff --git a/src/plugins/select-basic.c b/src/plugins/select-basic.c index 49d1254..5c299b4 100644 --- a/src/plugins/select-basic.c +++ b/src/plugins/select-basic.c @@ -69,10 +69,6 @@ while still being visually appealing and easy to use.")); _("LXDE is a free software desktop environment designed to work well with computers \ on the low end of the performance spectrum such as older resource-constrained machines, \ new generation netbooks, and other small computers.")); - } else if(!strcmp((char*)data, "e17desktop")) { - gtk_label_set_label(GTK_LABEL(desktop_label), -_("Enlightenment DR17 (or E17) is an highly flexible and customizable window manager. \ -Enlightement is designed to work well with both old and modern computers.")); } free(image_path); @@ -130,16 +126,6 @@ GtkWidget *get_basic_mode_widget(void) gtk_box_pack_start(GTK_BOX(pvbox), hboxtemp, FALSE, FALSE, 8); gtk_box_pack_start(GTK_BOX(hboxdesktop), pvbox, TRUE, TRUE, 0); - pvbox = gtk_vbox_new(FALSE,2); - GtkWidget *radio_e17 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(radio_kde), _("E17")); - gtk_signal_connect(GTK_OBJECT(radio_e17), "toggled", G_CALLBACK(desktop_changed), (gpointer)"e17desktop"); - logo = gtk_image_new_from_file(g_strdup_printf("%s/e17logo.png", IMAGEDIR)); - gtk_box_pack_start(GTK_BOX(pvbox), logo, FALSE, FALSE, 0); - hboxtemp = gtk_hbox_new(FALSE, 5); - gtk_box_pack_start(GTK_BOX(hboxtemp), radio_e17, TRUE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(pvbox), hboxtemp, FALSE, FALSE, 8); - gtk_box_pack_start(GTK_BOX(hboxdesktop), pvbox, TRUE, TRUE, 0); - gtk_box_pack_start(GTK_BOX(pvboxp), hboxdesktop, FALSE, TRUE, 15); hboxdesktop = gtk_hbox_new(FALSE, 5); @@ -192,6 +178,23 @@ void configure_desktop_basic(void) /* Disable devel as well in this mode */ selectcat("devel", 0); + /* Disable xapps as well */ + selectfile("xapps", "geeqie", 0); + selectfile("xapps", "firefox", 0); + selectfile("xapps", "thunderbird", 0); + + if(strcmp(lang ,"en")) { + ptr = g_strdup_printf("firefox-%s", lang); + selectfile("locale-extra", ptr, 0); + free(ptr); ptr = g_strdup_printf("thunderbird-%s", lang); + selectfile("locale-extra", ptr, 0); + free(ptr); + } + + /* Add Frugalware-Tweaks */ + selectcat("xapps-extra", 1); + selectfile("xapps-extra", "frugalware-tweak", 1); + /* Disable all default desktop categories */ selectcat("kde", 0); selectcat("gnome", 0); @@ -205,26 +208,47 @@ void configure_desktop_basic(void) free(ptr); ptr = g_strdup_printf("kde-l10n-%s", lang); selectfile("locale-extra", ptr, 1); selectfile("locale-extra", "k3b-i18n", 1); + + selectcat("kde-extra", 1); + selectfile("kde-extra", "rekonq", 1); + selectfile("kde-extra", "krita", 1); + selectfile("xapps", "gftp", 0); + selectfile("xapps", "mplayer", 0); + selectfile("xapps", "pidgin", 0); + selectfile("xapps", "xchat", 0); } else if(!strcmp(seldesk, _("GNOME"))) { selectcat("gnome", 1); + selectcat("gnome-extra", 1); + selectfile("gnome-extra", "epiphany", 1); + selectfile("gnome-extra", "empathy", 1); + selectfile("gnome-extra", "gnucash", 1); + selectfile("xapps-extra", "transmission", 1); + selectfile("xapps", "gimp", 1); + selectfile("xapps", "akonadi", 0); } else if(!strcmp(seldesk, _("XFCE"))) { selectcat("xfce4", 1); + selectcat("xfce4-extra", 1); + selectallfiles("xfce4-extra", NULL, 1); + selectfile("xapps-extra", "midori", 1); + selectfile("xapps-extra", "xarchiver", 1); + selectfile("xapps-extra", "claws-mail", 1); + selectfile("xapps", "gimp", 1); + selectfile("xapps", "akonadi", 0); } else if(!strcmp(seldesk, _("LXDE"))) { selectcat("lxde-desktop", 1); selectallfiles("lxde-desktop", NULL, 1); - } - else if(!strcmp(seldesk, _("E17"))) - { - selectcat("e17-extra", 1); - selectallfiles("e17-extra", NULL, 1); - selectcat("x11-extra", 1); - selectfile("x11-extra", "lxdm", 1); + selectfile("xapps-extra", "midori", 1); + selectfile("xapps-extra", "leafpad", 1); + selectfile("xapps-extra", "claws-mail", 1); + selectfile("xapps-extra", "xarchiver", 1); + selectfile("xapps", "gimp", 1); + selectfile("xapps", "akonadi", 0); } free(lang); From bouleetbil at frogdev.info Sun Apr 10 23:02:06 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 10 Apr 2011 23:02:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gpsd-2.96bis-1-x86_64 Message-ID: <20110410210206.4021F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=65a2112e617c70cb01aa67cdd028fb171f2e601c commit 65a2112e617c70cb01aa67cdd028fb171f2e601c Author: bouleetbil Date: Sun Apr 10 23:01:49 2011 +0200 gpsd-2.96bis-1-x86_64 *Version bump diff --git a/source/xlib-extra/gpsd/FrugalBuild b/source/xlib-extra/gpsd/FrugalBuild index f2de0df..0342904 100644 --- a/source/xlib-extra/gpsd/FrugalBuild +++ b/source/xlib-extra/gpsd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gpsd -pkgver=2.96 +pkgver=2.96bis pkgrel=1 pkgdesc="GPS daemon and library to support USB/serial GPS devices" archs=('i686' 'x86_64' 'ppc') @@ -11,12 +11,12 @@ Finclude berlios source=($source rc.gpsd gpsd) depends=('lesstif' 'libxaw>=1.0.5' 'python>=2.7') backup=('etc/sysconfig/gpsd') -sha1sums=('a3674940e3325ccc1dc6d2890eb18d31a978425c' \ +sha1sums=('cf123255f9ec54d018642cf230cd05826e507a9e' \ 'ec737984e550495119edf316d9efffc5770d2bba' \ '5ef21b7d58d4f7bf39feb4603ea90bc93d7293f0') build() { - Fcd + Fcd $pkgname-2.96 Fbuild sed -i -e "s/gpsd.hotplug/gpsd/g" gpsd.hotplug gpsd.usermap || Fdie install -D gpsd.usermap "$Fdestdir/etc/hotplug/usb/gpsd.usermap" || Fdie From elentir at frugalware.org Sun Apr 10 23:08:20 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 23:08:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: chomp-20110403-1-x86_64 Message-ID: <20110410210820.962B01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d298e8c7100ff3304f3ec453b9f443fb5cc3928a commit d298e8c7100ff3304f3ec453b9f443fb5cc3928a Author: Elentir Date: Sun Apr 10 23:07:59 2011 +0200 chomp-20110403-1-x86_64 * version bump diff --git a/source/apps-extra/chomp/FrugalBuild b/source/apps-extra/chomp/FrugalBuild index acdf6c6..56b5b6e 100644 --- a/source/apps-extra/chomp/FrugalBuild +++ b/source/apps-extra/chomp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Elentir pkgname=chomp -pkgver=20110109 +pkgver=20110403 pkgrel=1 pkgdesc="A software package for homology computations in n-dimensions" url="http://chomp.rutgers.edu" @@ -12,7 +12,7 @@ depends=('libstdc++') up2date="lynx -dump $url/advanced/download.php | grep [0-9]*-[0-9]*-[0-9]* | sed 's/\(.*\)\([0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}\)/\2/g' | sort | tail -1 | sed 's/-//g'" source=('http://chomp.rutgers.edu/download/chomp-full.tar.gz' gcc43-chomp.patch) _F_cd_path="chomp" -sha1sums=('00b2ade1e83dc0973871cb1bb5411b81faaaf34c' \ +sha1sums=('1de01a833da17e144ac63a8abf6adb45259e1622' \ '767cfe7f8f60ce227f56daa4f77e28e2e2accc13') options=('noversrc') unset MAKEFLAGS From elentir at frugalware.org Sun Apr 10 23:18:33 2011 From: elentir at frugalware.org (Elentir) Date: Sun, 10 Apr 2011 23:18:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libsigsegv-2.10-1-x86_64 Message-ID: <20110410211833.43D7E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=78272c181ea7cb177546504718d2c818470bd59d commit 78272c181ea7cb177546504718d2c818470bd59d Author: Elentir Date: Sun Apr 10 23:18:19 2011 +0200 libsigsegv-2.10-1-x86_64 * version bump diff --git a/source/lib-extra/libsigsegv/FrugalBuild b/source/lib-extra/libsigsegv/FrugalBuild index 3b7fb9c..65ba98f 100644 --- a/source/lib-extra/libsigsegv/FrugalBuild +++ b/source/lib-extra/libsigsegv/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Elentir pkgname=libsigsegv -pkgver=2.9 +pkgver=2.10 pkgrel=1 pkgdesc="GNU libsigsegv is a library for handling page faults in user mode." url="http://savannah.gnu.org/projects/$pkgname/" From vmiklos at frugalware.org Sun Apr 10 23:22:20 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 10 Apr 2011 23:22:20 +0200 (CEST) Subject: [Frugalware-git] boost14: flightgear-2.0.0-5-i686 Message-ID: <20110410212220.EBAED1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=56ebf404a3463ff07f1744946e16736b2b3a29be commit 56ebf404a3463ff07f1744946e16736b2b3a29be Author: Miklos Vajna Date: Sun Apr 10 23:08:03 2011 +0200 flightgear-2.0.0-5-i686 - rebuild with boost>=1.46.1 diff --git a/source/games-extra/flightgear/FrugalBuild b/source/games-extra/flightgear/FrugalBuild index 98934f4..7b96dbf 100644 --- a/source/games-extra/flightgear/FrugalBuild +++ b/source/games-extra/flightgear/FrugalBuild @@ -3,11 +3,11 @@ pkgname=flightgear pkgver=2.0.0 -pkgrel=4 +pkgrel=5 pkgdesc="An open-source, multi-platform flight simulator." url="http://www.flightgear.org/" -depends=('libgl' 'zlib' 'freealut>=1.1.0-3' 'freeglut' 'plib' 'libboost-mt>=1.37.0' 'openscenegraph>=2.8.3-2') -makedepends=('simgear>=2.0.0-2' 'boost>=1.37.0') +depends=('libgl' 'zlib' 'freealut>=1.1.0-3' 'freeglut' 'plib' 'libboost>=1.46.1' 'openscenegraph>=2.8.3-2') +makedepends=('simgear>=2.0.0-2' 'boost>=1.46.1') groups=('games-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/Downloads/source.shtml|grep 'Release: Version \([0-9\.]*\) ('|sed 's/.*n \(.*\) (.*/\1/;q'" From elentir at frugalware.org Mon Apr 11 00:06:34 2011 From: elentir at frugalware.org (Elentir) Date: Mon, 11 Apr 2011 00:06:34 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: epdfview-0.1.7-5-x86_64 Message-ID: <20110410220634.854F71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=04a3d592a446d65632603f892732d375c07d3bae commit 04a3d592a446d65632603f892732d375c07d3bae Author: Elentir Date: Sun Apr 10 23:58:51 2011 +0200 epdfview-0.1.7-5-x86_64 * backport some patchs to support poppler>=0.16 diff --git a/source/xapps-extra/epdfview/0001-r329.patch b/source/xapps-extra/epdfview/0001-r329.patch new file mode 100644 index 0000000..f16f0a8 --- /dev/null +++ b/source/xapps-extra/epdfview/0001-r329.patch @@ -0,0 +1,79 @@ +From dc6c25e8f1a7a3845fa7d14b9dfbd22deb9dd6ef Mon Sep 17 00:00:00 2001 +From: jordi +Date: Fri, 20 Mar 2009 08:06:32 +0000 +Subject: [PATCH 1/3] I had to change the return valud of MainView's scroll-event handler, since Gtk+ expects a gboolean that tells whether to propagate the event. Since we didn't return any value, depending on the compilation flags the mouse wheel didn't work at all. + +This closes #118. + +git-svn-id: svn://svn.emma-soft.com/epdfview at 329 cb4bfb15-1111-0410-82e2-95233c8f1c7e +--- + src/gtk/MainView.cxx | 21 ++++++++++++++------- + src/gtk/PageView.cxx | 7 ------- + 2 files changed, 14 insertions(+), 14 deletions(-) + +diff --git a/src/gtk/MainView.cxx b/src/gtk/MainView.cxx +index b983bff..4a52cd3 100644 +--- a/src/gtk/MainView.cxx ++++ b/src/gtk/MainView.cxx +@@ -77,7 +77,7 @@ static void main_window_zoom_in_cb (GtkWidget *, gpointer); + static void main_window_zoom_out_cb (GtkWidget *, gpointer); + static void main_window_zoom_width_cb (GtkToggleAction *, gpointer); + static void main_window_set_page_mode (GtkRadioAction *, GtkRadioAction *, gpointer); +-static void main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data); ++static gboolean main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data); + + #if defined (HAVE_CUPS) + static void main_window_print_cb (GtkWidget *, gpointer); +@@ -1479,18 +1479,25 @@ main_window_set_page_mode (GtkRadioAction *action, GtkRadioAction *current, gpoi + pter->setPageMode (mode); + } + +-void ++gboolean + main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data) + { + g_assert ( NULL != data && "The data parameter is NULL."); + + MainPter *pter = (MainPter *)data; + // Only zoom when the CTRL-Button is down... +- if ( !(event->state & GDK_CONTROL_MASK) ) return; +- if ( event->direction == GDK_SCROLL_UP ) { +- pter->zoomInActivated (); +- } else if ( event->direction == GDK_SCROLL_DOWN ) { +- pter->zoomOutActivated (); ++ if ( GDK_CONTROL_MASK == (event->state & GDK_CONTROL_MASK) ) ++ { ++ if ( event->direction == GDK_SCROLL_UP ) ++ { ++ pter->zoomInActivated (); ++ } ++ else if ( event->direction == GDK_SCROLL_DOWN ) ++ { ++ pter->zoomOutActivated (); ++ } ++ return TRUE; + } ++ return FALSE; + } + +diff --git a/src/gtk/PageView.cxx b/trunk/src/gtk/PageView.cxx +index 0546561..adaa823 100644 +--- a/src/gtk/PageView.cxx ++++ b/src/gtk/PageView.cxx +@@ -527,13 +527,6 @@ page_view_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data) + { + g_assert ( NULL != data && "The data parameter is NULL."); + +- // don't scroll when the CRTL-Button is down, because then the page should +- // actually be zoomed and not scrolled. Zooming is handelt by the MainView +- // class. +- if ( event->state & GDK_CONTROL_MASK ) +- { +- return FALSE; +- } + PagePter *pter = (PagePter *)data; + GtkAdjustment *adjustment = + gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (widget)); +-- +1.7.4 + diff --git a/source/xapps-extra/epdfview/0002-r354.patch b/source/xapps-extra/epdfview/0002-r354.patch new file mode 100644 index 0000000..b4afe87 --- /dev/null +++ b/source/xapps-extra/epdfview/0002-r354.patch @@ -0,0 +1,77 @@ +From d8d3dac5fc3fe519b443d22f74258af4aaf48d0c Mon Sep 17 00:00:00 2001 +From: jordi +Date: Mon, 11 Oct 2010 15:53:47 +0000 +Subject: [PATCH 2/3] Added support for poppler's API changes in 0.15.0 by Michal Schmidt. + +git-svn-id: svn://svn.emma-soft.com/epdfview at 354 cb4bfb15-1111-0410-82e2-95233c8f1c7e +--- + configure.ac | 16 ++++++++++------ + src/PDFDocument.cxx | 12 +++++++++++- + 2 files changed, 21 insertions(+), 7 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 7ce0ddc..6cbd0e2 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -40,18 +40,22 @@ PKG_CHECK_MODULES([POPPLER], [poppler-glib >= $POPPLER_REQUIRED gdk-2.0 >= $GTK2 + AC_SUBST([POPPLER_CFLAGS]) + AC_SUBST([POPPLER_LIBS]) + dnl Check if we have poppler version 0.5.2 or higher. +-PKG_CHECK_EXISTS([poppler-glib >= 0.5.2], [have_poppler_052=yes]) +-if test "x$have_poppler_052" = "xyes"; then ++PKG_CHECK_EXISTS([poppler-glib >= 0.5.2], [have_poppler_0_5_2=yes]) ++if test "x$have_poppler_0_5_2" = "xyes"; then + AC_DEFINE([HAVE_POPPLER_0_5_2], [1], [Define to 1 if you have Poppler version 0.5.2 or higher.]) + fi +-PKG_CHECK_EXISTS([poppler-glib >= 0.6], [have_poppler_060=yes]) +-if test "x$have_poppler_060" = "xyes"; then ++PKG_CHECK_EXISTS([poppler-glib >= 0.6], [have_poppler_0_6_0=yes]) ++if test "x$have_poppler_0_6_0" = "xyes"; then + AC_DEFINE([HAVE_POPPLER_0_6_0], [1], [Define to 1 if you have Poppler version 0.6.0 or higher.]) + fi +-PKG_CHECK_EXISTS([poppler-glib >= 0.8], [have_poppler_080=yes]) +-if test "x$have_poppler_080" = "xyes"; then ++PKG_CHECK_EXISTS([poppler-glib >= 0.8], [have_poppler_0_8_0=yes]) ++if test "x$have_poppler_0_8_0" = "xyes"; then + AC_DEFINE([HAVE_POPPLER_0_8_0], [1], [Define to 1 if you have Poppler version 0.8.0 or higher.]) + fi ++PKG_CHECK_EXISTS([poppler-glib >= 0.15], [have_poppler_0_15_0=yes]) ++if test "x$have_poppler_0_15_0" = "xyes"; then ++ AC_DEFINE([HAVE_POPPLER_0_15_0], [1], [Define to 1 if you have Poppler version 0.15.0 or higher.]) ++fi + + EPDFVIEW_PATH_CUPS([CUPS], [have_cups=yes]) + AM_CONDITIONAL(cups_printing, test "x$have_cups" = "xyes") +diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx +index 6567e9b..a590a20 100644 +--- a/src/PDFDocument.cxx ++++ b/src/PDFDocument.cxx +@@ -678,14 +678,24 @@ PDFDocument::setTextSelection (DocumentRectangle *rect) + gdouble pageWidth, pageHeight; + poppler_page_get_size(page, &pageWidth, &pageHeight); + ++#if defined (HAVE_POPPLER_0_15_0) ++ PopplerRectangle textRect = { rect->getX1() / getZoom(), ++ rect->getY1() / getZoom(), ++ rect->getX2() / getZoom(), ++ rect->getY2() / getZoom()}; ++#else // !HAVE_POPPLER_0_15_0 + //for get text we must exchange y coordinate, don't ask me where logic here. + PopplerRectangle textRect = { rect->getX1() / getZoom(), + (pageHeight - rect->getY2() / getZoom()), + rect->getX2() * getZoom() / getZoom(), + (pageHeight - rect->getY1() / getZoom())}; ++#endif // HAVE_POPPLER_0_15_0 + repairEmpty(textRect); + +-#if defined (HAVE_POPPLER_0_6_0) ++#if defined (HAVE_POPPLER_0_15_0) ++ gchar *text = poppler_page_get_selected_text(page, POPPLER_SELECTION_GLYPH, ++ &textRect); ++#elif defined (HAVE_POPPLER_0_6_0) + gchar *text = poppler_page_get_text(page, POPPLER_SELECTION_GLYPH, + &textRect); + #else // !HAVE_POPPLER_0_6_0 +-- +1.7.4 + diff --git a/source/xapps-extra/epdfview/0003-r357.patch b/source/xapps-extra/epdfview/0003-r357.patch new file mode 100644 index 0000000..bcea5d1 --- /dev/null +++ b/source/xapps-extra/epdfview/0003-r357.patch @@ -0,0 +1,134 @@ +From 951a8f66463c0dc38fa05931bd8df7b45707f6e8 Mon Sep 17 00:00:00 2001 +From: jordi +Date: Wed, 17 Nov 2010 16:02:45 +0000 +Subject: [PATCH 3/3] Applied patch by Dennis Sheil to use the correct variable type for linearization since poppler version 0.15.1. + +git-svn-id: svn://svn.emma-soft.com/epdfview at 357 cb4bfb15-1111-0410-82e2-95233c8f1c7e +--- + THANKS | 1 + + configure.ac | 5 +++++ + src/IDocument.cxx | 15 ++++++++++++++- + src/IDocument.h | 8 ++++++++ + src/PDFDocument.cxx | 4 ++++ + 5 files changed, 32 insertions(+), 1 deletions(-) + +diff --git a/THANKS b/THANKS +index 48dcb2b..7888d1a 100644 +--- a/THANKS ++++ b/THANKS +@@ -4,6 +4,7 @@ contributions: + - Alain Mendizabal , for his Basque translation. + - Alex Dedul , for his patch. + - Alexander , for corrections in the Polish translation. ++ - Dennis Sheil , for his patch. + - Enrico Tr??ger , for his full screen patch and others. + - Daniel Nylander , for his Swedish translation. + - Daniel Pielmeie , for his patches. +diff --git a/configure.ac b/configure.ac +index 6cbd0e2..f8316b0 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -56,6 +56,11 @@ PKG_CHECK_EXISTS([poppler-glib >= 0.15], [have_poppler_0_15_0=yes]) + if test "x$have_poppler_0_15_0" = "xyes"; then + AC_DEFINE([HAVE_POPPLER_0_15_0], [1], [Define to 1 if you have Poppler version 0.15.0 or higher.]) + fi ++PKG_CHECK_EXISTS([poppler-glib >= 0.15.1], [have_poppler_0_15_1=yes]) ++if test "x$have_poppler_0_15_1" = "xyes"; then ++ AC_DEFINE([HAVE_POPPLER_0_15_1], [1], [Define to 1 if you have Poppler version 0.15.1 or higher.]) ++fi ++ + + EPDFVIEW_PATH_CUPS([CUPS], [have_cups=yes]) + AM_CONDITIONAL(cups_printing, test "x$have_cups" = "xyes") +diff --git a/src/IDocument.cxx b/src/IDocument.cxx +index f1b71c5..f560f34 100644 +--- a/src/IDocument.cxx ++++ b/src/IDocument.cxx +@@ -755,11 +755,16 @@ IDocument::setFormat (gchar *format) + const gchar * + IDocument::getLinearized () + { ++#if defined (HAVE_POPPLER_0_15_1) ++ if ( m_Linearized ) return "Yes"; ++ else return "No"; ++#else + if ( NULL == m_Linearized ) + { + return "No"; + } + return m_Linearized; ++#endif + } + + /// +@@ -768,14 +773,22 @@ IDocument::getLinearized () + /// @param linearized Set to "Yes" if the document is linearized. "No" + /// otherwise. IDocument will free it. + /// ++#if defined (HAVE_POPPLER_0_15_1) + void +-IDocument::setLinearized (gchar *linearized) ++IDocument::setLinearized (gboolean *linearized) ++{ ++ m_Linearized = linearized; ++} ++#else ++void ++ IDocument::setLinearized (gchar *linearized) + { + gchar *oldLinearized = m_Linearized; + m_Linearized = g_strdup (linearized); + g_free (oldLinearized); + g_free (linearized); + } ++#endif + + /// + /// @brief Gets the document's creation date. +diff --git a/src/IDocument.h b/src/IDocument.h +index fbb3954..32aadf2 100644 +--- a/src/IDocument.h ++++ b/src/IDocument.h +@@ -306,7 +306,11 @@ namespace ePDFView + const gchar *getFormat (void); + void setFormat (gchar *format); + const gchar *getLinearized (void); ++#if defined (HAVE_POPPLER_0_15_1) ++ void setLinearized (gboolean *linearized); ++#else + void setLinearized (gchar *linearized); ++#endif + const gchar *getCreationDate (void); + void setCreationDate (gchar *date); + const gchar *getModifiedDate (void); +@@ -382,7 +386,11 @@ namespace ePDFView + /// The document's keyword. + gchar *m_Keywords; + /// Tells if the document is linearized or not. ++#if defined (HAVE_POPPLER_0_15_1) ++ gboolean *m_Linearized; ++#else + gchar *m_Linearized; ++#endif + /// The document's modification date and time. + gchar *m_ModifiedDate; + /// @brief The list of classes that will receive notifications +diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx +index a590a20..4d425cd 100644 +--- a/src/PDFDocument.cxx ++++ b/src/PDFDocument.cxx +@@ -324,7 +324,11 @@ PDFDocument::loadMetadata (void) + gchar *format = NULL; + gchar *keywords = NULL; + PopplerPageLayout layout = POPPLER_PAGE_LAYOUT_UNSET; ++#if defined (HAVE_POPPLER_0_15_1) ++ gboolean *linearized = NULL; ++#else + gchar *linearized = NULL; ++#endif + GTime modDate; + PopplerPageMode mode = POPPLER_PAGE_MODE_UNSET; + gchar *producer = NULL; +-- +1.7.4 + diff --git a/source/xapps-extra/epdfview/FrugalBuild b/source/xapps-extra/epdfview/FrugalBuild index bc0facf..364550d 100644 --- a/source/xapps-extra/epdfview/FrugalBuild +++ b/source/xapps-extra/epdfview/FrugalBuild @@ -16,12 +16,22 @@ _F_desktop_mimetypes="application/pdf" _F_desktop_exec="epdfview %f" _F_desktop_icon="epdfview.png" up2date="lynx -dump $url/wiki/Download | grep -m1 tar.bz2 | sed 's/.*w-\(.*\).t.*/\1/'" -source=($url/chrome/site/releases/$pkgname-$pkgver.tar.bz2) -sha1sums=('ff46942c285b8e2c28766a38cdfce1a018b4a015') +source=($url/chrome/site/releases/$pkgname-$pkgver.tar.bz2 0001-r329.patch 0002-r354.patch \ + 0003-r357.patch m_Linearized.patch) +sha1sums=('ff46942c285b8e2c28766a38cdfce1a018b4a015' \ + '92a8ea08279ccbe479fccab07359d8c3f915a1a2' \ + '29c6d31fccd916dafecb47ebab7d741ceace02de' \ + 'e4a81fbe60e4785b2295a15499a173e5c02d26db' \ + 'b7ce5859938f4fb25dc39dfe3b1a9db90fac82fb') build() { - Fbuild + Fcd + Fpatchall + touch ChangeLog || Fdie + Fautoreconf + Fmake + Fmakeinstall Fmkdir /usr/share/pixmaps cp $Fdestdir/usr/share/$pkgname/pixmaps/icon_epdfview-32.png $Fdestdir/usr/share/pixmaps/epdfview.png || Fdie Frm /usr/share/applications/epdfview.desktop diff --git a/source/xapps-extra/epdfview/gcc43.patch b/source/xapps-extra/epdfview/gcc43.patch deleted file mode 100644 index d17130e..0000000 --- a/source/xapps-extra/epdfview/gcc43.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up epdfview-0.1.6/src/IDocumentLink.h.orig epdfview-0.1.6/src/IDocumentLink.h ---- epdfview-0.1.6/src/IDocumentLink.h.orig 2008-02-14 11:21:01.000000000 +0100 -+++ epdfview-0.1.6/src/IDocumentLink.h 2008-02-14 11:21:06.000000000 +0100 -@@ -33,7 +33,7 @@ namespace ePDFView - class IDocumentLink - { - public: -- IDocumentLink (gdouble x1, gdouble y1, gdouble x2, gdouble y1); -+ IDocumentLink (gdouble x1, gdouble y1, gdouble x2, gdouble y2); - virtual ~IDocumentLink (void); - - virtual void activate (IDocument *document) = 0; diff --git a/source/xapps-extra/epdfview/m_Linearized.patch b/source/xapps-extra/epdfview/m_Linearized.patch new file mode 100644 index 0000000..7cad8d9 --- /dev/null +++ b/source/xapps-extra/epdfview/m_Linearized.patch @@ -0,0 +1,24 @@ +--- src/IDocument.cxx 2011-02-06 14:45:34.173334040 +0100 ++++ src/IDocument.cxx 2011-02-06 14:51:23.173334040 +0100 +@@ -135,7 +135,11 @@ + m_FindPage = 0; + m_Format = NULL; + m_Keywords = NULL; ++#if defined (HAVE_POPPLER_0_15_1) ++ m_Linearized = FALSE; ++#else + m_Linearized = NULL; ++#endif + m_ModifiedDate = NULL; + m_PageCache = NULL; + m_PageCacheAge = 0; +@@ -164,7 +168,9 @@ + g_free (m_FileName); + g_free (m_Format); + g_free (m_Keywords); ++#if !defined (HAVE_POPPLER_0_15_1) + g_free (m_Linearized); ++#endif + g_free (m_ModifiedDate); + g_free (m_Password); + g_free (m_Producer); From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: acx100-20080806-41-i686 Message-ID: <20110410220958.80D371358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=627e260b20e14f3dcf96efbe7a83f680ef93d78a commit 627e260b20e14f3dcf96efbe7a83f680ef93d78a Author: Miklos Vajna Date: Sun Apr 10 23:56:34 2011 +0200 acx100-20080806-41-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network-extra/acx100/FrugalBuild b/source/network-extra/acx100/FrugalBuild index c918690..258416f 100644 --- a/source/network-extra/acx100/FrugalBuild +++ b/source/network-extra/acx100/FrugalBuild @@ -4,7 +4,7 @@ pkgname=acx100 origname=acx-mac80211 pkgver=20080806 -pkgrel=40 +pkgrel=41 pkgdesc="The ACX100/ACX111 wireless network driver." _F_sourceforge_ext=".tar.bz2" _F_sourceforge_dirname=${pkgname} From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qc-usb-0.6.6-81-i686 Message-ID: <20110410220958.8C62E1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da5e98f2ef6f0bc66153054232d1c8bff18218eb commit da5e98f2ef6f0bc66153054232d1c8bff18218eb Author: Miklos Vajna Date: Sun Apr 10 23:56:34 2011 +0200 qc-usb-0.6.6-81-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/multimedia-extra/qc-usb/FrugalBuild b/source/multimedia-extra/qc-usb/FrugalBuild index 08d5d26..9906210 100644 --- a/source/multimedia-extra/qc-usb/FrugalBuild +++ b/source/multimedia-extra/qc-usb/FrugalBuild @@ -3,7 +3,7 @@ pkgname=qc-usb pkgver=0.6.6 -pkgrel=80 +pkgrel=81 pkgdesc="Quickcam kernel driver." groups=('multimedia-extra') archs=('i686' 'x86_64') From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: acerhk-0.5.35-59-i686 Message-ID: <20110410220958.93ACF135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a402601b2e6720cd09267805eb89c5c386b43f41 commit a402601b2e6720cd09267805eb89c5c386b43f41 Author: Miklos Vajna Date: Sun Apr 10 23:56:34 2011 +0200 acerhk-0.5.35-59-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/apps-extra/acerhk/FrugalBuild b/source/apps-extra/acerhk/FrugalBuild index e52f7ad..ea831bd 100644 --- a/source/apps-extra/acerhk/FrugalBuild +++ b/source/apps-extra/acerhk/FrugalBuild @@ -4,7 +4,7 @@ pkgname=acerhk pkgver=0.5.35 -pkgrel=58 +pkgrel=59 pkgdesc="Acer Hotkey driver for Linux" url="http://www.cakey.de/acerhk/" Finclude kernel-module From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: r8168-8.022.00-3-i686 Message-ID: <20110410220958.9E17F135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b8d142cb2547ab9727fa6dd68c59ddd9056a3979 commit b8d142cb2547ab9727fa6dd68c59ddd9056a3979 Author: Miklos Vajna Date: Sun Apr 10 23:56:35 2011 +0200 r8168-8.022.00-3-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network-extra/r8168/FrugalBuild b/source/network-extra/r8168/FrugalBuild index 2105a41..3e47371 100644 --- a/source/network-extra/r8168/FrugalBuild +++ b/source/network-extra/r8168/FrugalBuild @@ -4,7 +4,7 @@ pkgname=r8168 pkgver=8.022.00 -pkgrel=2 +pkgrel=3 Finclude kernel-module pkgdesc="Realtek driver for RTL8111/RTL8168 cards." url="http://www.realtek.com.tw" From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: madwifi-0.9.4-52-i686 Message-ID: <20110410220958.A4BF61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e12ac99453a0f6a97dc532a9bd38e0e81a6b1b2d commit e12ac99453a0f6a97dc532a9bd38e0e81a6b1b2d Author: Miklos Vajna Date: Sun Apr 10 23:56:35 2011 +0200 madwifi-0.9.4-52-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network/madwifi/FrugalBuild b/source/network/madwifi/FrugalBuild index e582913..19012dd 100644 --- a/source/network/madwifi/FrugalBuild +++ b/source/network/madwifi/FrugalBuild @@ -3,7 +3,7 @@ pkgname=madwifi pkgver=0.9.4 -pkgrel=51 +pkgrel=52 pkgdesc="Madwifi drivers for Atheros wireless chipsets" Finclude kernel-module depends=(${depends[@]} 'wireless_tools') From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: r8169-6.010.00-28-i686 Message-ID: <20110410220958.AC3701358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=61d6b662c30c628fab8a09625b5edf262bf1487b commit 61d6b662c30c628fab8a09625b5edf262bf1487b Author: Miklos Vajna Date: Sun Apr 10 23:56:36 2011 +0200 r8169-6.010.00-28-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network-extra/r8169/FrugalBuild b/source/network-extra/r8169/FrugalBuild index 488ad15..3d08635 100644 --- a/source/network-extra/r8169/FrugalBuild +++ b/source/network-extra/r8169/FrugalBuild @@ -3,7 +3,7 @@ pkgname=r8169 pkgver=6.010.00 -pkgrel=27 +pkgrel=28 Finclude sourceforge kernel-module pkgdesc="Realtek driver for RTL8169/8110 cards." url="http://www.realtek.com.tw" From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ndiswrapper-1.56-20-i686 Message-ID: <20110410220958.B3F84135844C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7c2c2ffe324affac01572cc24aca01c036806beb commit 7c2c2ffe324affac01572cc24aca01c036806beb Author: Miklos Vajna Date: Sun Apr 10 23:56:36 2011 +0200 ndiswrapper-1.56-20-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network/ndiswrapper/FrugalBuild b/source/network/ndiswrapper/FrugalBuild index ac6cf81..49fe0fe 100644 --- a/source/network/ndiswrapper/FrugalBuild +++ b/source/network/ndiswrapper/FrugalBuild @@ -4,7 +4,7 @@ pkgname=ndiswrapper pkgver=1.56 -pkgrel=19 +pkgrel=20 pkgdesc="Wrapper for using Windows drivers for some wireless cards" _F_kernelmod_scriptlet=$pkgname.install Finclude kernel-module sourceforge From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: virtualbox-modules-4.0.4-4-i686 Message-ID: <20110410220958.BBEDE135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=983dae6301bec5253ad0df1548f0fca4816c7725 commit 983dae6301bec5253ad0df1548f0fca4816c7725 Author: Miklos Vajna Date: Sun Apr 10 23:56:37 2011 +0200 virtualbox-modules-4.0.4-4-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/apps-extra/virtualbox-modules/FrugalBuild b/source/apps-extra/virtualbox-modules/FrugalBuild index 36ae5e9..dac000d 100644 --- a/source/apps-extra/virtualbox-modules/FrugalBuild +++ b/source/apps-extra/virtualbox-modules/FrugalBuild @@ -3,7 +3,7 @@ pkgname=virtualbox-modules pkgver=4.0.4 -pkgrel=3 +pkgrel=4 pkgdesc="Kernel modules for VirtualBox" url="http://www.virtualbox.org" Finclude kernel-module From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: smartcam-1.4.0-3-i686 Message-ID: <20110410220958.C9729135844D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=86c47cf7acb34e8667960aeb27f418b8830d037a commit 86c47cf7acb34e8667960aeb27f418b8830d037a Author: Miklos Vajna Date: Sun Apr 10 23:56:37 2011 +0200 smartcam-1.4.0-3-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/xapps-extra/smartcam/FrugalBuild b/source/xapps-extra/smartcam/FrugalBuild index e1a7bc2..f075493 100644 --- a/source/xapps-extra/smartcam/FrugalBuild +++ b/source/xapps-extra/smartcam/FrugalBuild @@ -3,7 +3,7 @@ pkgname=smartcam pkgver=1.4.0 -pkgrel=2 +pkgrel=3 pkgdesc="Turns a camera phone (S60, WinMo6.x, Android, Samsung Bada) with bluetooth or WiFi into a handy webcam ready to use with your PC" url="http://sourceforge.net/projects/smartcam/" depends=('bluez' 'gconf' 'hicolor-icon-theme' 'intltool') From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bcmwl-5.100.82.38-5-i686 Message-ID: <20110410220958.C232E135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5479c797a7b6fe6c1328ccfe8dd7a2fbf26f6ede commit 5479c797a7b6fe6c1328ccfe8dd7a2fbf26f6ede Author: Miklos Vajna Date: Sun Apr 10 23:56:37 2011 +0200 bcmwl-5.100.82.38-5-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/network-extra/bcmwl/FrugalBuild b/source/network-extra/bcmwl/FrugalBuild index bc9fa43..2b32aa6 100644 --- a/source/network-extra/bcmwl/FrugalBuild +++ b/source/network-extra/bcmwl/FrugalBuild @@ -3,7 +3,7 @@ pkgname=bcmwl pkgver=5.100.82.38 -pkgrel=4 +pkgrel=5 pkgdesc="Broadcom 802.11 Linux STA wireless driver" url="http://www.broadcom.com/support/802.11/linux_sta.php" Finclude kernel-module From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: nvidia-173xx-173.14.28-11-i686 Message-ID: <20110410220958.D772C1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fedab2b6310cc221d3ea0a258262f4030ef6f5e0 commit fedab2b6310cc221d3ea0a258262f4030ef6f5e0 Author: Miklos Vajna Date: Sun Apr 10 23:56:38 2011 +0200 nvidia-173xx-173.14.28-11-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/x11-extra/nvidia-173xx/FrugalBuild b/source/x11-extra/nvidia-173xx/FrugalBuild index 8a548b2..880b40a 100644 --- a/source/x11-extra/nvidia-173xx/FrugalBuild +++ b/source/x11-extra/nvidia-173xx/FrugalBuild @@ -3,7 +3,7 @@ pkgname=nvidia-173xx pkgver=173.14.28 -pkgrel=10 +pkgrel=11 archs=('i686' 'x86_64' '!ppc') _F_nvidia_legacyver="173.14.xx" Finclude nvidia From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: nvidia-260.19.36-5-i686 Message-ID: <20110410220958.D0B361358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a73200392759d913a848466ddbd138d32427de5a commit a73200392759d913a848466ddbd138d32427de5a Author: Miklos Vajna Date: Sun Apr 10 23:56:38 2011 +0200 nvidia-260.19.36-5-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/x11-extra/nvidia/FrugalBuild b/source/x11-extra/nvidia/FrugalBuild index 201d97a..bc9eab7 100644 --- a/source/x11-extra/nvidia/FrugalBuild +++ b/source/x11-extra/nvidia/FrugalBuild @@ -3,7 +3,7 @@ pkgname=nvidia pkgver=260.19.36 -pkgrel=4 +pkgrel=5 archs=('i686' 'x86_64' '!ppc') _F_kernelmod_scriptlet=nvidia.install Finclude kernel-module From vmiklos at frugalware.org Mon Apr 11 00:09:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 00:09:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: oss-v4.2_build2004-6-i686 Message-ID: <20110410220958.E6C761358809@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=82938459465f067e56fed49c6340859301a5fae2 commit 82938459465f067e56fed49c6340859301a5fae2 Author: Miklos Vajna Date: Sun Apr 10 23:56:39 2011 +0200 oss-v4.2_build2004-6-i686 rebuilt with kernel-2.6.38-2 diff --git a/source/multimedia-extra/oss/FrugalBuild b/source/multimedia-extra/oss/FrugalBuild index 68f765b..67b34dd 100644 --- a/source/multimedia-extra/oss/FrugalBuild +++ b/source/multimedia-extra/oss/FrugalBuild @@ -7,7 +7,7 @@ pkgname=oss pkgver=v4.2_build2004 _ver="${pkgver/_/-}" -pkgrel=5 +pkgrel=6 pkgdesc="Open Sound System Version 4 for Linux (Alternative to ALSA)." url="http://developer.opensound.com" _dlurl='http://www.4front-tech.com/developer/sources/stable/gpl' From devil505linux at gmail.com Mon Apr 11 08:53:27 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 08:53:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bam-0.4.0-1-i686 * version bump Message-ID: <20110411065327.34D471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=90130ee062b0518442e668836db1aefcd0495d4f commit 90130ee062b0518442e668836db1aefcd0495d4f Author: Devil505 Date: Mon Apr 11 08:52:28 2011 +0200 bam-0.4.0-1-i686 * version bump diff --git a/source/devel-extra/bam/FrugalBuild b/source/devel-extra/bam/FrugalBuild index 294837f..ddcbe82 100644 --- a/source/devel-extra/bam/FrugalBuild +++ b/source/devel-extra/bam/FrugalBuild @@ -2,26 +2,21 @@ # Maintainer: Devil505 pkgname=bam -pkgver=0.3.2 +pkgver=0.4.0 pkgrel=1 pkgdesc="Bam is a fast and flexible build system." url="http://matricks.github.com/$pkgname" -depends=('lua') +depends=('glibc') groups=('devel-extra') -options=('force') archs=('i686' 'x86_64') up2date="Flasttarbz2 $url" source=(http://github.com/downloads/matricks/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('739a686749fa2229f92966ac39d20bb430bb491b') +sha1sums=('5dad113e38ba89384d842655eb477834285c216b') -build() { - Fsed "-Wall" "-Wall $CFLAGS" make_unix.sh +build() +{ + Fcd sh make_unix.sh || Fdie - Fexerel $pkgname /usr/bin/$pkgname - Fdocrel license.txt - Fdocrel docs/{actions.txt,bam_logo.png,building.txt,introduction.txt,quickstart.txt} - gzip docs/$pkgname.1.txt || Fdie - Fmkdir usr/share/man/man1 - Finstallrel 644 docs/$pkgname.1.txt.gz usr/man/man1/$pkgname.1.gz + Fexerel $pkgname usr/bin/$pkgname } From devil505linux at gmail.com Mon Apr 11 09:01:48 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 09:01:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: wingpanel-20110411-1-i686 * version bump Message-ID: <20110411070148.7CA9F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9ab2eec64f497c5596613bb7d26d86e49bf7444a commit 9ab2eec64f497c5596613bb7d26d86e49bf7444a Author: Devil505 Date: Mon Apr 11 09:01:32 2011 +0200 wingpanel-20110411-1-i686 * version bump diff --git a/source/xapps-extra/wingpanel/FrugalBuild b/source/xapps-extra/wingpanel/FrugalBuild index 9ee91c5..c8df4fc 100644 --- a/source/xapps-extra/wingpanel/FrugalBuild +++ b/source/xapps-extra/wingpanel/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=wingpanel -pkgver=20110322 +pkgver=20110411 pkgrel=1 pkgdesc="A super sexy space-saving top panel" url="https://launchpad.net/wingpanel" @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686') up2date="Flasttar http://ftp.frugalware.org/pub/other/people/devil505/snapshots/$pkgname" source=(http://ftp.frugalware.org/pub/other/people/devil505/snapshots/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('d30dc727a585dde7d1cde01284d4ab945b6891ba') +sha1sums=('6d31ccd296d3bbbffca764495e90d3930c1debd3') build() { Fcd From bouleetbil at frogdev.info Mon Apr 11 09:17:41 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 11 Apr 2011 09:17:41 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-engines-equinox *back to main Message-ID: <20110411071741.A1E9CBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5150b7e9119b3e71c414c1c618b4bc6034438c43 commit 5150b7e9119b3e71c414c1c618b4bc6034438c43 Author: bouleetbil Date: Mon Apr 11 09:16:24 2011 +0200 gtk+2-engines-equinox *back to main diff --git a/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild b/source/gnome/gtk+2-engines-equinox/FrugalBuild similarity index 95% rename from source/gnome-extra/gtk+2-engines-equinox/FrugalBuild rename to source/gnome/gtk+2-engines-equinox/FrugalBuild index 1adbc15..b5176c2 100644 --- a/source/gnome-extra/gtk+2-engines-equinox/FrugalBuild +++ b/source/gnome/gtk+2-engines-equinox/FrugalBuild @@ -3,12 +3,12 @@ pkgname=gtk+2-engines-equinox pkgver=1.30 -pkgrel=3 +pkgrel=4 pkgdesc="A heavily modified version of the beautiful Aurora engine" depends=('gtk+2>=2.20.1-1' 'cairo>=1.8.10-2' 'zlib' 'libxext' 'libxfixes' 'libgcc') makedepends=('pkgconfig') options=('scriptlet') -groups=('gnome-extra') +groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_look_id="121881" Finclude gnome-look From devil505linux at gmail.com Mon Apr 11 09:57:05 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 09:57:05 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: teeworlds-0.6.0-1-i686 * version bump Message-ID: <20110411075705.E4EEE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=60cf20296c30b97d11572452e60fe4ef0d6f5134 commit 60cf20296c30b97d11572452e60fe4ef0d6f5134 Author: Devil505 Date: Mon Apr 11 09:56:23 2011 +0200 teeworlds-0.6.0-1-i686 * version bump diff --git a/source/games-extra/teeworlds/FrugalBuild b/source/games-extra/teeworlds/FrugalBuild index 6673d77..adf3cba 100644 --- a/source/games-extra/teeworlds/FrugalBuild +++ b/source/games-extra/teeworlds/FrugalBuild @@ -2,18 +2,17 @@ # Maintainer: Devil505 pkgname=teeworlds -pkgver=0.5.2 +pkgver=0.6.0 pkgrel=1 pkgdesc="a multiplayer 2D shooter." url="http://teeworlds.com" -depends=('zlib' 'libglu' 'sdl' 'libstdc++' 'libxext' 'libxdamage') -makedepends=('bam=0.2.0') +depends=('libglu' 'freetype2' 'sdl') +makedepends=('bam') groups=('games-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/?page=downloads | sed 's/_src//g'" -source=($url/files/$pkgname-$pkgver-src.tar.gz fix_datadir_search.patch $pkgname.png) -sha1sums=('26d8059b1ad81ca6959b96fd3ff881f9db7550ef' \ - '4fb2a4301c8c745e7f73d9b9f976685c3e5914e1' \ +source=($url/files/$pkgname-$pkgver-src.tar.gz $pkgname.png) +sha1sums=('17464e17ea0a5c00573d6b994cccc40d9ab4d31f' \ '0df9842e7a3ed9c1c40f92954f735b952946ac69') _F_desktop_name="TeeWorlds" @@ -21,8 +20,7 @@ _F_desktop_icon="$pkgname.png" _F_desktop_categories="Game;ArcadeGame;" build() { - Fcd "$pkgname-$pkgver-src" - Fpatchall + Fcd "$pkgname-$pkgver-source" bam server_release client_release || Fdie Fmkdir usr/share/$pkgname/data cp -r data/* $Fdestdir/usr/share/$pkgname/data || Fdie diff --git a/source/games-extra/teeworlds/fix_datadir_search.patch b/source/games-extra/teeworlds/fix_datadir_search.patch deleted file mode 100644 index 19a4ae1..0000000 --- a/source/games-extra/teeworlds/fix_datadir_search.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -r 9582fcee983b -r c1502459a920 src/engine/e_engine.c ---- a/src/engine/e_engine.c Sun Feb 01 20:50:22 2009 +0100 -+++ b/src/engine/e_engine.c Sun Feb 01 21:37:17 2009 +0100 -@@ -539,14 +539,15 @@ - } - - /* 2) use data-dir in PWD if present */ -- if(fs_is_dir("data")) -+ /* test subdir "/mapres" to reject unrelated "data" dir in PWD */ -+ if(fs_is_dir("data/mapres")) - { - strcpy(datadir, "data"); - return 0; - } - - /* 3) use compiled-in data-dir if present */ -- if (fs_is_dir(DATA_DIR)) -+ if (fs_is_dir(DATA_DIR "/mapres")) - { - strcpy(datadir, DATA_DIR); - return 0; -@@ -572,9 +573,11 @@ - /* 5) check for all default locations */ - { - const char *sdirs[] = { -- "/usr/share/teeworlds", -- "/usr/local/share/teeworlds" -- "/opt/teeworlds" -+ "/usr/share/teeworlds/data", -+ "/usr/share/games/teeworlds/data", -+ "/usr/local/share/teeworlds/data", -+ "/usr/local/share/games/teeworlds/data", -+ "/opt/teeworlds/data" - }; - const int sdirs_count = sizeof(sdirs) / sizeof(sdirs[0]); - From devil505linux at gmail.com Mon Apr 11 10:12:36 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 10:12:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: plank-20110411-1-i686 * version bump Message-ID: <20110411081236.3A5881358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8be848b172a24f49414adc5dc6b6e07f8ef044f2 commit 8be848b172a24f49414adc5dc6b6e07f8ef044f2 Author: Devil505 Date: Mon Apr 11 10:12:16 2011 +0200 plank-20110411-1-i686 * version bump diff --git a/source/xapps-extra/plank/FrugalBuild b/source/xapps-extra/plank/FrugalBuild index 79eafa2..3c4194b 100644 --- a/source/xapps-extra/plank/FrugalBuild +++ b/source/xapps-extra/plank/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=plank -pkgver=20110319 -pkgrel=2 +pkgver=20110411 +pkgrel=1 pkgdesc="Stupidly simple Dock" url="https://launchpad.net/plank" depends=('libgee' 'bamf' 'unique1') @@ -15,7 +15,7 @@ _F_gnome_desktop="y" Finclude gnome-scriptlet up2date="Flasttar http://ftp.frugalware.org/pub/other/people/devil505/snapshots/$pkgname" source=(http://ftp.frugalware.org/pub/other/people/devil505/snapshots/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('b7f3a8ee564dfc97c988d50d176aa46db7995a48') +sha1sums=('87420a24038f84083f3d9ff39823c58aa87c562d') build() { Fcd From vmiklos at frugalware.org Mon Apr 11 10:43:02 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 10:43:02 +0200 (CEST) Subject: [Frugalware-git] boost14: fgrun-1.5.2-4-i686 Message-ID: <20110411084302.10B631358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=c4d45e0add221ecdf8c67055ae8a4a3ca05e1e97 commit c4d45e0add221ecdf8c67055ae8a4a3ca05e1e97 Author: Miklos Vajna Date: Mon Apr 11 10:29:35 2011 +0200 fgrun-1.5.2-4-i686 - rebuild with boost>=1.46.1 diff --git a/source/games-extra/fgrun/FrugalBuild b/source/games-extra/fgrun/FrugalBuild index 8a74353..f5a8ff8 100644 --- a/source/games-extra/fgrun/FrugalBuild +++ b/source/games-extra/fgrun/FrugalBuild @@ -3,10 +3,10 @@ pkgname=fgrun pkgver=1.5.2 -pkgrel=3 +pkgrel=4 pkgdesc="A graphical frontend to run FlightGear Flight Simulator." Finclude sourceforge -depends=('flightgear>=2.0.0-2' 'simgear>=2.0.0-2' 'openscenegraph>=2.8.3-2' 'fltk' 'libuuid') +depends=('flightgear>=2.0.0-5' 'simgear>=2.0.0-2' 'openscenegraph>=2.8.3-2' 'fltk' 'libuuid') makedepends=('boost') groups=(games-extra) archs=('i686' 'x86_64') From vmiklos at frugalware.org Mon Apr 11 10:53:43 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 10:53:43 +0200 (CEST) Subject: [Frugalware-git] boost14: cgal-3.7-3-i686 Message-ID: <20110411085343.C09341358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=ad1ad28e442b851a78434327acf6178c755b4e7b commit ad1ad28e442b851a78434327acf6178c755b4e7b Author: Miklos Vajna Date: Mon Apr 11 10:40:13 2011 +0200 cgal-3.7-3-i686 - rebuild with boost>=1.46.1 diff --git a/source/lib-extra/cgal/FrugalBuild b/source/lib-extra/cgal/FrugalBuild index 903fb77..e858266 100644 --- a/source/lib-extra/cgal/FrugalBuild +++ b/source/lib-extra/cgal/FrugalBuild @@ -4,11 +4,11 @@ pkgname=cgal pkgver=3.7 rel_id=27640 -pkgrel=2 +pkgrel=3 pkgdesc="An efficient C++ software library of geometric data structures and algorithms" url="http://www.cgal.org/" -depends=('mpfr>=3.0.0' 'libboost-mt') -makedepends=('cmake' 'boost') +depends=('mpfr>=3.0.0' 'libboost>=1.46.1') +makedepends=('cmake' 'boost>=1.46.1') groups=('lib-extra') archs=('i686' 'x86_64') _F_archive_name="CGAL" From vmiklos at frugalware.org Mon Apr 11 11:04:45 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 11:04:45 +0200 (CEST) Subject: [Frugalware-git] boost14: source-highlight-3.1.4-2-i686 Message-ID: <20110411090445.6E8561358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=c130ee69661f0c4a6ad817f3cf6ab778fd380723 commit c130ee69661f0c4a6ad817f3cf6ab778fd380723 Author: Miklos Vajna Date: Mon Apr 11 10:51:16 2011 +0200 source-highlight-3.1.4-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/devel-extra/source-highlight/FrugalBuild b/source/devel-extra/source-highlight/FrugalBuild index cae1574..52b8211 100644 --- a/source/devel-extra/source-highlight/FrugalBuild +++ b/source/devel-extra/source-highlight/FrugalBuild @@ -3,11 +3,11 @@ pkgname=source-highlight pkgver=3.1.4 -pkgrel=1 +pkgrel=2 pkgdesc="Given a source file, produces a document with syntax highlighting." url="http://www.gnu.org/software/src-highlite/" -depends=('libboost-mt' 'ctags') -makedepends=('boost') +depends=('libboost>=1.46.1' 'ctags') +makedepends=('boost>=1.46.1') groups=('devel-extra') archs=('i686' 'x86_64') up2date="Flasttar http://ftp.gnu.org/gnu/src-highlite" @@ -17,7 +17,7 @@ signatures=($source.sig) build() { - Fbuild + Fbuild --with-boost-regex=boost_regex # conflicts with boost Frm /usr/share/aclocal } From vmiklos at frugalware.org Mon Apr 11 11:19:31 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 11:19:31 +0200 (CEST) Subject: [Frugalware-git] boost14: supertux-0.3.3-4-i686 Message-ID: <20110411091931.562721358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=8f79d17c3aac4175d2fd562a9195980ff4b2ec28 commit 8f79d17c3aac4175d2fd562a9195980ff4b2ec28 Author: Miklos Vajna Date: Mon Apr 11 11:05:42 2011 +0200 supertux-0.3.3-4-i686 - rebuild with boost>=1.46.1 diff --git a/source/games-extra/supertux/FrugalBuild b/source/games-extra/supertux/FrugalBuild index 6654ad8c..1d15126 100644 --- a/source/games-extra/supertux/FrugalBuild +++ b/source/games-extra/supertux/FrugalBuild @@ -3,12 +3,13 @@ pkgname=supertux pkgver=0.3.3 -pkgrel=3 +pkgrel=4 pkgdesc="SuperTux is a classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games." _F_googlecode_ext=".tar.bz2" Finclude googlecode url="http://supertux.lethargik.org/" -depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.2' 'openal>=1.7.411' 'libvorbis' 'mesa' 'glew' 'boost') +depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.2' 'openal>=1.7.411' 'libvorbis' 'mesa' 'glew' 'libboost>=1.46.1') +makedepends=('boost') groups=('games-extra') archs=('i686' 'x86_64') license="GPL" From vmiklos at frugalware.org Mon Apr 11 11:43:41 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 11:43:41 +0200 (CEST) Subject: [Frugalware-git] boost14: referencer-1.1.6-7-i686 Message-ID: <20110411094341.D79A7BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=d83033ce0924b98f61e780029fdce3f5a657090b commit d83033ce0924b98f61e780029fdce3f5a657090b Author: Miklos Vajna Date: Mon Apr 11 11:30:15 2011 +0200 referencer-1.1.6-7-i686 - rebuild with boost>=1.46.1 diff --git a/source/gnome-extra/referencer/FrugalBuild b/source/gnome-extra/referencer/FrugalBuild index bfa7bb2..29c1bdb 100644 --- a/source/gnome-extra/referencer/FrugalBuild +++ b/source/gnome-extra/referencer/FrugalBuild @@ -3,14 +3,14 @@ pkgname=referencer pkgver=1.1.6 -pkgrel=6 +pkgrel=7 pkgdesc="Referencer is a Gnome application to organise documents or references" url="http://icculus.org/referencer" up2date="lynx -dump $url/downloads/ | Flasttar" -source=(${url}/downloads/$pkgname-$pkgver.tar.gz) +source=(${url}/downloads/$pkgname-$pkgver.tar.gz referencer-poppler-0.15.patch) options=('scriptlet') depends=('libgnomeuimm>=2.26.0-3' 'libsm' 'popt' 'esd' 'gail>=2.20.0-2' 'libart_lgpl' 'python>=2.7' \ - 'atk' 'poppler-glib>=0.14.3' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libboost' \ + 'atk' 'poppler-glib>=0.14.3' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libboost>=1.46.1' \ 'libxdamage' 'openssl>=1.0.0' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor') makedepends=('boost' 'perl-xml-parser' 'intltool' 'gnome-doc-utils') _F_gnome_iconcache="y" @@ -19,6 +19,7 @@ Finclude gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') Fconfopts="${Fconfopts[@]} --disable-update-mime-database" -sha1sums=('232d7f1ffc6f393d174f3a543834579df5a3f93b') +sha1sums=('232d7f1ffc6f393d174f3a543834579df5a3f93b' \ + 'ec77cdc4f8d9c5429e8a2e404fd6eb33de6ea7c2') # optimization OK diff --git a/source/gnome-extra/referencer/referencer-poppler-0.15.patch b/source/gnome-extra/referencer/referencer-poppler-0.15.patch new file mode 100644 index 0000000..b228e02 --- /dev/null +++ b/source/gnome-extra/referencer/referencer-poppler-0.15.patch @@ -0,0 +1,8895 @@ +--- configure.in 2009-06-21 13:01:46.000000000 +0200 ++++ configure.in 2010-10-08 12:24:26.000000000 +0200 +@@ -49,12 +49,14 @@ AC_CHECK_LIB(boost_regex, [main], , [ + AC_CHECK_HEADERS(boost/regex.hpp) + AC_SUBST(DEPS_CFLAGS) + AC_SUBST(DEPS_LIBS) ++LIBS="$LIBS $DEPS_LIBS" + + dnl Special case for poppler-glib < 0.6 + case $($PKG_CONFIG --modversion poppler-glib) in + 0.5.*) + AC_DEFINE(OLD_POPPLER,"1","Using poppler < 0.6");; + esac ++AC_CHECK_FUNCS([poppler_page_get_selected_text]) + + + dnl I18n +--- src/Document.C 2009-08-02 11:16:46.000000000 +0200 ++++ src/Document.C 2010-10-08 09:39:22.000000000 +0200 +@@ -488,7 +488,11 @@ bool Document::readPDF () + textdump += poppler_page_get_text (page, rect); + #else + #warning Using poppler >= 0.6 +- textdump += poppler_page_get_text (page, POPPLER_SELECTION_GLYPH, rect); ++ #ifdef HAVE_POPPLER_PAGE_GET_SELECTED_TEXT ++ textdump += poppler_page_get_text (page); ++ #else ++ textdump += poppler_page_get_text (page, POPPLER_SELECTION_GLYPH, rect); ++ #endif + #endif + + poppler_rectangle_free (rect); + +--- configure.orig 2010-10-15 14:47:05.522479121 -0400 ++++ configure 2010-10-15 14:47:59.429237043 -0400 +@@ -1,18 +1,22 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.63. ++# Generated by GNU Autoconf 2.66. ++# + # + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software ++# Foundation, Inc. ++# ++# + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++## -------------------- ## ++## M4sh Initialization. ## ++## -------------------- ## + + # Be more Bourne compatible + DUALCASE=1; export DUALCASE # for MKS sh +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +@@ -20,23 +24,15 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- + as_nl=' + ' + export as_nl +@@ -44,7 +40,13 @@ + as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' + else +@@ -55,7 +57,7 @@ + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; +- case $arg in ++ case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +@@ -78,13 +80,6 @@ + } + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- + + # IFS + # We need space, tab and new line, in precisely that order. Quoting is +@@ -94,15 +89,15 @@ + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -114,12 +109,16 @@ + fi + if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' +@@ -131,330 +130,299 @@ + LANGUAGE=C + export LANGUAGE + +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then +- as_basename=basename +-else +- as_basename=false +-fi +- +- +-# Name of the executable. +-as_me=`$as_basename -- "$0" || +-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- + # CDPATH. +-$as_unset CDPATH +- ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + if test "x$CONFIG_SHELL" = x; then +- if (eval ":") 2>/dev/null; then +- as_have_required=yes ++ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : ++ emulate sh ++ NULLCMD=: ++ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '\${1+\"\$@\"}'='\"\$@\"' ++ setopt NO_GLOB_SUBST + else +- as_have_required=no ++ case \`(set -o) 2>/dev/null\` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; ++esac + fi +- +- if test $as_have_required = yes && (eval ": +-(as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++" ++ as_required="as_fn_return () { (exit \$1); } ++as_fn_success () { as_fn_return 0; } ++as_fn_failure () { as_fn_return 1; } ++as_fn_ret_success () { return 0; } ++as_fn_ret_failure () { return 1; } + + exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. +-fi +- +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++as_fn_success || { exitcode=1; echo as_fn_success failed.; } ++as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } ++as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } ++as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } ++if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : ++ ++else ++ exitcode=1; echo positional parameters were not saved. ++fi ++test x\$exitcode = x0 || exit 1" ++ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO ++ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO ++ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && ++ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 ++test \$(( 1 + 1 )) = 2 || exit 1" ++ if (eval "$as_required") 2>/dev/null; then : ++ as_have_required=yes + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_have_required=no + fi ++ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +-test \$exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=\$LINENO +- as_lineno_2=\$LINENO +- test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && +- test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } +-") 2> /dev/null; then +- : + else +- as_candidate_shells= +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++as_found=false + for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- case $as_dir in ++ as_found=: ++ case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do +- as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ++ # Try only shells that exist, to save several forks. ++ as_shell=$as_dir/$as_base ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ CONFIG_SHELL=$as_shell as_have_required=yes ++ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ break 2 ++fi ++fi + done;; + esac ++ as_found=false + done ++$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : ++ CONFIG_SHELL=$SHELL as_have_required=yes ++fi; } + IFS=$as_save_IFS + + +- for as_shell in $as_candidate_shells $SHELL; do +- # Try only shells that exist, to save several forks. +- if { test -f "$as_shell" || test -f "$as_shell.exe"; } && +- { ("$as_shell") 2> /dev/null <<\_ASEOF +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-_ASEOF +-}; then +- CONFIG_SHELL=$as_shell +- as_have_required=yes +- if { "$as_shell" 2> /dev/null <<\_ASEOF +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-(as_func_return () { +- (exit $1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} +- +-exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. ++ if test "x$CONFIG_SHELL" != x; then : ++ # We cannot yet assume a decent shell, so we have to provide a ++ # neutralization value for shells without unset; and this also ++ # works around shells that cannot unset nonexistent variables. ++ BASH_ENV=/dev/null ++ ENV=/dev/null ++ (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV ++ export CONFIG_SHELL ++ exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} + fi + +-if ( set x; as_func_ret_success y && test x = "$1" ); then +- : +-else +- exitcode=1 +- echo positional parameters were not saved. ++ if test x$as_have_required = xno; then : ++ $as_echo "$0: This script requires a shell more modern than all" ++ $as_echo "$0: the shells that I found on your system." ++ if test x${ZSH_VERSION+set} = xset ; then ++ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" ++ $as_echo "$0: be upgraded to zsh 4.3.4 or later." ++ else ++ $as_echo "$0: Please tell bug-autoconf at gnu.org about your system, ++$0: including any error possibly output before this ++$0: message. Then install a modern shell, or manually run ++$0: the script under such a shell if you do have one." ++ fi ++ exit 1 + fi +- +-test $exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } +- +-_ASEOF +-}; then +- break + fi +- + fi ++SHELL=${CONFIG_SHELL-/bin/sh} ++export SHELL ++# Unset more variables known to interfere with behavior of common tools. ++CLICOLOR_FORCE= GREP_OPTIONS= ++unset CLICOLOR_FORCE GREP_OPTIONS + +- done +- +- if test "x$CONFIG_SHELL" != x; then +- for as_var in BASH_ENV ENV +- do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- done +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +-fi ++## --------------------- ## ++## M4sh Shell Functions. ## ++## --------------------- ## ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset + ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status + +- if test $as_have_required = no; then +- echo This script requires a shell more modern than all the +- echo shells that I found on your system. Please install a +- echo modern shell, or manually run the script under such a +- echo shell if you do have one. +- { (exit 1); exit 1; } +-fi ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ + ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + +-fi + +-fi ++} # as_fn_mkdir_p ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append + ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith + + +-(eval "as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++# as_fn_error STATUS ERROR [LINENO LOG_FD] ++# ---------------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with STATUS, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$1; test $as_status -eq 0 && as_status=1 ++ if test "$4"; then ++ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 ++ fi ++ $as_echo "$as_me: error: $2" >&2 ++ as_fn_exit $as_status ++} # as_fn_error + +-exitcode=0 +-if as_func_success; then +- : ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr + else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. ++ as_expr=false + fi + +-if as_func_ret_success; then +- : ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename + else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. ++ as_basename=false + fi + +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_dirname=false + fi + +-test \$exitcode = 0") || { +- echo No shell found that supports shell functions. +- echo Please tell bug-autoconf at gnu.org about your system, +- echo including any error possibly output before this message. +- echo This can help us improve future autoconf versions. +- echo Configuration will now proceed without shell functions. +-} ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` + ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) ++ as_lineno_1=$LINENO as_lineno_1a=$LINENO ++ as_lineno_2=$LINENO as_lineno_2a=$LINENO ++ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && ++ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { ++ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= +@@ -471,8 +439,7 @@ + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the +@@ -482,29 +449,18 @@ + exit + } + +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi +- + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi + + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then +@@ -534,7 +490,7 @@ + rmdir conf$$.dir 2>/dev/null + + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +@@ -553,10 +509,10 @@ + if test -d "$1"; then + test -d "$1/."; + else +- case $1 in ++ case $1 in #( + -*)set "./$1";; + esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +@@ -570,11 +526,11 @@ + as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +- +-exec 7<&0 &1 ++test -n "$DJDIR" || exec 7<&0 &1 + + # Name of the host. +-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, ++# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, + # so uname gets run too. + ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +@@ -589,7 +545,6 @@ + subdirs= + MFLAGS= + MAKEFLAGS= +-SHELL=${CONFIG_SHELL-/bin/sh} + + # Identity of this package. + PACKAGE_NAME= +@@ -597,6 +552,7 @@ + PACKAGE_VERSION= + PACKAGE_STRING= + PACKAGE_BUGREPORT= ++PACKAGE_URL= + + ac_unique_file="src/RefWindow.C" + # Factoring default headers for most tests. +@@ -635,7 +591,9 @@ + # include + #endif" + +-ac_subst_vars='LTLIBOBJS ++ac_subst_vars='am__EXEEXT_FALSE ++am__EXEEXT_TRUE ++LTLIBOBJS + LIBOBJS + enable_python + ENABLE_PYTHON_FALSE +@@ -734,6 +692,8 @@ + DOC_USER_FORMATS + OMF_DIR + HELP_DIR ++PKG_CONFIG_LIBDIR ++PKG_CONFIG_PATH + PKG_CONFIG + LN_S + ACLOCAL_AMFLAGS +@@ -790,6 +750,7 @@ + program_transform_name + prefix + exec_prefix ++PACKAGE_URL + PACKAGE_BUGREPORT + PACKAGE_STRING + PACKAGE_VERSION +@@ -813,6 +774,8 @@ + host_alias + target_alias + PKG_CONFIG ++PKG_CONFIG_PATH ++PKG_CONFIG_LIBDIR + CXX + CXXFLAGS + LDFLAGS +@@ -932,8 +895,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -959,8 +921,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1164,8 +1125,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1181,8 +1141,7 @@ + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in +@@ -1212,17 +1171,17 @@ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { $as_echo "$as_me: error: unrecognized option: $ac_option +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ++ -*) as_fn_error $? "unrecognized option: \`$ac_option' ++Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. +- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 +- { (exit 1); exit 1; }; } ++ case $ac_envvar in #( ++ '' | [0-9]* | *[!_$as_cr_alnum]* ) ++ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; ++ esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + +@@ -1239,15 +1198,13 @@ + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { $as_echo "$as_me: error: missing argument to $ac_option" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "missing argument to $ac_option" + fi + + if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; +- fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 +- { (exit 1); exit 1; }; } ;; ++ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac + fi +@@ -1270,8 +1227,7 @@ + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac +- { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" + done + + # There might be people who depend on the old broken behavior: `$host' +@@ -1285,8 +1241,8 @@ + if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe +- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. +- If a cross compiler is detected then cross compile mode will be used." >&2 ++ $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. ++ If a cross compiler is detected then cross compile mode will be used" >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +@@ -1301,11 +1257,9 @@ + ac_pwd=`pwd` && test -n "$ac_pwd" && + ac_ls_di=`ls -di .` && + ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || +- { $as_echo "$as_me: error: working directory cannot be determined" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "working directory cannot be determined" + test "X$ac_ls_di" = "X$ac_pwd_ls_di" || +- { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "pwd does not report name of working directory" + + + # Find the source files, if location was not specified. +@@ -1344,13 +1298,11 @@ + fi + if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." +- { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" + fi + ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" + ac_abs_confdir=`( +- cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 +- { (exit 1); exit 1; }; } ++ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` + # When building in place, set srcdir=. + if test "$ac_abs_confdir" = "$ac_pwd"; then +@@ -1390,7 +1342,7 @@ + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit +- -q, --quiet, --silent do not print \`checking...' messages ++ -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files +@@ -1467,12 +1419,16 @@ + + Some influential environment variables: + PKG_CONFIG path to pkg-config utility ++ PKG_CONFIG_PATH ++ directories to add to pkg-config's search path ++ PKG_CONFIG_LIBDIR ++ path overriding pkg-config's built-in search path + CXX C++ compiler command + CXXFLAGS C++ compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l +- CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if ++ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + DEPS_CFLAGS C compiler flags for DEPS, overriding pkg-config + DEPS_LIBS linker flags for DEPS, overriding pkg-config +@@ -1483,6 +1439,7 @@ + Use these variables to override the choices made by `configure' or to help + it to find libraries and programs with nonstandard names/locations. + ++Report bugs to the package provider. + _ACEOF + ac_status=$? + fi +@@ -1546,21 +1503,410 @@ + if $ac_init_version; then + cat <<\_ACEOF + configure +-generated by GNU Autoconf 2.63 ++generated by GNU Autoconf 2.66 + +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++Copyright (C) 2010 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF + exit + fi ++ ++## ------------------------ ## ++## Autoconf initialization. ## ++## ------------------------ ## ++ ++# ac_fn_cxx_try_compile LINENO ++# ---------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_compile ++ ++# ac_fn_cxx_try_link LINENO ++# ------------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # interfere with the next link command; also delete a directory that is ++ # left behind by Apple's compiler. We do this before executing the actions. ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_link ++ ++# ac_fn_cxx_try_cpp LINENO ++# ------------------------ ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_cpp ++ ++# ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES ++# --------------------------------------------------------- ++# Tests whether HEADER exists, giving a warning if it cannot be compiled using ++# the include files in INCLUDES and setting the cache variable VAR ++# accordingly. ++ac_fn_cxx_check_header_mongrel () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if eval "test \"\${$3+set}\"" = set; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval "test \"\${$3+set}\"" = set; then : ++ $as_echo_n "(cached) " >&6 ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++else ++ # Is the header compilable? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 ++$as_echo_n "checking $2 usability... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_compile "$LINENO"; then : ++ ac_header_compiler=yes ++else ++ ac_header_compiler=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } ++ ++# Is the header present? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 ++$as_echo_n "checking $2 presence... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_cpp "$LINENO"; then : ++ ac_header_preproc=yes ++else ++ ac_header_preproc=no ++fi ++rm -f conftest.err conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } ++ ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( ++ yes:no: ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++ no:yes:* ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval "test \"\${$3+set}\"" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=\$ac_header_compiler" ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ ++} # ac_fn_cxx_check_header_mongrel ++ ++# ac_fn_cxx_try_run LINENO ++# ------------------------ ++# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes ++# that executables *can* be run. ++ac_fn_cxx_try_run () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=$ac_status ++fi ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_run ++ ++# ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES ++# --------------------------------------------------------- ++# Tests whether HEADER exists and can be compiled using the include files in ++# INCLUDES, setting the cache variable VAR accordingly. ++ac_fn_cxx_check_header_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval "test \"\${$3+set}\"" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_compile "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ ++} # ac_fn_cxx_check_header_compile ++ ++# ac_fn_cxx_check_func LINENO FUNC VAR ++# ------------------------------------ ++# Tests whether FUNC exists, setting the cache variable VAR accordingly ++ac_fn_cxx_check_func () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval "test \"\${$3+set}\"" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++/* Define $2 to an innocuous variant, in case declares $2. ++ For example, HP-UX 11i declares gettimeofday. */ ++#define $2 innocuous_$2 ++ ++/* System header to define __stub macros and hopefully few prototypes, ++ which can conflict with char $2 (); below. ++ Prefer to if __STDC__ is defined, since ++ exists even on freestanding compilers. */ ++ ++#ifdef __STDC__ ++# include ++#else ++# include ++#endif ++ ++#undef $2 ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char $2 (); ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined __stub_$2 || defined __stub___$2 ++choke me ++#endif ++ ++int ++main () ++{ ++return $2 (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_cxx_try_link "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ ++} # ac_fn_cxx_check_func ++ ++# ac_fn_c_try_compile LINENO ++# -------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_compile + cat >config.log <<_ACEOF + This file contains any messages produced by compilers while + running configure, to aid debugging if configure makes a mistake. + + It was created by $as_me, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++generated by GNU Autoconf 2.66. Invocation command line was + + $ $0 $@ + +@@ -1596,8 +1942,8 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- $as_echo "PATH: $as_dir" +-done ++ $as_echo "PATH: $as_dir" ++ done + IFS=$as_save_IFS + + } >&5 +@@ -1634,9 +1980,9 @@ + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in +- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; ++ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) +- ac_configure_args1="$ac_configure_args1 '$ac_arg'" ++ as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else +@@ -1652,13 +1998,13 @@ + -* ) ac_must_keep_next=true ;; + esac + fi +- ac_configure_args="$ac_configure_args '$ac_arg'" ++ as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done + done +-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++{ ac_configure_args0=; unset ac_configure_args0;} ++{ ac_configure_args1=; unset ac_configure_args1;} + + # When interrupted or exit'd, cleanup temporary files, and complete + # config.log. We remove comments because anyway the quotes in there +@@ -1670,11 +2016,9 @@ + { + echo + +- cat <<\_ASBOX +-## ---------------- ## ++ $as_echo "## ---------------- ## + ## Cache variables. ## +-## ---------------- ## +-_ASBOX ++## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, + ( +@@ -1683,13 +2027,13 @@ + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 + $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( +- *) $as_unset $ac_var ;; ++ *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done +@@ -1708,11 +2052,9 @@ + ) + echo + +- cat <<\_ASBOX +-## ----------------- ## ++ $as_echo "## ----------------- ## + ## Output variables. ## +-## ----------------- ## +-_ASBOX ++## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do +@@ -1725,11 +2067,9 @@ + echo + + if test -n "$ac_subst_files"; then +- cat <<\_ASBOX +-## ------------------- ## ++ $as_echo "## ------------------- ## + ## File substitutions. ## +-## ------------------- ## +-_ASBOX ++## ------------------- ##" + echo + for ac_var in $ac_subst_files + do +@@ -1743,11 +2083,9 @@ + fi + + if test -s confdefs.h; then +- cat <<\_ASBOX +-## ----------- ## ++ $as_echo "## ----------- ## + ## confdefs.h. ## +-## ----------- ## +-_ASBOX ++## ----------- ##" + echo + cat confdefs.h + echo +@@ -1761,46 +2099,53 @@ + exit $exit_status + ' 0 + for ac_signal in 1 2 13 15; do +- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal ++ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal + done + ac_signal=0 + + # confdefs.h avoids OS command line length limits that DEFS can exceed. + rm -f -r conftest* confdefs.h + ++$as_echo "/* confdefs.h */" > confdefs.h ++ + # Predefined preprocessor variables. + + cat >>confdefs.h <<_ACEOF + #define PACKAGE_NAME "$PACKAGE_NAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_TARNAME "$PACKAGE_TARNAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_VERSION "$PACKAGE_VERSION" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_STRING "$PACKAGE_STRING" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" + _ACEOF + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_URL "$PACKAGE_URL" ++_ACEOF ++ + + # Let the site file select an alternate cache file if it wants to. + # Prefer an explicitly selected file to automatically selected ones. + ac_site_file1=NONE + ac_site_file2=NONE + if test -n "$CONFIG_SITE"; then +- ac_site_file1=$CONFIG_SITE ++ # We do not want a PATH search for config.site. ++ case $CONFIG_SITE in #(( ++ -*) ac_site_file1=./$CONFIG_SITE;; ++ */*) ac_site_file1=$CONFIG_SITE;; ++ *) ac_site_file1=./$CONFIG_SITE;; ++ esac + elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +@@ -1811,19 +2156,23 @@ + for ac_site_file in "$ac_site_file1" "$ac_site_file2" + do + test "x$ac_site_file" = xNONE && continue +- if test -r "$ac_site_file"; then +- { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 ++ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 + $as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 +- . "$ac_site_file" ++ . "$ac_site_file" \ ++ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "failed to load site script $ac_site_file ++See \`config.log' for more details" "$LINENO" 5; } + fi + done + + if test -r "$cache_file"; then +- # Some versions of bash will fail to source /dev/null (special +- # files actually), so we avoid doing that. +- if test -f "$cache_file"; then +- { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 ++ # Some versions of bash will fail to source /dev/null (special files ++ # actually), so we avoid doing that. DJGPP emulates it as a regular file. ++ if test /dev/null != "$cache_file" && test -f "$cache_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 + $as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; +@@ -1831,7 +2180,7 @@ + esac + fi + else +- { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 + $as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file + fi +@@ -1846,11 +2195,11 @@ + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 + $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; +@@ -1860,17 +2209,17 @@ + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 + $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else +- { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 + $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi +- { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 + $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} +- { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 + $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac +@@ -1882,35 +2231,20 @@ + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. +- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi + done + if $ac_cache_corrupted; then +- { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +- { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 + $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + fi +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ++## -------------------- ## ++## Main body of script. ## ++## -------------------- ## + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -1928,7 +2262,7 @@ + VERSION=1.1.6 + + +-am__api_version='1.10' ++am__api_version='1.11' + + ac_aux_dir= + for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do +@@ -1947,9 +2281,7 @@ + fi + done + if test -z "$ac_aux_dir"; then +- { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 +-$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 + fi + + # These three variables are undocumented and unsupported, +@@ -1975,10 +2307,10 @@ + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. + # Reject install programs that cannot install multiple files. +-{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 + $as_echo_n "checking for a BSD-compatible install... " >&6; } + if test -z "$INSTALL"; then +-if test "${ac_cv_path_install+set}" = set; then ++if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +@@ -1986,11 +2318,11 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ ++ # Account for people who put trailing slashes in PATH elements. ++case $as_dir/ in #(( ++ ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ ++ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. +@@ -2027,7 +2359,7 @@ + ;; + esac + +-done ++ done + IFS=$as_save_IFS + + rm -rf conftest.one conftest.two conftest.dir +@@ -2043,7 +2375,7 @@ + INSTALL=$ac_install_sh + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 + $as_echo "$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. +@@ -2054,21 +2386,34 @@ + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 + $as_echo_n "checking whether build environment is sane... " >&6; } + # Just in case + sleep 1 + echo timestamp > conftest.file ++# Reject unsafe characters in $srcdir or the absolute working directory ++# name. Accept space and tab only in the latter. ++am_lf=' ++' ++case `pwd` in ++ *[\\\"\#\$\&\'\`$am_lf]*) ++ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; ++esac ++case $srcdir in ++ *[\\\"\#\$\&\'\`$am_lf\ \ ]*) ++ as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; ++esac ++ + # Do `set' in a subshell so we don't clobber the current shell's + # arguments. Must try -L first in case configure is actually a + # symlink; some systems play weird games with the mod time of symlinks + # (eg FreeBSD returns the mod time of the symlink's containing + # directory). + if ( +- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` ++ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. +- set X `ls -t $srcdir/configure conftest.file` ++ set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ +@@ -2078,11 +2423,8 @@ + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". +- { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&5 +-$as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken ++alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file +@@ -2091,13 +2433,10 @@ + # Ok. + : + else +- { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! +-Check your system clock" >&5 +-$as_echo "$as_me: error: newly created file is older than distributed files! +-Check your system clock" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "newly created file is older than distributed files! ++Check your system clock" "$LINENO" 5 + fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +@@ -2112,20 +2451,136 @@ + # expand $ac_aux_dir to an absolute path + am_aux_dir=`cd $ac_aux_dir && pwd` + +-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" ++if test x"${MISSING+set}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; ++ *) ++ MISSING="\${SHELL} $am_aux_dir/missing" ;; ++ esac ++fi + # Use eval to expand $SHELL + if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " + else + am_missing_run= +- { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 + $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + +-{ $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 ++if test x"${install_sh}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; ++ *) ++ install_sh="\${SHELL} $am_aux_dir/install-sh" ++ esac ++fi ++ ++# Installed binaries are usually stripped using `strip' when the user ++# run `make install-strip'. However `strip' might not be the right ++# tool to use in cross-compilation environments, therefore Automake ++# will honor the `STRIP' environment variable to overrule this program. ++if test "$cross_compiling" != no; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. ++set dummy ${ac_tool_prefix}strip; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if test "${ac_cv_prog_STRIP+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$STRIP"; then ++ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_STRIP="${ac_tool_prefix}strip" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++fi ++fi ++STRIP=$ac_cv_prog_STRIP ++if test -n "$STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_STRIP"; then ++ ac_ct_STRIP=$STRIP ++ # Extract the first word of "strip", so it can be a program name with args. ++set dummy strip; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$ac_ct_STRIP"; then ++ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_STRIP="strip" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP ++if test -n "$ac_ct_STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ if test "x$ac_ct_STRIP" = x; then ++ STRIP=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ STRIP=$ac_ct_STRIP ++ fi ++else ++ STRIP="$ac_cv_prog_STRIP" ++fi ++ ++fi ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 + $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } + if test -z "$MKDIR_P"; then +- if test "${ac_cv_path_mkdir+set}" = set; then ++ if test "${ac_cv_path_mkdir+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +@@ -2133,7 +2588,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in mkdir gmkdir; do ++ for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( +@@ -2145,11 +2600,12 @@ + esac + done + done +-done ++ done + IFS=$as_save_IFS + + fi + ++ test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else +@@ -2157,11 +2613,10 @@ + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. +- test -d ./--version && rmdir ./--version + MKDIR_P="$ac_install_sh -d" + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 + $as_echo "$MKDIR_P" >&6; } + + mkdir_p="$MKDIR_P" +@@ -2174,9 +2629,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_AWK+set}" = set; then ++if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$AWK"; then +@@ -2187,24 +2642,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AWK=$ac_cv_prog_AWK + if test -n "$AWK"; then +- { $as_echo "$as_me:$LINENO: result: $AWK" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 + $as_echo "$AWK" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -2212,11 +2667,11 @@ + test -n "$AWK" && break + done + +-{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 + $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } + set x ${MAKE-make} + ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then ++if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : + $as_echo_n "(cached) " >&6 + else + cat >conftest.make <<\_ACEOF +@@ -2224,7 +2679,7 @@ + all: + @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF +-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. + case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; +@@ -2234,177 +2689,73 @@ + rm -f conftest.make + fi + if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +- SET_MAKE= +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- SET_MAKE="MAKE=${MAKE-make}" +-fi +- +-rm -rf .tst 2>/dev/null +-mkdir .tst 2>/dev/null +-if test -d .tst; then +- am__leading_dot=. +-else +- am__leading_dot=_ +-fi +-rmdir .tst 2>/dev/null +- +-if test "`cd $srcdir && pwd`" != "`pwd`"; then +- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output +- # is not polluted with repeated "-I." +- am__isrc=' -I$(srcdir)' +- # test to see if srcdir already configured +- if test -f $srcdir/config.status; then +- { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +-$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} +- { (exit 1); exit 1; }; } +- fi +-fi +- +-# test whether we have cygpath +-if test -z "$CYGPATH_W"; then +- if (cygpath --version) >/dev/null 2>/dev/null; then +- CYGPATH_W='cygpath -w' +- else +- CYGPATH_W=echo +- fi +-fi +- +- +-# Define the identity of the package. +- PACKAGE=$PACKAGE +- VERSION=$VERSION +- +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE "$PACKAGE" +-_ACEOF +- +- +-cat >>confdefs.h <<_ACEOF +-#define VERSION "$VERSION" +-_ACEOF +- +-# Some tools Automake needs. +- +-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} +- +- +-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} +- +- +-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} +- +- +-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} +- +- +-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} +- +-install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +- +-# Installed binaries are usually stripped using `strip' when the user +-# run `make install-strip'. However `strip' might not be the right +-# tool to use in cross-compilation environments, therefore Automake +-# will honor the `STRIP' environment variable to overrule this program. +-if test "$cross_compiling" != no; then +- if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +-set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_STRIP+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- if test -n "$STRIP"; then +- ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +-fi +-fi +-STRIP=$ac_cv_prog_STRIP +-if test -n "$STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 +-$as_echo "$STRIP" >&6; } +-else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +-fi +-if test -z "$ac_cv_prog_STRIP"; then +- ac_ct_STRIP=$STRIP +- # Extract the first word of "strip", so it can be a program name with args. +-set dummy strip; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- if test -n "$ac_ct_STRIP"; then +- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_prog_ac_ct_STRIP="strip" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +-fi +-fi +-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +-if test -n "$ac_ct_STRIP"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-$as_echo "$ac_ct_STRIP" >&6; } ++ SET_MAKE= + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } ++ SET_MAKE="MAKE=${MAKE-make}" + fi + +- if test "x$ac_ct_STRIP" = x; then +- STRIP=":" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +-ac_tool_warned=yes ;; +-esac +- STRIP=$ac_ct_STRIP +- fi ++rm -rf .tst 2>/dev/null ++mkdir .tst 2>/dev/null ++if test -d .tst; then ++ am__leading_dot=. + else +- STRIP="$ac_cv_prog_STRIP" ++ am__leading_dot=_ + fi ++rmdir .tst 2>/dev/null + ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ am__isrc=' -I$(srcdir)' ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 ++ fi + fi +-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ++ ++# test whether we have cygpath ++if test -z "$CYGPATH_W"; then ++ if (cygpath --version) >/dev/null 2>/dev/null; then ++ CYGPATH_W='cygpath -w' ++ else ++ CYGPATH_W=echo ++ fi ++fi ++ ++ ++# Define the identity of the package. ++ PACKAGE=$PACKAGE ++ VERSION=$VERSION ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE "$PACKAGE" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define VERSION "$VERSION" ++_ACEOF ++ ++# Some tools Automake needs. ++ ++ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} ++ ++ ++AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} ++ ++ ++AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} ++ ++ ++AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} ++ ++ ++MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + + # We need awk for the "check" target. The system "awk" is bad on + # some platforms. +@@ -2431,26 +2782,30 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 + $as_echo_n "checking whether ln -s works... " >&6; } + LN_S=$as_ln_s + if test "$LN_S" = "ln -s"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 + $as_echo "no, using $LN_S" >&6; } + fi + + + ++ ++ ++ ++ + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. + set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then ++if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $PKG_CONFIG in +@@ -2463,14 +2818,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -2478,10 +2833,10 @@ + fi + PKG_CONFIG=$ac_cv_path_PKG_CONFIG + if test -n "$PKG_CONFIG"; then +- { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 + $as_echo "$PKG_CONFIG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -2491,9 +2846,9 @@ + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. + set dummy pkg-config; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then ++if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $ac_pt_PKG_CONFIG in +@@ -2506,14 +2861,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -2521,10 +2876,10 @@ + fi + ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG + if test -n "$ac_pt_PKG_CONFIG"; then +- { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 + $as_echo "$ac_pt_PKG_CONFIG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -2533,7 +2888,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -2546,27 +2901,26 @@ + fi + if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 +- { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + PKG_CONFIG="" + fi +- + fi + + gdu_cv_version_required=0.3.2 + + if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnome-doc-utils >= \$gdu_cv_version_required\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-doc-utils >= \$gdu_cv_version_required\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gnome-doc-utils >= $gdu_cv_version_required") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + gdu_cv_have_gdu=yes + else + gdu_cv_have_gdu=no +@@ -2575,15 +2929,13 @@ + if test "$gdu_cv_have_gdu" = "yes"; then + : + else +- { { $as_echo "$as_me:$LINENO: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&5 +-$as_echo "$as_me: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "gnome-doc-utils >= $gdu_cv_version_required not found" "$LINENO" 5 + fi + + + + # Check whether --with-help-dir was given. +-if test "${with_help_dir+set}" = set; then ++if test "${with_help_dir+set}" = set; then : + withval=$with_help_dir; + else + with_help_dir='${datadir}/gnome/help' +@@ -2594,7 +2946,7 @@ + + + # Check whether --with-omf-dir was given. +-if test "${with_omf_dir+set}" = set; then ++if test "${with_omf_dir+set}" = set; then : + withval=$with_omf_dir; + else + with_omf_dir='${datadir}/omf' +@@ -2605,7 +2957,7 @@ + + + # Check whether --with-help-formats was given. +-if test "${with_help_formats+set}" = set; then ++if test "${with_help_formats+set}" = set; then : + withval=$with_help_formats; + else + with_help_formats='' +@@ -2615,7 +2967,7 @@ + + + # Check whether --enable-scrollkeeper was given. +-if test "${enable_scrollkeeper+set}" = set; then ++if test "${enable_scrollkeeper+set}" = set; then : + enableval=$enable_scrollkeeper; + else + enable_scrollkeeper=yes +@@ -2665,9 +3017,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_CXX+set}" = set; then ++if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then +@@ -2678,24 +3030,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { $as_echo "$as_me:$LINENO: result: $CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 + $as_echo "$CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -2709,9 +3061,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then +@@ -2722,24 +3074,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 + $as_echo "$ac_ct_CXX" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -2752,7 +3104,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -2763,48 +3115,31 @@ + fi + fi + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 + set X $ac_compile + ac_compiler=$2 +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ fi ++ rm -f conftest.er1 conftest.err ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -2820,8 +3155,8 @@ + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. +-{ $as_echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 +-$as_echo_n "checking for C++ compiler default output file name... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 ++$as_echo_n "checking whether the C++ compiler works... " >&6; } + ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + + # The possible output files: +@@ -2837,17 +3172,17 @@ + done + rm -f $ac_rmfiles + +-if { (ac_try="$ac_link_default" ++if { { ac_try="$ac_link_default" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. + # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' + # in a Makefile. We should not override ac_cv_exeext if it was cached, +@@ -2864,7 +3199,7 @@ + # certainly right. + break;; + *.* ) +- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi +@@ -2883,84 +3218,41 @@ + else + ac_file='' + fi +- +-{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5 +-$as_echo "$ac_file" >&6; } +-if test -z "$ac_file"; then +- $as_echo "$as_me: failed program was:" >&5 ++if test -z "$ac_file"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C++ compiler cannot create executables +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C++ compiler cannot create executables +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++as_fn_error 77 "C++ compiler cannot create executables ++See \`config.log' for more details" "$LINENO" 5; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + fi +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 ++$as_echo_n "checking for C++ compiler default output file name... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 ++$as_echo "$ac_file" >&6; } + ac_exeext=$ac_cv_exeext + +-# Check that the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-{ $as_echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 +-$as_echo_n "checking whether the C++ compiler works... " >&6; } +-# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +-# If not cross compiling, check that we can run a simple program. +-if test "$cross_compiling" != yes; then +- if { ac_try='./$ac_file' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- cross_compiling=no +- else +- if test "$cross_compiling" = maybe; then +- cross_compiling=yes +- else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run C++ compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run C++ compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } +- fi +- fi +-fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } +- + rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out + ac_clean_files=$ac_clean_files_save +-# Check that the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +-$as_echo_n "checking whether we are cross compiling... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 +-$as_echo "$cross_compiling" >&6; } +- +-{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 + $as_echo_n "checking for suffix of executables... " >&6; } +-if { (ac_try="$ac_link" ++if { { ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) + # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will + # work properly (i.e., refer to `conftest.exe'), while it won't with +@@ -2975,32 +3267,83 @@ + esac + done + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error $? "cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details" "$LINENO" 5; } + fi +- +-rm -f conftest$ac_cv_exeext +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++rm -f conftest conftest$ac_cv_exeext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 + $as_echo "$ac_cv_exeext" >&6; } + + rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +-{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++FILE *f = fopen ("conftest.out", "w"); ++ return ferror (f) || fclose (f) != 0; ++ ++ ; ++ return 0; ++} ++_ACEOF ++ac_clean_files="$ac_clean_files conftest.out" ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 ++$as_echo_n "checking whether we are cross compiling... " >&6; } ++if test "$cross_compiling" != yes; then ++ { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++ if { ac_try='./conftest$ac_cv_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then ++ cross_compiling=no ++ else ++ if test "$cross_compiling" = maybe; then ++ cross_compiling=yes ++ else ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "cannot run C++ compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details" "$LINENO" 5; } ++ fi ++ fi ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 ++$as_echo "$cross_compiling" >&6; } ++ ++rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ++ac_clean_files=$ac_clean_files_save ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 + $as_echo_n "checking for suffix of object files... " >&6; } +-if test "${ac_cv_objext+set}" = set; then ++if test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3012,17 +3355,17 @@ + } + _ACEOF + rm -f conftest.o conftest.obj +-if { (ac_try="$ac_compile" ++if { { ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in +@@ -3035,31 +3378,23 @@ + $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error $? "cannot compute suffix of object files: cannot compile ++See \`config.log' for more details" "$LINENO" 5; } + fi +- + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 + $as_echo "$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 + $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then ++if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3073,37 +3408,16 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 + $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } + if test $ac_compiler_gnu = yes; then + GXX=yes +@@ -3112,20 +3426,16 @@ + fi + ac_test_CXXFLAGS=${CXXFLAGS+set} + ac_save_CXXFLAGS=$CXXFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 + $as_echo_n "checking whether $CXX accepts -g... " >&6; } +-if test "${ac_cv_prog_cxx_g+set}" = set; then ++if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3136,35 +3446,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CXXFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CXXFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3175,36 +3461,12 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_compile "$LINENO"; then : + +- ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++else ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3215,42 +3477,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 + $as_echo "$ac_cv_prog_cxx_g" >&6; } + if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +@@ -3280,44 +3517,44 @@ + am_make=${MAKE-make} + cat > confinc << 'END' + am__doit: +- @echo done ++ @echo this is the am__doit target + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +-{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 + $as_echo_n "checking for style of include used by $am_make... " >&6; } + am__include="#" + am__quote= + _am_result=none + # First try GNU make style include. + echo "include confinc" > confmf +-# We grep out `Entering directory' and `Leaving directory' +-# messages which can occur if `w' ends up in MAKEFLAGS. +-# In particular we don't look at `^make:' because GNU make might +-# be invoked under some other name (usually "gmake"), in which +-# case it prints its new name instead of `make'. +-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then +- am__include=include +- am__quote= +- _am_result=GNU +-fi ++# Ignore all kinds of additional output from `make'. ++case `$am_make -s -f confmf 2> /dev/null` in #( ++*the\ am__doit\ target*) ++ am__include=include ++ am__quote= ++ _am_result=GNU ++ ;; ++esac + # Now try BSD make style include. + if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf +- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- fi ++ case `$am_make -s -f confmf 2> /dev/null` in #( ++ *the\ am__doit\ target*) ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ ;; ++ esac + fi + + +-{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 + $as_echo "$_am_result" >&6; } + rm -f confinc confmf + + # Check whether --enable-dependency-tracking was given. +-if test "${enable_dependency_tracking+set}" = set; then ++if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; + fi + +@@ -3337,9 +3574,9 @@ + + depcc="$CXX" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 + $as_echo_n "checking dependency style of $depcc... " >&6; } +-if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then ++if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +@@ -3365,6 +3602,11 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -3382,7 +3624,17 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" + case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -3392,19 +3644,23 @@ + break + fi + ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; + none) break ;; + esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. + if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ++ source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message +@@ -3428,7 +3684,7 @@ + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 + $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + +@@ -3446,9 +3702,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_RANLIB+set}" = set; then ++if test "${ac_cv_prog_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then +@@ -3459,24 +3715,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 + $as_echo "$RANLIB" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3486,9 +3742,9 @@ + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then ++if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then +@@ -3499,24 +3755,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 + $as_echo "$ac_ct_RANLIB" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -3525,7 +3781,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -3538,22 +3794,21 @@ + + + pkg_failed=no +-{ $as_echo "$as_me:$LINENO: checking for DEPS" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEPS" >&5 + $as_echo_n "checking for DEPS... " >&6; } + +-if test -n "$PKG_CONFIG"; then +- if test -n "$DEPS_CFLAGS"; then +- pkg_cv_DEPS_CFLAGS="$DEPS_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" ++if test -n "$DEPS_CFLAGS"; then ++ pkg_cv_DEPS_CFLAGS="$DEPS_CFLAGS" ++ elif test -n "$PKG_CONFIG"; then ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \" + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 + libglademm-2.4 >= 2.6.0 + gconfmm-2.6 >= 2.12.0 + gnome-vfsmm-2.6 >= 2.12.0 + poppler-glib >= 0.5.0 +- \"") >&5 ++ \""; } >&5 + ($PKG_CONFIG --exists --print-errors " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 +@@ -3563,8 +3818,8 @@ + poppler-glib >= 0.5.0 + ") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DEPS_CFLAGS=`$PKG_CONFIG --cflags " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 +@@ -3576,23 +3831,21 @@ + else + pkg_failed=yes + fi +- fi +-else +- pkg_failed=untried ++ else ++ pkg_failed=untried + fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$DEPS_LIBS"; then +- pkg_cv_DEPS_LIBS="$DEPS_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" ++if test -n "$DEPS_LIBS"; then ++ pkg_cv_DEPS_LIBS="$DEPS_LIBS" ++ elif test -n "$PKG_CONFIG"; then ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \" + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 + libglademm-2.4 >= 2.6.0 + gconfmm-2.6 >= 2.12.0 + gnome-vfsmm-2.6 >= 2.12.0 + poppler-glib >= 0.5.0 +- \"") >&5 ++ \""; } >&5 + ($PKG_CONFIG --exists --print-errors " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 +@@ -3602,8 +3855,8 @@ + poppler-glib >= 0.5.0 + ") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DEPS_LIBS=`$PKG_CONFIG --libs " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 +@@ -3615,14 +3868,15 @@ + else + pkg_failed=yes + fi +- fi +-else +- pkg_failed=untried ++ else ++ pkg_failed=untried + fi + + + + if test $pkg_failed = yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +@@ -3630,28 +3884,28 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors " ++ DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 + libglademm-2.4 >= 2.6.0 + gconfmm-2.6 >= 2.12.0 + gnome-vfsmm-2.6 >= 2.12.0 + poppler-glib >= 0.5.0 +- "` ++ " 2>&1` + else +- DEPS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors " ++ DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors " + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 + libglademm-2.4 >= 2.6.0 + gconfmm-2.6 >= 2.12.0 + gnome-vfsmm-2.6 >= 2.12.0 + poppler-glib >= 0.5.0 +- "` ++ " 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$DEPS_PKG_ERRORS" >&5 + +- { { $as_echo "$as_me:$LINENO: error: Package requirements ( ++ as_fn_error $? "Package requirements ( + libgnomeuimm-2.6 >= 2.12.0 + gtkmm-2.4 >= 2.8.0 + libglademm-2.4 >= 2.6.0 +@@ -3667,31 +3921,14 @@ + + Alternatively, you may set the environment variables DEPS_CFLAGS + and DEPS_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-$as_echo "$as_me: error: Package requirements ( +- libgnomeuimm-2.6 >= 2.12.0 +- gtkmm-2.4 >= 2.8.0 +- libglademm-2.4 >= 2.6.0 +- gconfmm-2.6 >= 2.12.0 +- gnome-vfsmm-2.6 >= 2.12.0 +- poppler-glib >= 0.5.0 +- ) were not met: ++See the pkg-config man page for more details." "$LINENO" 5 + +-$DEPS_PKG_ERRORS +- +-Consider adjusting the PKG_CONFIG_PATH environment variable if you +-installed software in a non-standard prefix. +- +-Alternatively, you may set the environment variables DEPS_CFLAGS +-and DEPS_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&2;} +- { (exit 1); exit 1; }; } + elif test $pkg_failed = untried; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it ++as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it + is in your PATH or set the PKG_CONFIG environment variable to the full + path to pkg-config. + +@@ -3700,39 +3937,24 @@ + See the pkg-config man page for more details. + + To get pkg-config, see . +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +-is in your PATH or set the PKG_CONFIG environment variable to the full +-path to pkg-config. +- +-Alternatively, you may set the environment variables DEPS_CFLAGS +-and DEPS_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. ++See \`config.log' for more details" "$LINENO" 5; } + +-To get pkg-config, see . +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } + else + DEPS_CFLAGS=$pkg_cv_DEPS_CFLAGS + DEPS_LIBS=$pkg_cv_DEPS_LIBS +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +- : +-fi + ++fi + +-{ $as_echo "$as_me:$LINENO: checking for main in -lboost_regex" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lboost_regex" >&5 + $as_echo_n "checking for main in -lboost_regex... " >&6; } +-if test "${ac_cv_lib_boost_regex_main+set}" = set; then ++if test "${ac_cv_lib_boost_regex_main+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lboost_regex $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -3744,43 +3966,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_boost_regex_main=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_boost_regex_main=no ++ ac_cv_lib_boost_regex_main=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_boost_regex_main" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_boost_regex_main" >&5 + $as_echo "$ac_cv_lib_boost_regex_main" >&6; } +-if test "x$ac_cv_lib_boost_regex_main" = x""yes; then ++if test "x$ac_cv_lib_boost_regex_main" = x""yes; then : + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBBOOST_REGEX 1 + _ACEOF +@@ -3789,19 +3986,14 @@ + + else + +- +-{ $as_echo "$as_me:$LINENO: checking for main in -lboost_regex-mt" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lboost_regex-mt" >&5 + $as_echo_n "checking for main in -lboost_regex-mt... " >&6; } +-if test "${ac_cv_lib_boost_regex_mt_main+set}" = set; then ++if test "${ac_cv_lib_boost_regex_mt_main+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lboost_regex-mt $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -3813,43 +4005,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_boost_regex_mt_main=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_boost_regex_mt_main=no ++ ac_cv_lib_boost_regex_mt_main=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_boost_regex_mt_main" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_boost_regex_mt_main" >&5 + $as_echo "$ac_cv_lib_boost_regex_mt_main" >&6; } +-if test "x$ac_cv_lib_boost_regex_mt_main" = x""yes; then ++if test "x$ac_cv_lib_boost_regex_mt_main" = x""yes; then : + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBBOOST_REGEX_MT 1 + _ACEOF +@@ -3857,9 +4024,7 @@ + LIBS="-lboost_regex-mt $LIBS" + + else +- { { $as_echo "$as_me:$LINENO: error: boost_regex not found. Stopped" >&5 +-$as_echo "$as_me: error: boost_regex not found. Stopped" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "boost_regex not found. Stopped" "$LINENO" 5 + fi + + +@@ -3871,10 +4036,10 @@ + ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +-{ $as_echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 + $as_echo_n "checking how to run the C++ preprocessor... " >&6; } + if test -z "$CXXCPP"; then +- if test "${ac_cv_prog_CXXCPP+set}" = set; then ++ if test "${ac_cv_prog_CXXCPP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + # Double quotes because CXXCPP needs to be expanded +@@ -3889,11 +4054,7 @@ + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -3902,78 +4063,34 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++if $ac_preproc_ok; then : + break + fi + +@@ -3985,7 +4102,7 @@ + else + ac_cv_prog_CXXCPP=$CXXCPP + fi +-{ $as_echo "$as_me:$LINENO: result: $CXXCPP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 + $as_echo "$CXXCPP" >&6; } + ac_preproc_ok=false + for ac_cxx_preproc_warn_flag in '' yes +@@ -3996,11 +4113,7 @@ + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -4009,87 +4122,40 @@ + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- + rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- + rm -f conftest.err conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. + rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++if $ac_preproc_ok; then : ++ + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check ++See \`config.log' for more details" "$LINENO" 5; } + fi + + ac_ext=cpp +@@ -4099,9 +4165,9 @@ + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + +-{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 + $as_echo_n "checking for grep that handles long lines and -e... " >&6; } +-if test "${ac_cv_path_GREP+set}" = set; then ++if test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$GREP"; then +@@ -4112,7 +4178,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in grep ggrep; do ++ for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +@@ -4132,7 +4198,7 @@ + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" +@@ -4147,26 +4213,24 @@ + $ac_path_GREP_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi + else + ac_cv_path_GREP=$GREP + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 + $as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +-{ $as_echo "$as_me:$LINENO: checking for egrep" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 + $as_echo_n "checking for egrep... " >&6; } +-if test "${ac_cv_path_EGREP+set}" = set; then ++if test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 +@@ -4180,7 +4244,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in egrep; do ++ for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +@@ -4200,7 +4264,7 @@ + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" +@@ -4215,12 +4279,10 @@ + $ac_path_EGREP_found && break 3 + done + done +-done ++ done + IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi + else + ac_cv_path_EGREP=$EGREP +@@ -4228,21 +4290,17 @@ + + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 + $as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +-{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 + $as_echo_n "checking for ANSI C header files... " >&6; } +-if test "${ac_cv_header_stdc+set}" = set; then ++if test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -4257,48 +4315,23 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_stdc=no ++ ac_cv_header_stdc=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "memchr" >/dev/null 2>&1; then +- : ++ $EGREP "memchr" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -4308,18 +4341,14 @@ + + if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "free" >/dev/null 2>&1; then +- : ++ $EGREP "free" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -4329,14 +4358,10 @@ + + if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + : + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -4363,267 +4388,48 @@ + return 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_run "$LINENO"; then : + +-( exit $ac_status ) +-ac_cv_header_stdc=no ++else ++ ac_cv_header_stdc=no + fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 + $as_echo "$ac_cv_header_stdc" >&6; } + if test $ac_cv_header_stdc = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define STDC_HEADERS 1 +-_ACEOF ++$as_echo "#define STDC_HEADERS 1" >>confdefs.h + + fi + + # On IRIX 5.3, sys/types and inttypes.h are conflicting. +- +- +- +- +- +- +- +- +- + for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ++" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF + #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +- +-done +- +- +- +-for ac_header in boost/regex.hpp +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ ++done ++ ++ ++for ac_header in boost/regex.hpp ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "boost/regex.hpp" "ac_cv_header_boost_regex_hpp" "$ac_includes_default" ++if test "x$ac_cv_header_boost_regex_hpp" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_BOOST_REGEX_HPP 1 + _ACEOF + + fi +@@ -4632,15 +4438,25 @@ + + + ++LIBS="$LIBS $DEPS_LIBS" + + case $($PKG_CONFIG --modversion poppler-glib) in + 0.5.*) + +-cat >>confdefs.h <<\_ACEOF +-#define OLD_POPPLER "1" +-_ACEOF ++$as_echo "#define OLD_POPPLER \"1\"" >>confdefs.h + ;; + esac ++for ac_func in poppler_page_get_selected_text ++do : ++ ac_fn_cxx_check_func "$LINENO" "poppler_page_get_selected_text" "ac_cv_func_poppler_page_get_selected_text" ++if test "x$ac_cv_func_poppler_page_get_selected_text" = x""yes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_POPPLER_PAGE_GET_SELECTED_TEXT 1 ++_ACEOF ++ ++fi ++done ++ + + + GETTEXT_PACKAGE=$PACKAGE +@@ -4658,9 +4474,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then ++if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -4671,24 +4487,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4698,9 +4514,9 @@ + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then +@@ -4711,24 +4527,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 + $as_echo "$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4737,7 +4553,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -4751,9 +4567,9 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then ++if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -4764,24 +4580,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4791,9 +4607,9 @@ + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then ++if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -4805,18 +4621,18 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + if test $ac_prog_rejected = yes; then +@@ -4835,10 +4651,10 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4850,9 +4666,9 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then ++if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then +@@ -4863,24 +4679,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 + $as_echo "$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4894,9 +4710,9 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then +@@ -4907,24 +4723,24 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 + $as_echo "$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -4937,7 +4753,7 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 + $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac +@@ -4948,62 +4764,42 @@ + fi + + +-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ++test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++as_fn_error $? "no acceptable C compiler found in \$PATH ++See \`config.log' for more details" "$LINENO" 5; } + + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 + set X $ac_compile + ac_compiler=$2 +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ fi ++ rm -f conftest.er1 conftest.err ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 + $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +-if test "${ac_cv_c_compiler_gnu+set}" = set; then ++if test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -5017,37 +4813,16 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 + $as_echo "$ac_cv_c_compiler_gnu" >&6; } + if test $ac_compiler_gnu = yes; then + GCC=yes +@@ -5056,20 +4831,16 @@ + fi + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 + $as_echo_n "checking whether $CC accepts -g... " >&6; } +-if test "${ac_cv_prog_cc_g+set}" = set; then ++if test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -5080,35 +4851,11 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -5119,36 +4866,12 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + +- ac_c_werror_flag=$ac_save_c_werror_flag ++else ++ ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -5159,42 +4882,17 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 + $as_echo "$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +@@ -5211,18 +4909,14 @@ + CFLAGS= + fi + fi +-{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 + $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +-if test "${ac_cv_prog_cc_c89+set}" = set; then ++if test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -5279,32 +4973,9 @@ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" + do + CC="$ac_save_CC $ac_arg" +- rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++ if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break + done +@@ -5315,17 +4986,19 @@ + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 + $as_echo "none needed" >&6; } ;; + xno) +- { $as_echo "$as_me:$LINENO: result: unsupported" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 + $as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 + $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac ++if test "x$ac_cv_prog_cc_c89" != xno; then : + ++fi + + ac_ext=cpp + ac_cpp='$CXXCPP $CPPFLAGS' +@@ -5335,9 +5008,9 @@ + + depcc="$CC" am_compiler_list= + +-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 + $as_echo_n "checking dependency style of $depcc... " >&6; } +-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then ++if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +@@ -5363,6 +5036,11 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi ++ am__universal=false ++ case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -5380,7 +5058,17 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" + case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -5390,19 +5078,23 @@ + break + fi + ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; + none) break ;; + esac +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. + if depmode=$depmode \ +- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ++ source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message +@@ -5426,7 +5118,7 @@ + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 + $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + +@@ -5442,146 +5134,12 @@ + + + +- +-for ac_header in locale.h +-do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ for ac_header in locale.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" ++if test "x$ac_cv_header_locale_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LOCALE_H 1 + _ACEOF + + fi +@@ -5589,16 +5147,12 @@ + done + + if test $ac_cv_header_locale_h = yes; then +- { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 + $as_echo_n "checking for LC_MESSAGES... " >&6; } +-if test "${am_cv_val_LC_MESSAGES+set}" = set; then ++if test "${am_cv_val_LC_MESSAGES+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + int +@@ -5609,202 +5163,45 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + am_cv_val_LC_MESSAGES=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- am_cv_val_LC_MESSAGES=no ++ am_cv_val_LC_MESSAGES=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 + $as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LC_MESSAGES 1 +-_ACEOF ++$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h + + fi + fi + USE_NLS=yes + + +- gt_cv_have_gettext=no +- +- CATOBJEXT=NONE +- XGETTEXT=: +- INTLLIBS= +- +- if test "${ac_cv_header_libintl_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 +-$as_echo_n "checking for libintl.h... " >&6; } +-if test "${ac_cv_header_libintl_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-$as_echo "$ac_cv_header_libintl_h" >&6; } +-else +- # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5 +-$as_echo_n "checking libintl.h usability... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5 +-$as_echo_n "checking libintl.h presence... " >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 +-$as_echo_n "checking for libintl.h... " >&6; } +-if test "${ac_cv_header_libintl_h+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_header_libintl_h=$ac_header_preproc +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-$as_echo "$ac_cv_header_libintl_h" >&6; } ++ gt_cv_have_gettext=no + +-fi +-if test "x$ac_cv_header_libintl_h" = x""yes; then ++ CATOBJEXT=NONE ++ XGETTEXT=: ++ INTLLIBS= ++ ++ ac_fn_cxx_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" ++if test "x$ac_cv_header_libintl_h" = x""yes; then : + gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # +- { $as_echo "$as_me:$LINENO: checking for ngettext in libc" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 + $as_echo_n "checking for ngettext in libc... " >&6; } +-if test "${gt_cv_func_ngettext_libc+set}" = set; then ++if test "${gt_cv_func_ngettext_libc+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -5817,54 +5214,25 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + gt_cv_func_ngettext_libc=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_ngettext_libc=no ++ gt_cv_func_ngettext_libc=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 + $as_echo "$gt_cv_func_ngettext_libc" >&6; } + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- { $as_echo "$as_me:$LINENO: checking for dgettext in libc" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 + $as_echo_n "checking for dgettext in libc... " >&6; } +-if test "${gt_cv_func_dgettext_libc+set}" = set; then ++if test "${gt_cv_func_dgettext_libc+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -5877,141 +5245,26 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + gt_cv_func_dgettext_libc=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_dgettext_libc=no ++ gt_cv_func_dgettext_libc=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 + $as_echo "$gt_cv_func_dgettext_libc" >&6; } + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- +-for ac_func in bind_textdomain_codeset +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ for ac_func in bind_textdomain_codeset ++do : ++ ac_fn_cxx_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" ++if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + _ACEOF + + fi +@@ -6026,18 +5279,14 @@ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + +- { $as_echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 + $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } +-if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then ++if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -6055,55 +5304,26 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_intl_bindtextdomain=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_bindtextdomain=no ++ ac_cv_lib_intl_bindtextdomain=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 + $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } +-if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 ++if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 + $as_echo_n "checking for ngettext in -lintl... " >&6; } +-if test "${ac_cv_lib_intl_ngettext+set}" = set; then ++if test "${ac_cv_lib_intl_ngettext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -6121,55 +5341,26 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_ngettext=no ++ ac_cv_lib_intl_ngettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 + $as_echo "$ac_cv_lib_intl_ngettext" >&6; } +-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 ++if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 + $as_echo_n "checking for dgettext in -lintl... " >&6; } +-if test "${ac_cv_lib_intl_dgettext+set}" = set; then ++if test "${ac_cv_lib_intl_dgettext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -6187,43 +5378,18 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_intl_dgettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_dgettext=no ++ ac_cv_lib_intl_dgettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 + $as_echo "$ac_cv_lib_intl_dgettext" >&6; } +-if test "x$ac_cv_lib_intl_dgettext" = x""yes; then ++if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : + gt_cv_func_dgettext_libintl=yes + fi + +@@ -6233,22 +5399,18 @@ + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then +- { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 + $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } +- { $as_echo "$as_me:$LINENO: result: " >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 + $as_echo "" >&6; } +- { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 + $as_echo_n "checking for ngettext in -lintl... " >&6; } +-if test "${ac_cv_lib_intl_ngettext+set}" = set; then ++if test "${ac_cv_lib_intl_ngettext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl -liconv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -6266,161 +5428,27 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_ngettext=no ++ ac_cv_lib_intl_ngettext=no + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 + $as_echo "$ac_cv_lib_intl_ngettext" >&6; } +-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then +- { $as_echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 ++if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 + $as_echo_n "checking for dcgettext in -lintl... " >&6; } +-if test "${ac_cv_lib_intl_dcgettext+set}" = set; then ++if test "${ac_cv_lib_intl_dcgettext+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl -liconv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dcgettext (); +-int +-main () +-{ +-return dcgettext (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_lib_intl_dcgettext=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_intl_dcgettext=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 +-$as_echo "$ac_cv_lib_intl_dcgettext" >&6; } +-if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then +- gt_cv_func_dgettext_libintl=yes +- libintl_extra_libs=-liconv +-else +- : +-fi +- +-else +- : +-fi +- +- fi +- +- # +- # If we found libintl, then check in it for bind_textdomain_codeset(); +- # we'll prefer libc if neither have bind_textdomain_codeset(), +- # and both have dgettext and ngettext +- # +- if test "$gt_cv_func_dgettext_libintl" = "yes" ; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS -lintl $libintl_extra_libs" +- unset ac_cv_func_bind_textdomain_codeset +- +-for ac_func in bind_textdomain_codeset +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -6428,64 +5456,54 @@ + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" ++char dcgettext (); ++int ++main () ++{ ++return dcgettext (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_cxx_try_link "$LINENO"; then : ++ ac_cv_lib_intl_dcgettext=yes + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_intl_dcgettext=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 ++$as_echo "$ac_cv_lib_intl_dcgettext" >&6; } ++if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then : ++ gt_cv_func_dgettext_libintl=yes ++ libintl_extra_libs=-liconv ++else ++ : + fi + +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++else ++ : + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ ++ fi ++ ++ # ++ # If we found libintl, then check in it for bind_textdomain_codeset(); ++ # we'll prefer libc if neither have bind_textdomain_codeset(), ++ # and both have dgettext and ngettext ++ # ++ if test "$gt_cv_func_dgettext_libintl" = "yes" ; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS -lintl $libintl_extra_libs" ++ unset ac_cv_func_bind_textdomain_codeset ++ for ac_func in bind_textdomain_codeset ++do : ++ ac_fn_cxx_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" ++if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_BIND_TEXTDOMAIN_CODESET 1 + _ACEOF + + fi +@@ -6515,15 +5533,13 @@ + + if test "$gt_cv_have_gettext" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETTEXT 1 +-_ACEOF ++$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h + + # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_MSGFMT+set}" = set; then ++if test "${ac_cv_path_MSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case "$MSGFMT" in +@@ -6548,118 +5564,28 @@ + fi + MSGFMT="$ac_cv_path_MSGFMT" + if test "$MSGFMT" != "no"; then +- { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 + $as_echo "$MSGFMT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" +- +-for ac_func in dcgettext +-do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- eval "$as_ac_var=yes" +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ for ac_func in dcgettext ++do : ++ ac_fn_cxx_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" ++if test "x$ac_cv_func_dcgettext" = x""yes; then : + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_DCGETTEXT 1 + _ACEOF + + fi + done + + MSGFMT_OPTS= +- { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 + $as_echo_n "checking if msgfmt accepts -c... " >&6; } + cat >conftest.foo <<_ACEOF + +@@ -6674,14 +5600,14 @@ + "Content-Transfer-Encoding: 8bit\n" + + _ACEOF +-if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 ++if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 + ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +-else { $as_echo "$as_me:$LINENO: result: no" >&5 ++else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + echo "$as_me: failed input was:" >&5 + sed 's/^/| /' conftest.foo >&5 +@@ -6689,9 +5615,9 @@ + + # Extract the first word of "gmsgfmt", so it can be a program name with args. + set dummy gmsgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_GMSGFMT+set}" = set; then ++if test "${ac_cv_path_GMSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $GMSGFMT in +@@ -6704,14 +5630,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" +@@ -6720,19 +5646,19 @@ + fi + GMSGFMT=$ac_cv_path_GMSGFMT + if test -n "$GMSGFMT"; then +- { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 + $as_echo "$GMSGFMT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_XGETTEXT+set}" = set; then ++if test "${ac_cv_path_XGETTEXT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case "$XGETTEXT" in +@@ -6757,18 +5683,14 @@ + fi + XGETTEXT="$ac_cv_path_XGETTEXT" + if test "$XGETTEXT" != ":"; then +- { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 + $as_echo "$XGETTEXT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -6780,121 +5702,14 @@ + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++if ac_fn_cxx_try_link "$LINENO"; then : + CATOBJEXT=.gmo + DATADIRNAME=share + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- case $host in ++ case $host in + *-*-solaris*) +- { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +-$as_echo_n "checking for bind_textdomain_codeset... " >&6; } +-if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. +- For example, HP-UX 11i declares gettimeofday. */ +-#define bind_textdomain_codeset innocuous_bind_textdomain_codeset +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char bind_textdomain_codeset (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef bind_textdomain_codeset +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char bind_textdomain_codeset (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset +-choke me +-#endif +- +-int +-main () +-{ +-return bind_textdomain_codeset (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_bind_textdomain_codeset=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_bind_textdomain_codeset=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +-$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } +-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then ++ ac_fn_cxx_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" ++if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + CATOBJEXT=.gmo + DATADIRNAME=share + else +@@ -6909,10 +5724,8 @@ + ;; + esac + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else +@@ -6926,9 +5739,7 @@ + + if test "$gt_cv_have_gettext" = "yes" ; then + +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_NLS 1 +-_ACEOF ++$as_echo "#define ENABLE_NLS 1" >>confdefs.h + + fi + +@@ -6936,7 +5747,7 @@ + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else +- { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 + $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi +@@ -6969,7 +5780,7 @@ + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else +- { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 + $as_echo_n "checking for catalogs to be installed... " >&6; } + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do +@@ -6994,7 +5805,7 @@ + fi + done + LINGUAS=$NEW_LINGUAS +- { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 + $as_echo "$LINGUAS" >&6; } + fi + +@@ -7027,16 +5838,16 @@ + < $srcdir/po/POTFILES.in > po/POTFILES + + +- { $as_echo "$as_me:$LINENO: checking whether NLS is requested" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 + $as_echo_n "checking whether NLS is requested... " >&6; } + # Check whether --enable-nls was given. +-if test "${enable_nls+set}" = set; then ++if test "${enable_nls+set}" = set; then : + enableval=$enable_nls; USE_NLS=$enableval + else + USE_NLS=yes + fi + +- { $as_echo "$as_me:$LINENO: result: $USE_NLS" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 + $as_echo "$USE_NLS" >&6; } + + +@@ -7044,35 +5855,31 @@ + + case "$am__api_version" in + 1.01234) +- { { $as_echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 +-$as_echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 + ;; + *) + ;; + esac + + if test -n ""; then +- { $as_echo "$as_me:$LINENO: checking for intltool >= " >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= " >&5 + $as_echo_n "checking for intltool >= ... " >&6; } + + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` + INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + +- { $as_echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 + $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || +- { { $as_echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool or later." >&5 +-$as_echo "$as_me: error: Your intltool is too old. You need intltool or later." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Your intltool is too old. You need intltool or later." "$LINENO" 5 + fi + + # Extract the first word of "intltool-update", so it can be a program name with args. + set dummy intltool-update; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then ++if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_UPDATE in +@@ -7085,14 +5892,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7100,19 +5907,19 @@ + fi + INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE + if test -n "$INTLTOOL_UPDATE"; then +- { $as_echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 + $as_echo "$INTLTOOL_UPDATE" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "intltool-merge", so it can be a program name with args. + set dummy intltool-merge; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then ++if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_MERGE in +@@ -7125,14 +5932,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7140,19 +5947,19 @@ + fi + INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE + if test -n "$INTLTOOL_MERGE"; then +- { $as_echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 + $as_echo "$INTLTOOL_MERGE" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "intltool-extract", so it can be a program name with args. + set dummy intltool-extract; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then ++if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_EXTRACT in +@@ -7165,14 +5972,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7180,18 +5987,16 @@ + fi + INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT + if test -n "$INTLTOOL_EXTRACT"; then +- { $as_echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 + $as_echo "$INTLTOOL_EXTRACT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then +- { { $as_echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 +-$as_echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 + fi + + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +@@ -7313,9 +6118,9 @@ + # Check the gettext tools to make sure they are GNU + # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_XGETTEXT+set}" = set; then ++if test "${ac_cv_path_XGETTEXT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $XGETTEXT in +@@ -7328,14 +6133,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7343,19 +6148,19 @@ + fi + XGETTEXT=$ac_cv_path_XGETTEXT + if test -n "$XGETTEXT"; then +- { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 + $as_echo "$XGETTEXT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "msgmerge", so it can be a program name with args. + set dummy msgmerge; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_MSGMERGE+set}" = set; then ++if test "${ac_cv_path_MSGMERGE+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $MSGMERGE in +@@ -7368,14 +6173,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7383,19 +6188,19 @@ + fi + MSGMERGE=$ac_cv_path_MSGMERGE + if test -n "$MSGMERGE"; then +- { $as_echo "$as_me:$LINENO: result: $MSGMERGE" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 + $as_echo "$MSGMERGE" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_MSGFMT+set}" = set; then ++if test "${ac_cv_path_MSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $MSGFMT in +@@ -7408,14 +6213,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7423,19 +6228,19 @@ + fi + MSGFMT=$ac_cv_path_MSGFMT + if test -n "$MSGFMT"; then +- { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 + $as_echo "$MSGFMT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + # Extract the first word of "gmsgfmt", so it can be a program name with args. + set dummy gmsgfmt; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_GMSGFMT+set}" = set; then ++if test "${ac_cv_path_GMSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $GMSGFMT in +@@ -7448,14 +6253,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" +@@ -7464,33 +6269,29 @@ + fi + GMSGFMT=$ac_cv_path_GMSGFMT + if test -n "$GMSGFMT"; then +- { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 + $as_echo "$GMSGFMT" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then +- { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +-$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 + fi + xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" + mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" + mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" + if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then +- { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +-$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 + fi + + # Extract the first word of "perl", so it can be a program name with args. + set dummy perl; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then ++if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_PERL in +@@ -7503,14 +6304,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7518,41 +6319,35 @@ + fi + INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL + if test -n "$INTLTOOL_PERL"; then +- { $as_echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 + $as_echo "$INTLTOOL_PERL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + + + if test -z "$INTLTOOL_PERL"; then +- { { $as_echo "$as_me:$LINENO: error: perl not found" >&5 +-$as_echo "$as_me: error: perl not found" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "perl not found" "$LINENO" 5 + fi +-{ $as_echo "$as_me:$LINENO: checking for perl >= 5.8.1" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 + $as_echo_n "checking for perl >= 5.8.1... " >&6; } + $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 + if test $? -ne 0; then +- { { $as_echo "$as_me:$LINENO: error: perl 5.8.1 is required for intltool" >&5 +-$as_echo "$as_me: error: perl 5.8.1 is required for intltool" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 + else + IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" +- { $as_echo "$as_me:$LINENO: result: $IT_PERL_VERSION" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 + $as_echo "$IT_PERL_VERSION" >&6; } + fi + if test "x" != "xno-xml"; then +- { $as_echo "$as_me:$LINENO: checking for XML::Parser" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 + $as_echo_n "checking for XML::Parser... " >&6; } + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then +- { $as_echo "$as_me:$LINENO: result: ok" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 + $as_echo "ok" >&6; } + else +- { { $as_echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 +-$as_echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 + fi + fi + +@@ -7562,11 +6357,7 @@ + # Set DATADIRNAME correctly if it is not set yet + # (copied from glib-gettext.m4) + if test -z "$DATADIRNAME"; then +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -7574,124 +6365,17 @@ + { + extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- DATADIRNAME=share +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- case $host in +- *-*-solaris*) +- { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +-$as_echo_n "checking for bind_textdomain_codeset... " >&6; } +-if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. +- For example, HP-UX 11i declares gettimeofday. */ +-#define bind_textdomain_codeset innocuous_bind_textdomain_codeset +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char bind_textdomain_codeset (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef bind_textdomain_codeset +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char bind_textdomain_codeset (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset +-choke me +-#endif +- +-int +-main () +-{ +-return bind_textdomain_codeset (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then +- ac_cv_func_bind_textdomain_codeset=yes ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_cxx_try_link "$LINENO"; then : ++ DATADIRNAME=share + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_bind_textdomain_codeset=no +-fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +-$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } +-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then ++ case $host in ++ *-*-solaris*) ++ ac_fn_cxx_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" ++if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + DATADIRNAME=share + else + DATADIRNAME=lib +@@ -7703,10 +6387,8 @@ + ;; + esac + fi +- +-rm -rf conftest.dSYM +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi + + +@@ -7715,7 +6397,7 @@ + + + # Check whether --enable-update-mime-database was given. +-if test "${enable_update_mime_database+set}" = set; then ++if test "${enable_update_mime_database+set}" = set; then : + enableval=$enable_update_mime_database; + fi + +@@ -7729,16 +6411,16 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether Python support is requested" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether Python support is requested" >&5 + $as_echo_n "checking whether Python support is requested... " >&6; } + # Check whether --enable-python was given. +-if test "${enable_python+set}" = set; then ++if test "${enable_python+set}" = set; then : + enableval=$enable_python; enable_python=$enableval have_python=$enableval + else + enable_python=autodetect have_python=yes + fi + +-{ $as_echo "$as_me:$LINENO: result: $enable_python" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_python" >&5 + $as_echo "$enable_python" >&6; } + + if test "x$have_python" != "xno"; then +@@ -7748,58 +6430,58 @@ + + if test -n "$PYTHON"; then + # If the user set $PYTHON, use it and don't search something else. +- { $as_echo "$as_me:$LINENO: checking whether $PYTHON version >= 2.3" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version >= 2.3" >&5 + $as_echo_n "checking whether $PYTHON version >= 2.3... " >&6; } +- prog="import sys, string ++ prog="import sys + # split strings by '.' and convert to numeric. Append some zeros + # because we need at least 4 digits for the hex conversion. +-minver = map(int, string.split('2.3', '.')) + [0, 0, 0] ++# map returns an iterator in Python 3.0 and a list in 2.x ++minver = list(map(int, '2.3'.split('.'))) + [0, 0, 0] + minverhex = 0 +-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i] ++# xrange is not present in Python 3.0 and range returns an iterator ++for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] + sys.exit(sys.hexversion < minverhex)" + if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 + ($PYTHON -c "$prog") >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 ++ (exit $ac_status); }; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + else +- { { $as_echo "$as_me:$LINENO: error: too old" >&5 +-$as_echo "$as_me: error: too old" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "too old" "$LINENO" 5 + fi +- + am_display_PYTHON=$PYTHON + else + # Otherwise, try each interpreter until we find one that satisfies + # VERSION. +- { $as_echo "$as_me:$LINENO: checking for a Python interpreter with version >= 2.3" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.3" >&5 + $as_echo_n "checking for a Python interpreter with version >= 2.3... " >&6; } +-if test "${am_cv_pathless_PYTHON+set}" = set; then ++if test "${am_cv_pathless_PYTHON+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + +- for am_cv_pathless_PYTHON in python python2 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 none; do ++ for am_cv_pathless_PYTHON in python python2 python3 python3.0 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do + test "$am_cv_pathless_PYTHON" = none && break +- prog="import sys, string ++ prog="import sys + # split strings by '.' and convert to numeric. Append some zeros + # because we need at least 4 digits for the hex conversion. +-minver = map(int, string.split('2.3', '.')) + [0, 0, 0] ++# map returns an iterator in Python 3.0 and a list in 2.x ++minver = list(map(int, '2.3'.split('.'))) + [0, 0, 0] + minverhex = 0 +-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i] ++# xrange is not present in Python 3.0 and range returns an iterator ++for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] + sys.exit(sys.hexversion < minverhex)" + if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5 + ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ (exit $ac_status); }; then : + break + fi +- + done + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_pathless_PYTHON" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_pathless_PYTHON" >&5 + $as_echo "$am_cv_pathless_PYTHON" >&6; } + # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. + if test "$am_cv_pathless_PYTHON" = none; then +@@ -7807,9 +6489,9 @@ + else + # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. + set dummy $am_cv_pathless_PYTHON; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 + $as_echo_n "checking for $ac_word... " >&6; } +-if test "${ac_cv_path_PYTHON+set}" = set; then ++if test "${ac_cv_path_PYTHON+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + case $PYTHON in +@@ -7822,14 +6504,14 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do ++ for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + ;; +@@ -7837,10 +6519,10 @@ + fi + PYTHON=$ac_cv_path_PYTHON + if test -n "$PYTHON"; then +- { $as_echo "$as_me:$LINENO: result: $PYTHON" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 + $as_echo "$PYTHON" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + fi + +@@ -7855,14 +6537,14 @@ + else + + +- { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON version" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 + $as_echo_n "checking for $am_display_PYTHON version... " >&6; } +-if test "${am_cv_python_version+set}" = set; then ++if test "${am_cv_python_version+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_version=`$PYTHON -c "import sys; print sys.version[:3]"` ++ am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_version" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 + $as_echo "$am_cv_python_version" >&6; } + PYTHON_VERSION=$am_cv_python_version + +@@ -7874,35 +6556,50 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON platform" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 + $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } +-if test "${am_cv_python_platform+set}" = set; then ++if test "${am_cv_python_platform+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"` ++ am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_platform" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 + $as_echo "$am_cv_python_platform" >&6; } + PYTHON_PLATFORM=$am_cv_python_platform + + + + +- { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON script directory" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 + $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } +-if test "${am_cv_python_pythondir+set}" = set; then ++if test "${am_cv_python_pythondir+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test "x$prefix" = xNONE + then +- py_prefix_arg= ++ am_py_prefix=$ac_default_prefix + else +- py_prefix_arg=",prefix='$prefix'" ++ am_py_prefix=$prefix + fi +- am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0$py_prefix_arg)" -n -q install $py_prefix_arg 2>/dev/null || ++ am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null || + echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"` ++ case $am_cv_python_pythondir in ++ $am_py_prefix*) ++ am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` ++ am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ++ ;; ++ *) ++ case $am_py_prefix in ++ /usr|/System*) ;; ++ *) ++ am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ++ ;; ++ esac ++ ;; ++ esac ++ + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_pythondir" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 + $as_echo "$am_cv_python_pythondir" >&6; } + pythondir=$am_cv_python_pythondir + +@@ -7911,21 +6608,36 @@ + pkgpythondir=\${pythondir}/$PACKAGE + + +- { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON extension module directory" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 + $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } +-if test "${am_cv_python_pyexecdir+set}" = set; then ++if test "${am_cv_python_pyexecdir+set}" = set; then : + $as_echo_n "(cached) " >&6 + else + if test "x$exec_prefix" = xNONE + then +- py_exec_prefix_arg=$py_prefix_arg ++ am_py_exec_prefix=$am_py_prefix + else +- py_exec_prefix_arg=",prefix='$exec_prefix'" ++ am_py_exec_prefix=$exec_prefix + fi +- am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0$py_exec_prefix_arg)" -n -q install $py_exec_prefix_arg 2>/dev/null || ++ am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null || + echo "$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages"` ++ case $am_cv_python_pyexecdir in ++ $am_py_exec_prefix*) ++ am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` ++ am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ++ ;; ++ *) ++ case $am_py_exec_prefix in ++ /usr|/System*) ;; ++ *) ++ am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ++ ;; ++ esac ++ ;; ++ esac ++ + fi +-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_pyexecdir" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 + $as_echo "$am_cv_python_pyexecdir" >&6; } + pyexecdir=$am_cv_python_pyexecdir + +@@ -7945,7 +6657,7 @@ + + if test "x$have_python" != "xno"; then + +-{ $as_echo "$as_me:$LINENO: checking for headers required to compile python extensions" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for headers required to compile python extensions" >&5 + $as_echo_n "checking for headers required to compile python extensions... " >&6; } + py_prefix=`$PYTHON -c "import sys; print sys.prefix"` + py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` +@@ -7956,43 +6668,19 @@ + + save_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- { $as_echo "$as_me:$LINENO: result: found" >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 + $as_echo "found" >&6; } + + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { $as_echo "$as_me:$LINENO: result: not found" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 + $as_echo "not found" >&6; } + have_python=no + fi +- + rm -f conftest.err conftest.$ac_ext + CPPFLAGS="$save_CPPFLAGS" + +@@ -8017,12 +6705,10 @@ + + if test "x$have_python" != "xyes"; then + if test "x$enable_python" = "xyes"; then +- { { $as_echo "$as_me:$LINENO: error: Python not found" >&5 +-$as_echo "$as_me: error: Python not found" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Python not found" "$LINENO" 5 + elif test "x$enable_python" = "xautodetect"; then + enable_python=no +- { $as_echo "$as_me:$LINENO: WARNING: Python not found, disabling python support" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Python not found, disabling python support" >&5 + $as_echo "$as_me: WARNING: Python not found, disabling python support" >&2;} + fi + fi +@@ -8030,9 +6716,7 @@ + if test "x$have_python" != "xno" -a "x$enable_python" != "xno"; then + enable_python=yes + +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_PYTHON 1 +-_ACEOF ++$as_echo "#define ENABLE_PYTHON 1" >>confdefs.h + + fi + +@@ -8077,13 +6761,13 @@ + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 + $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( +- *) $as_unset $ac_var ;; ++ *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done +@@ -8091,8 +6775,8 @@ + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) +- # `set' does not quote correctly, so add quotes (double-quote +- # substitution turns \\\\ into \\, and sed turns \\ into \). ++ # `set' does not quote correctly, so add quotes: double-quote ++ # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" +@@ -8115,11 +6799,11 @@ + if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && +- { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 + $as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else +- { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 + $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi + fi +@@ -8133,81 +6817,70 @@ + + ac_libobjs= + ac_ltlibobjs= ++U= + for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. +- ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" +- ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' ++ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" ++ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' + done + LIBOBJS=$ac_libobjs + + LTLIBOBJS=$ac_ltlibobjs + + ++ if test -n "$EXEEXT"; then ++ am__EXEEXT_TRUE= ++ am__EXEEXT_FALSE='#' ++else ++ am__EXEEXT_TRUE='#' ++ am__EXEEXT_FALSE= ++fi ++ + if test -z "${ENABLE_SK_TRUE}" && test -z "${ENABLE_SK_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_SK\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"ENABLE_SK\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"ENABLE_SK\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"AMDEP\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"am__fastdepCC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + + ac_config_commands="$ac_config_commands po/stamp-it" + + + if test -z "${UPDATE_MIME_DATABASE_TRUE}" && test -z "${UPDATE_MIME_DATABASE_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"UPDATE_MIME_DATABASE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"UPDATE_MIME_DATABASE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"UPDATE_MIME_DATABASE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${ENABLE_PYTHON_TRUE}" && test -z "${ENABLE_PYTHON_FALSE}"; then +- { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_PYTHON\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-$as_echo "$as_me: error: conditional \"ENABLE_PYTHON\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"ENABLE_PYTHON\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + + : ${CONFIG_STATUS=./config.status} + ac_write_fail=0 + ac_clean_files_save=$ac_clean_files + ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 + $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++as_write_fail=0 ++cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 + #! $SHELL + # Generated by $as_me. + # Run this file to recreate the current configuration. +@@ -8217,17 +6890,18 @@ + debug=false + ac_cs_recheck=false + ac_cs_silent=false +-SHELL=\${CONFIG_SHELL-$SHELL} +-_ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++SHELL=\${CONFIG_SHELL-$SHELL} ++export SHELL ++_ASEOF ++cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ++## -------------------- ## ++## M4sh Initialization. ## ++## -------------------- ## + + # Be more Bourne compatible + DUALCASE=1; export DUALCASE # for MKS sh +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which +@@ -8235,23 +6909,15 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- + as_nl=' + ' + export as_nl +@@ -8259,7 +6925,13 @@ + as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo + as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' + else +@@ -8270,7 +6942,7 @@ + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; +- case $arg in ++ case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +@@ -8293,13 +6965,6 @@ + } + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- + + # IFS + # We need space, tab and new line, in precisely that order. Quoting is +@@ -8309,15 +6974,15 @@ + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -8329,12 +6994,16 @@ + fi + if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' +@@ -8346,7 +7015,89 @@ + LANGUAGE=C + export LANGUAGE + +-# Required to use basename. ++# CDPATH. ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH ++ ++ ++# as_fn_error STATUS ERROR [LINENO LOG_FD] ++# ---------------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with STATUS, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$1; test $as_status -eq 0 && as_status=1 ++ if test "$4"; then ++ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 ++ fi ++ $as_echo "$as_me: error: $2" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith ++ ++ + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -8360,8 +7111,12 @@ + as_basename=false + fi + ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi + +-# Name of the executable. + as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ +@@ -8381,76 +7136,25 @@ + } + s/.*/./; q'` + +-# CDPATH. +-$as_unset CDPATH +- +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) +- sed -n ' +- p +- /[$]LINENO/= +- ' <$as_myself | +- sed ' +- s/[$]LINENO.*/&-/ +- t lineno +- b +- :lineno +- N +- :loop +- s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ +- t loop +- s/-\n.*// +- ' >$as_me.lineno && +- chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensitive to this). +- . "./$as_me.lineno" +- # Exit status is that of the last command. +- exit +-} +- +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi + + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then +@@ -8479,8 +7183,56 @@ + rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file + rmdir conf$$.dir 2>/dev/null + ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ ++ ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" ++ ++ ++} # as_fn_mkdir_p + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +@@ -8499,10 +7251,10 @@ + if test -d "$1"; then + test -d "$1/."; + else +- case $1 in ++ case $1 in #( + -*)set "./$1";; + esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +@@ -8517,13 +7269,19 @@ + + + exec 6>&1 ++## ----------------------------------- ## ++## Main body of $CONFIG_STATUS script. ## ++## ----------------------------------- ## ++_ASEOF ++test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +-# Save the log message, to keep $[0] and so on meaningful, and to ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++# Save the log message, to keep $0 and so on meaningful, and to + # report actual input values of CONFIG_FILES etc. instead of their + # values after options handling. + ac_log=" + This file was extended by $as_me, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++generated by GNU Autoconf 2.66. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -8555,13 +7313,15 @@ + + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + ac_cs_usage="\ +-\`$as_me' instantiates files from templates according to the +-current configuration. ++\`$as_me' instantiates files and other configuration actions ++from templates according to the current configuration. Unless the files ++and actions are specified as TAGs, all are instantiated by default. + +-Usage: $0 [OPTION]... [FILE]... ++Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit ++ --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files +@@ -8580,16 +7340,17 @@ + Configuration commands: + $config_commands + +-Report bugs to ." ++Report bugs to the package provider." + + _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" + ac_cs_version="\\ + config.status +-configured by $0, generated by GNU Autoconf 2.63, +- with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++configured by $0, generated by GNU Autoconf 2.66, ++ with options \\"\$ac_cs_config\\" + +-Copyright (C) 2008 Free Software Foundation, Inc. ++Copyright (C) 2010 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it." + +@@ -8625,6 +7386,8 @@ + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; ++ --config | --confi | --conf | --con | --co | --c ) ++ $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) +@@ -8632,20 +7395,19 @@ + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac +- CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" ++ as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac +- CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" ++ as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header +- { $as_echo "$as_me: error: ambiguous option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; };; ++ as_fn_error $? "ambiguous option: \`$1' ++Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ +@@ -8653,11 +7415,10 @@ + ac_cs_silent=: ;; + + # This is an error. +- -*) { $as_echo "$as_me: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ;; ++ -*) as_fn_error $? "unrecognized option: \`$1' ++Try \`$0 --help' for more information." ;; + +- *) ac_config_targets="$ac_config_targets $1" ++ *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac +@@ -8724,9 +7485,7 @@ + "referencer.spec") CONFIG_FILES="$CONFIG_FILES referencer.spec" ;; + "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; + +- *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} +- { (exit 1); exit 1; }; };; ++ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac + done + +@@ -8753,7 +7512,7 @@ + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status + ' 0 +- trap '{ (exit 1); exit 1; }' 1 2 13 15 ++ trap 'as_fn_exit 1' 1 2 13 15 + } + # Create a (secure) tmp directory for tmp files. + +@@ -8764,11 +7523,7 @@ + { + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +-} || +-{ +- $as_echo "$as_me: cannot create a temporary directory in ." >&2 +- { (exit 1); exit 1; } +-} ++} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 + + # Set up the scripts for CONFIG_FILES section. + # No need to generate them if there are no CONFIG_FILES. +@@ -8776,7 +7531,13 @@ + if test -n "$CONFIG_FILES"; then + + +-ac_cr=' ' ++ac_cr=`echo X | tr X '\015'` ++# On cygwin, bash can eat \r inside `` if the user requested igncr. ++# But we know of no other shell where ac_cr would be empty at this ++# point, so we can use a bashism as a fallback. ++if test "x$ac_cr" = x; then ++ eval ac_cr=\$\'\\r\' ++fi + ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` + if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +@@ -8793,24 +7554,18 @@ + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" + } >conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } +-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ++ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +@@ -8832,7 +7587,7 @@ + t delim + :nl + h +-s/\(.\{148\}\).*/\1/ ++s/\(.\{148\}\)..*/\1/ + t more1 + s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ + p +@@ -8846,7 +7601,7 @@ + t nl + :delim + h +-s/\(.\{148\}\).*/\1/ ++s/\(.\{148\}\)..*/\1/ + t more2 + s/["\\]/\\&/g; s/^/"/; s/$/"/ + p +@@ -8899,22 +7654,28 @@ + else + cat + fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ +- || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 +-$as_echo "$as_me: error: could not setup config files machinery" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 + _ACEOF + +-# VPATH may cause trouble with some makes, so we remove $(srcdir), +-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and ++# VPATH may cause trouble with some makes, so we remove sole $(srcdir), ++# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and + # trailing colons and then remove the whole line if VPATH becomes empty + # (actually we leave an empty line to preserve line numbers). + if test "x$srcdir" = x.; then +- ac_vpsub='/^[ ]*VPATH[ ]*=/{ +-s/:*\$(srcdir):*/:/ +-s/:*\${srcdir}:*/:/ +-s/:*@srcdir@:*/:/ +-s/^\([^=]*=[ ]*\):*/\1/ ++ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ ++h ++s/// ++s/^/:/ ++s/[ ]*$/:/ ++s/:\$(srcdir):/:/g ++s/:\${srcdir}:/:/g ++s/:@srcdir@:/:/g ++s/^:*// + s/:*$// ++x ++s/\(=[ ]*\).*/\1/ ++G ++s/\n// + s/^[^=]*=[ ]*$// + }' + fi +@@ -8942,9 +7703,7 @@ + if test -z "$ac_t"; then + break + elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +@@ -9029,9 +7788,7 @@ + _ACAWK + _ACEOF + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +- { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 +-$as_echo "$as_me: error: could not setup config headers machinery" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 + fi # test -n "$CONFIG_HEADERS" + + +@@ -9044,9 +7801,7 @@ + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 +-$as_echo "$as_me: error: invalid tag $ac_tag" >&2;} +- { (exit 1); exit 1; }; };; ++ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac +@@ -9074,12 +7829,10 @@ + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +-$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} +- { (exit 1); exit 1; }; };; ++ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac +- ac_file_inputs="$ac_file_inputs '$ac_f'" ++ as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't +@@ -9090,7 +7843,7 @@ + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" +- { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 + $as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. +@@ -9103,9 +7856,7 @@ + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ;; ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac +@@ -9133,47 +7884,7 @@ + q + } + s/.*/./; q'` +- { as_dir="$ac_dir" +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_dir" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- test -d "$as_dir" && break +- done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } ++ as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + + case "$ac_dir" in +@@ -9230,7 +7941,6 @@ + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. + ac_datarootdir_hack=; ac_datarootdir_seen= +- + ac_sed_dataroot=' + /datarootdir/ { + p +@@ -9240,12 +7950,11 @@ + /@docdir@/p + /@infodir@/p + /@localedir@/p +-/@mandir@/p +-' ++/@mandir@/p' + case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in + *datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 + $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +@@ -9255,7 +7964,7 @@ + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g +- s&\\\${datarootdir}&$datarootdir&g' ;; ++ s&\\\${datarootdir}&$datarootdir&g' ;; + esac + _ACEOF + +@@ -9284,26 +7993,22 @@ + $ac_datarootdir_hack + " + eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + + test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' +-which seems to be undefined. Please make sure it is defined." >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined" >&5 + $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +-which seems to be undefined. Please make sure it is defined." >&2;} ++which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # +@@ -9314,25 +8019,19 @@ + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then +- { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 + $as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$tmp/config.h" "$ac_file" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 +-$as_echo "$as_me: error: could not create -" >&2;} +- { (exit 1); exit 1; }; } ++ || as_fn_error $? "could not create -" "$LINENO" 5 + fi + # Compute "$ac_file"'s index in $config_headers. + _am_arg="$ac_file" +@@ -9370,7 +8069,7 @@ + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + +- :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 ++ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 + $as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac +@@ -9465,47 +8164,7 @@ + q + } + s/.*/./; q'` +- { as_dir=$dirpart/$fdir +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_dir" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- test -d "$as_dir" && break +- done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } ++ as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +@@ -9517,9 +8176,7 @@ + esac ;; + "po/stamp-it":C) + if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then +- { { $as_echo "$as_me:$LINENO: error: po/Makefile.in.in was not created by intltoolize." >&5 +-$as_echo "$as_me: error: po/Makefile.in.in was not created by intltoolize." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 + fi + rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" + >"po/stamp-it.tmp" +@@ -9542,15 +8199,12 @@ + done # for ac_tag + + +-{ (exit 0); exit 0; } ++as_fn_exit 0 + _ACEOF +-chmod +x $CONFIG_STATUS + ac_clean_files=$ac_clean_files_save + + test $ac_write_fail = 0 || +- { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + + # configure is writing to config.log, and then calls config.status. +@@ -9571,10 +8225,10 @@ + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. +- $ac_cs_success || { (exit 1); exit 1; } ++ $ac_cs_success || as_fn_exit 1 + fi + if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then +- { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 + $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi + From elentir at frugalware.org Mon Apr 11 12:17:03 2011 From: elentir at frugalware.org (Elentir) Date: Mon, 11 Apr 2011 12:17:03 +0200 (CEST) Subject: [Frugalware-git] boost14: lyx-1.6.9-2-x86_64 Message-ID: <20110411101703.4FAAD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=4df90c62e82d33b5a4c6ab6928d8f15d807d4876 commit 4df90c62e82d33b5a4c6ab6928d8f15d807d4876 Author: Elentir Date: Mon Apr 11 12:16:29 2011 +0200 lyx-1.6.9-2-x86_64 * rebuild with boost>=1.46.1 diff --git a/source/xapps-extra/lyx/FrugalBuild b/source/xapps-extra/lyx/FrugalBuild index 3a05b72..77777a2 100644 --- a/source/xapps-extra/lyx/FrugalBuild +++ b/source/xapps-extra/lyx/FrugalBuild @@ -4,11 +4,11 @@ pkgname=lyx pkgver=1.6.9 -pkgrel=1 +pkgrel=2 pkgdesc="An advanced open-source document processor based on TeX" url='http://www.lyx.org' -depends=('texlive' 'python' 'perl' 'imagemagick>=6.6.1_5-1' 'aspell' 'libboost>=1.39.0-2' 'libqtgui>=4.6.2-3' 'util-linux-ng>=2.16') -makedepends=('boost>=1.39.0-2') +depends=('texlive' 'python' 'perl' 'imagemagick>=6.6.1_5-1' 'aspell' 'libboost>=1.46.1' 'libqtgui>=4.6.2-3' 'util-linux-ng>=2.16') +makedepends=('boost>=1.46.1') groups=('xapps-extra') archs=('i686' 'x86_64') options=('scriptlet') From hermier at frugalware.org Mon Apr 11 12:24:51 2011 From: hermier at frugalware.org (Michel Hermier) Date: Mon, 11 Apr 2011 12:24:51 +0200 (CEST) Subject: [Frugalware-git] xorgtesting: libdrm-2.4.25-1-i686 Message-ID: <20110411102451.D06921358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=5073b9ea2be5fabbb987ab71fdaa81dffc39fcd2 commit 5073b9ea2be5fabbb987ab71fdaa81dffc39fcd2 Author: Michel Hermier Date: Mon Apr 11 12:23:39 2011 +0200 libdrm-2.4.25-1-i686 * Bump version. diff --git a/source/x11/libdrm/FrugalBuild b/source/x11/libdrm/FrugalBuild index 36477f4..2d48903 100644 --- a/source/x11/libdrm/FrugalBuild +++ b/source/x11/libdrm/FrugalBuild @@ -4,7 +4,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=libdrm -pkgver=2.4.24 +pkgver=2.4.25 pkgrel=1 pkgdesc="X.Org Userspace interface to kernel DRM services" url="http://xorg.freedesktop.org/" @@ -12,14 +12,14 @@ depends=('libpthread-stubs' 'udev') archs=('i686' 'x86_64' 'ppc') groups=('x11' 'xorg-core' 'xorg-libs') if Fuse $USE_DEVEL; then - pkgver=$pkgver.g2d9990c + pkgver=$pkgver.gba11501 _F_scm_type="git" _F_scm_url="git://anongit.freedesktop.org/mesa/drm" Finclude scm else up2date="Flasttar http://dri.freedesktop.org/libdrm/" source=("http://dri.freedesktop.org/libdrm/$pkgname-$pkgver.tar.bz2") - sha1sums=('7555a46a05c91c5d89a1efcb372fa7095a38d210') + sha1sums=('b950f29cd1c4bb9f1c98a926486a47256b0a4194') fi build() From vmiklos at frugalware.org Mon Apr 11 12:30:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 12:30:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: botan-1.8.11-1-i686 Message-ID: <20110411103052.87D9C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12e021db133ccab5b2006bd857d227b378908cf2 commit 12e021db133ccab5b2006bd857d227b378908cf2 Author: Miklos Vajna Date: Mon Apr 11 12:17:12 2011 +0200 botan-1.8.11-1-i686 - new package (dependency for monotone-1.0) diff --git a/source/lib-extra/botan/FrugalBuild b/source/lib-extra/botan/FrugalBuild new file mode 100644 index 0000000..911eed4 --- /dev/null +++ b/source/lib-extra/botan/FrugalBuild @@ -0,0 +1,29 @@ +# Compiling Time: 0.81 SBU +# Maintainer: Kooda +# Contributor: Miklos Vajna + +pkgname=botan +pkgver=1.8.11 +pkgrel=1 +pkgdesc="Crypto library written in C++" +url="http://botan.randombit.net/" +depends=('bzip2' 'zlib' 'gmp' 'openssl') +groups=('lib-extra') +archs=('i686' 'x86_64') +_F_archive_name="Botan" +_F_archive_grepv="1.9" # dev versions +up2date="Flastarchive http://botan.randombit.net/download.html .tgz" +source=(http://botan.randombit.net/files/Botan-$pkgver.tgz) +signatures=($source.asc) + +build() +{ + Fcd + ./configure.py \ + --prefix=$Fprefix \ + --cc=gcc \ + --os=linux \ + --enable-modules=gnump,bzip2,zlib,openssl || Fdie + make || Fdie + Fmakeinstall +} From vmiklos at frugalware.org Mon Apr 11 12:41:58 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 12:41:58 +0200 (CEST) Subject: [Frugalware-git] boost14: monotone-1.0-1-i686 Message-ID: <20110411104158.0B9101358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=5c7bde6f6fdedfe164c2aa12001f4112d7aec23e commit 5c7bde6f6fdedfe164c2aa12001f4112d7aec23e Author: Miklos Vajna Date: Mon Apr 11 12:28:24 2011 +0200 monotone-1.0-1-i686 - rebuild with boost>=1.46.1 diff --git a/source/devel-extra/monotone/FrugalBuild b/source/devel-extra/monotone/FrugalBuild index cf3bde8..f607f11 100644 --- a/source/devel-extra/monotone/FrugalBuild +++ b/source/devel-extra/monotone/FrugalBuild @@ -3,21 +3,22 @@ # Contributor: Christian Hamar alias krix pkgname=monotone -pkgver=0.41 -pkgrel=3 +pkgver=1.0 +pkgrel=1 pkgdesc="Another distributed version (revision) control system" url="http://monotone.ca" -depends=('libstdc++' 'libboost-mt>=1.37.0' 'lua') -makedepends=('boost>=1.37.0' 'cvs') +depends=('libstdc++' 'libboost>=1.46.1' 'lua' 'botan') +makedepends=('boost' 'cvs') groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url|grep 'Latest'|sed 's/.* \([0-9\.].\)/\1/'" -source=($url/downloads/$pkgver/$pkgname-$pkgver.tar.gz) -sha1sums=('346e3d813fcd4f20ad2dcd61b57676ec90af8286') +source=($url/downloads/$pkgver/$pkgname-$pkgver.tar.bz2) +sha1sums=('aac556bb26d92910b74b65450a0be6c5045e2052') build() { - Fbuild --enable-ipv6 --with-bundled-lua=no BOOST_SUFFIX="-mt" + export LDFLAGS="-ldl" + Fbuild --enable-ipv6 } # optimization OK From vmiklos at frugalware.org Mon Apr 11 13:01:26 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 13:01:26 +0200 (CEST) Subject: [Frugalware-git] boost14: libtorrent-rasterbar-0.15.6-1-i686 Message-ID: <20110411110126.C64451358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=21be15bed4441655ef91813b36c7c4ec806548f1 commit 21be15bed4441655ef91813b36c7c4ec806548f1 Author: Miklos Vajna Date: Mon Apr 11 12:48:00 2011 +0200 libtorrent-rasterbar-0.15.6-1-i686 - rebuild with boost>=1.46.1 diff --git a/source/lib-extra/libtorrent-rasterbar/FrugalBuild b/source/lib-extra/libtorrent-rasterbar/FrugalBuild index 3937353..10d71fd 100644 --- a/source/lib-extra/libtorrent-rasterbar/FrugalBuild +++ b/source/lib-extra/libtorrent-rasterbar/FrugalBuild @@ -2,24 +2,23 @@ # Maintainer: crazy pkgname=libtorrent-rasterbar -pkgver=0.15.5 +pkgver=0.15.6 pkgrel=1 pkgdesc="LibTorrent Rasterbar is a BitTorrent library written in C++" _F_googlecode_dirname="libtorrent" Finclude googlecode python url="http://www.rasterbar.com/products/libtorrent/index.html" -depends=('libboost-mt>=1.39.0-4' 'zlib' 'icu4c>=4.2' 'openssl>=1.0.0' 'geoip') -makedepends=('boost>=1.39.0-4') +depends=('libboost>=1.46.1' 'zlib' 'icu4c>=4.2' 'openssl>=1.0.0' 'geoip') +makedepends=('boost') groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') replaces=('rblibtorrent') provides=('rblibtorrent') conflicts=('rblibtorrent') Fconfopts="$Fconfopts --libdir=/usr/lib --enable-debug=no --with-zlib=system \ - --with-boost-filesystem=mt --with-boost-thread=mt \ - --with-boost-python=boost_python-mt --enable-python-binding --enable-statistics \ + --enable-python-binding --enable-statistics \ --enable-disk-stats --enable-examples --with-libgeoip=system" -sha1sums=('da81d92bb00f51edcd7dcea1e00e3c54806a43b4') +sha1sums=('e6f33b139933ec245e8850558efe52e88081fc6d') subpkgs=("libtorrent-rasterbar-python") subdescs=('libtorrent-rasterbar python bindings') @@ -30,6 +29,8 @@ subarchs=('i686 x86_64 ppc') build() { + export CFLAGS="$CFLAGS -DBOOST_FILESYSTEM_VERSION=2" + export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2" Fbuild Fsplit libtorrent-rasterbar-python $_F_python_libdir } From vmiklos at frugalware.org Mon Apr 11 13:32:04 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 11 Apr 2011 13:32:04 +0200 (CEST) Subject: [Frugalware-git] boost14: ogre-1.6.5-1-i686 Message-ID: <20110411113204.105D21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=10b2310566f17ccbff6a52666445c324a0f467a1 commit 10b2310566f17ccbff6a52666445c324a0f467a1 Author: Miklos Vajna Date: Mon Apr 11 13:18:34 2011 +0200 ogre-1.6.5-1-i686 - rebuild with boost>=1.46.1 diff --git a/source/xlib-extra/ogre/FrugalBuild b/source/xlib-extra/ogre/FrugalBuild index 0d00a4d..9bceb37 100644 --- a/source/xlib-extra/ogre/FrugalBuild +++ b/source/xlib-extra/ogre/FrugalBuild @@ -2,22 +2,24 @@ # Maintainer: crazy pkgname=ogre -pkgver=1.6.1 -_F_sourceforge_pkgver=1-6-1 -pkgrel=2 +pkgver=1.6.5 +_F_sourceforge_pkgver=1-6-5 +pkgrel=1 pkgdesc="A scene-oriented flexible 3D engine written in C++" depends=('freeimage' 'libstdc++' 'zziplib' 'gtk+2' 'freetype2' 'libxau' 'libxdmcp' \ - 'libxaw' 'libxml2>=2.7.8' 'mesa' 'libboost-mt') + 'libxaw' 'libxml2>=2.7.8' 'mesa' 'libboost>=1.46.1') makedepends=('boost') groups=('xlib-extra') archs=('i686' 'x86_64') options=('scriptlet') -_F_sourceforge_ext=".tar.bz2" _F_sourceforge_sep="-v" +_F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://www.ogre3d.org" _F_cd_path="${pkgname}" -sha1sums=('1ecad99037c52f17759766779b8f876dca6c3491') +source=($source ogre-1.6.5-boost.patch) +sha1sums=('7068578be47f9207882b01790213f7ae8ad6304c' \ + 'dfa607c916fb16a6071dd965c23bec4ca72166e2') subpkgs=("$pkgname-docs") subdescs=("Ogre Documentation") diff --git a/source/xlib-extra/ogre/ogre-1.6.5-boost.patch b/source/xlib-extra/ogre/ogre-1.6.5-boost.patch new file mode 100644 index 0000000..9f1784c --- /dev/null +++ b/source/xlib-extra/ogre/ogre-1.6.5-boost.patch @@ -0,0 +1,10 @@ +--- OgreMain/include/OgreStdHeaders.h.old 2009-11-18 14:08:48.000000000 +0100 ++++ OgreMain/include/OgreStdHeaders.h 2009-11-18 14:09:59.000000000 +0100 +@@ -110,6 +110,7 @@ + # include + # include + # include ++# include + #endif + + #if defined ( OGRE_GCC_VISIBILITY ) From achevaux at gmail.com Mon Apr 11 14:32:07 2011 From: achevaux at gmail.com (centuri0) Date: Mon, 11 Apr 2011 14:32:07 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gweled-0.9.1-1-i686 Message-ID: <20110411123207.7FA931358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=684f49f374573359927c95f3dd16cb1ace815c40 commit 684f49f374573359927c95f3dd16cb1ace815c40 Author: Baste Date: Mon Apr 11 11:40:50 2011 +0200 gweled-0.9.1-1-i686 * new package diff --git a/source/games-extra/gweled/FrugalBuild b/source/games-extra/gweled/FrugalBuild new file mode 100644 index 0000000..65f7208 --- /dev/null +++ b/source/games-extra/gweled/FrugalBuild @@ -0,0 +1,21 @@ +# Compiling Time: 0.02 SBU +# Maintainer: centuri0 +# Contributor : Baste + + +pkgname=gweled +pkgver=0.9.1 +pkgrel=1 +pkgdesc="A puzzle game similar to Bejeweled or Diamond Mine" +depends=('librsvg' 'libmikmod' 'gtk+2' 'libuuid') +makedepends=('intltool') +groups=('games-extra') +archs=('i686' 'x86_64') +sha1sums=('ff4a59935c9e1eb4a202e723baabaab39f526714') + +_F_gnome_iconcache="y" +Finclude launchpad gnome-scriptlet +Fconfopts="$Fconfopts --with-scores-group=users --with-scores-user=root" +backup=(var/games/{gweled.Normal.scores,gweled.Timed.scores}) + +# optimization OK From jercel16 at gmail.com Mon Apr 11 18:06:14 2011 From: jercel16 at gmail.com (jercel) Date: Mon, 11 Apr 2011 18:06:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: obtheme-2011.04.04.1-1-x86_64 Message-ID: <20110411160614.1A8C71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8221b5671562d53c7ced76dde171a0d208fa5d11 commit 8221b5671562d53c7ced76dde171a0d208fa5d11 Author: jercel Date: Mon Apr 11 17:52:39 2011 +0200 obtheme-2011.04.04.1-1-x86_64 * Version bump diff --git a/source/xapps-extra/obtheme/FrugalBuild b/source/xapps-extra/obtheme/FrugalBuild index 2ba2f99..9c270d2 100644 --- a/source/xapps-extra/obtheme/FrugalBuild +++ b/source/xapps-extra/obtheme/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: jercel pkgname=obtheme -pkgver=2010.03.01.1 -pkgrel=2 +pkgver=2011.04.04.1 +pkgrel=1 pkgdesc="A GUI theme editor for Openbox." url="http://xyne.archlinux.ca/info/obtheme" depends=('pygtk>=2.14.1-2' 'fuse-python>=-0.2.1') @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="Flasttar http://xyne.archlinux.ca/src/" source=(http://xyne.archlinux.ca/src/$pkgname-$pkgver.tar.gz) -sha1sums=('e50120fe5f71e299d776dff8373b7cd6bbdfe81a') +sha1sums=('c8f9b0378aa1afd223005ba236e2c01fbb7202ae') options=('force') _F_cd_path="$pkgname" _F_desktop_name="Obtheme" From jercel16 at gmail.com Mon Apr 11 18:06:14 2011 From: jercel16 at gmail.com (jercel) Date: Mon, 11 Apr 2011 18:06:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pam-emul-1.1.3_2-1-x86_64 Message-ID: <20110411160614.319CCBAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=568a5f1e82cd90481509fdab2e7fa96f97bb4bda commit 568a5f1e82cd90481509fdab2e7fa96f97bb4bda Author: jercel Date: Mon Apr 11 17:57:26 2011 +0200 pam-emul-1.1.3_2-1-x86_64 * Version Bump diff --git a/source/emul-extra/pam-emul/FrugalBuild b/source/emul-extra/pam-emul/FrugalBuild index 0221c45..c49731a 100644 --- a/source/emul-extra/pam-emul/FrugalBuild +++ b/source/emul-extra/pam-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=pam-emul -pkgver=1.1.3_1 +pkgver=1.1.3_2 pkgrel=1 pkgdesc="Linux-PAM (Pluggable Authentication Modules) (32bit emul)" url="http://www.gtk.org" @@ -10,4 +10,4 @@ depends=('glibc-emul') groups=('emul-extra') archs=('!i686' '!ppc' 'x86_64') Finclude emul -sha1sums=('78f3c296170b7c207d1cd72942e1438f422d5e92') +sha1sums=('7f5157beb1aba4db18593edc72125f9b321979c9') From jercel16 at gmail.com Mon Apr 11 18:06:14 2011 From: jercel16 at gmail.com (jercel) Date: Mon, 11 Apr 2011 18:06:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: xcb-proto-emul-1.6_3-1-x86_64 Message-ID: <20110411160614.3CB9EBAC006@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a433fa2638e786e1d564f4f7264c9f0d529fc0ad commit a433fa2638e786e1d564f4f7264c9f0d529fc0ad Author: jercel Date: Mon Apr 11 17:58:29 2011 +0200 xcb-proto-emul-1.6_3-1-x86_64 * Version Bump diff --git a/source/emul-extra/xcb-proto-emul/FrugalBuild b/source/emul-extra/xcb-proto-emul/FrugalBuild index c819234..27043c9 100644 --- a/source/emul-extra/xcb-proto-emul/FrugalBuild +++ b/source/emul-extra/xcb-proto-emul/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: jercel pkgname=xcb-proto-emul -pkgver=1.6_2 +pkgver=1.6_3 pkgrel=1 pkgdesc="X.org X protocol descriptions for XCB for emulation of i686 on x86_64" url="http://xcb.freedesktop.org" depends=('glibc-emul') Finclude emul -sha1sums=('7c60430d4f97fa91e9ffe48fbeb2f1eb20daeeba') +sha1sums=('939cbd20d9506608c74d306a08b4ab5044154e87') From devil505linux at gmail.com Mon Apr 11 19:50:03 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 19:50:03 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libdesktop-agnostic-0.3.92-1-i686 * new package Message-ID: <20110411175003.91AB31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a63d388b521c5dd02d1037250fba392f446ed49f commit a63d388b521c5dd02d1037250fba392f446ed49f Author: Devil505 Date: Mon Apr 11 19:49:21 2011 +0200 libdesktop-agnostic-0.3.92-1-i686 * new package diff --git a/source/xlib-extra/libdesktop-agnostic/FrugalBuild b/source/xlib-extra/libdesktop-agnostic/FrugalBuild new file mode 100644 index 0000000..5c5459d --- /dev/null +++ b/source/xlib-extra/libdesktop-agnostic/FrugalBuild @@ -0,0 +1,33 @@ +# Compiling Time: 0.32 SBU +# Maintainer: Devil505 + +pkgname=libdesktop-agnostic +pkgver=0.3.92 +pkgrel=1 +pkgdesc="Provides an extensible config API, a unified virtual fs API, and a desktop item editor for GLib-based projects." +depends=('gtk+2' 'gdk-pixbuf2' 'libuuid' 'pygobject') +makedepends=('gobject-introspection' 'vala>=0.8.1' 'intltool' 'gconf') +groups=('xlib-extra') +_F_launchpad_branch="0.4" +Finclude launchpad +archs=('i686' 'x86_64') +backup=(etc/xdg/libdesktop-agnostic/desktop-agnostic.ini) +source=($source gir.patch) +sha1sums=('b8be6db7f6185f0d9ddbc632cd7211f1043c85b1' \ + '1588146eb19e8352d34d151fa9088d0f37548814') + +build() { + Fcd + + # Force source regeneration + rm -r gen_src || Fdie + + # fix to enable introspection + Fpatchall + + ./waf configure --config-backends=gconf,keyfile --vfs-backends=gio \ + --desktop-entry-backends=gio,glib --prefix=/usr --sysconfdir=/etc || Fdie + ./waf || Fdie + ./waf install --destdir="$Fdestdir" --sysconfdir="$Fdestdir/etc" || Fdie +} + diff --git a/source/xlib-extra/libdesktop-agnostic/gir.patch b/source/xlib-extra/libdesktop-agnostic/gir.patch new file mode 100644 index 0000000..88824cf --- /dev/null +++ b/source/xlib-extra/libdesktop-agnostic/gir.patch @@ -0,0 +1,27 @@ +diff -u -r libdesktop-agnostic-0.3.92/libdesktop-agnostic/wscript libdesktop-agnostic-0.3.92-gir/libdesktop-agnostic/wscript +--- libdesktop-agnostic-0.3.92/libdesktop-agnostic/wscript 2011-03-12 15:14:23.000000000 +0100 ++++ libdesktop-agnostic-0.3.92-gir/libdesktop-agnostic/wscript 2011-03-27 18:51:13.170000225 +0200 +@@ -67,8 +67,9 @@ + + + def create_typelib_task(): +- rule = 'LD_LIBRARY_PATH="${CURRENT_BUILD_DIR}" ${G_IR_COMPILER} ' + \ +- '-o ${TGT} ${SRC}' ++ rule = '${G_IR_COMPILER}' + \ ++ ' --includedir "${CURRENT_BUILD_DIR}"' + \ ++ ' -o ${TGT} ${SRC}' + Task.simple_task_type('typelib', rule, after='cc_link') + + create_typelib_task() +diff -u -r libdesktop-agnostic-0.3.92/wscript libdesktop-agnostic-0.3.92-gir/wscript +--- libdesktop-agnostic-0.3.92/wscript 2011-03-13 16:09:47.000000000 +0100 ++++ libdesktop-agnostic-0.3.92-gir/wscript 2011-03-27 18:51:46.973335650 +0200 +@@ -71,7 +71,7 @@ + help='Enables the library to be built so that it is ' + 'instrumented to measure performance.') + opt.add_option('--disable-gi', action='store_true', +- dest='no_gi', default=True) ++ dest='no_gi', default=False) + + + def configure(conf): From bouleetbil at frogdev.info Mon Apr 11 20:00:44 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 11 Apr 2011 20:00:44 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: yelp-3.0.1-1-x86_64 Message-ID: <20110411180044.52ECD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=04d388becfb5b0fd1913c9a3659579202665dfbb commit 04d388becfb5b0fd1913c9a3659579202665dfbb Author: bouleetbil Date: Mon Apr 11 20:00:20 2011 +0200 yelp-3.0.1-1-x86_64 *Version bump diff --git a/source/gnome/yelp/FrugalBuild b/source/gnome/yelp/FrugalBuild index 8d3fe98..2fcd5a9 100644 --- a/source/gnome/yelp/FrugalBuild +++ b/source/gnome/yelp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=yelp -pkgver=3.0.0 +pkgver=3.0.1 pkgrel=1 pkgdesc="The default help browser for GNOME" url="http://www.gnome.org/" @@ -15,6 +15,6 @@ _F_gnome_glib="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet unset MAKEFLAGS -sha1sums=('b71667ea90b13e350e5544d3afc34749a81b874a') +sha1sums=('fad835958f930e3025bd8c62f2bd107afcdf4cb2') # optimization OK From devil505linux at gmail.com Mon Apr 11 20:27:32 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 20:27:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libunity-misc-0.2.1-1-i686 * removed duplicate Message-ID: <20110411182732.AD5581358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=206d159a41253af6d359317baff57641c20c1893 commit 206d159a41253af6d359317baff57641c20c1893 Author: Devil505 Date: Mon Apr 11 20:26:30 2011 +0200 libunity-misc-0.2.1-1-i686 * removed duplicate diff --git a/source/xlib-extra/libunity-misc/FrugalBuild b/source/xlib-extra/libunity-misc/FrugalBuild deleted file mode 100644 index 5e32633..0000000 --- a/source/xlib-extra/libunity-misc/FrugalBuild +++ /dev/null @@ -1,13 +0,0 @@ -# Compiling Time: 0.05 SBU -# Maintainer: Devil505 - -pkgname=libunity-misc -pkgver=0.2.1 -pkgrel=1 -pkgdesc="Misc. differently licensed stuff for Unity" -depends=('clutter' 'libuuid') -groups=('xlib-extra') -archs=('i686' 'x86_64') -_F_launchpad_branch="0.1" -Finclude launchpad -sha1sums=('fb2f227dd1182d028b35fe6d7cf57394d6eb05db') From bouleetbil at frogdev.info Mon Apr 11 20:29:52 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 11 Apr 2011 20:29:52 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: ekiga-3.3.0-4-x86_64 *fix up2date Message-ID: <20110411182952.69FC61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=293e496abcc84e3b864dfba5deffe716c62b09a3 commit 293e496abcc84e3b864dfba5deffe716c62b09a3 Author: bouleetbil Date: Mon Apr 11 20:29:26 2011 +0200 ekiga-3.3.0-4-x86_64 *fix up2date diff --git a/source/gnome-extra/ekiga/FrugalBuild b/source/gnome-extra/ekiga/FrugalBuild index 1951975..e6c902d 100644 --- a/source/gnome-extra/ekiga/FrugalBuild +++ b/source/gnome-extra/ekiga/FrugalBuild @@ -21,6 +21,7 @@ _F_gnome_schemas=('/etc/gconf/schemas/ekiga.schemas') _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" +_F_gnome_devel="y" Finclude gnome gnome-scriptlet url="http://ekiga.org" sha1sums=('d6127b0a8132d572b298e212c2901c02d4a93e45') From devil505linux at gmail.com Mon Apr 11 20:31:48 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 20:31:48 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: nux-0.9.42-1-i686 * version bump Message-ID: <20110411183148.808C01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=42c7d15d2a3d276438aca0bfe73a7aece724c6f3 commit 42c7d15d2a3d276438aca0bfe73a7aece724c6f3 Author: Devil505 Date: Mon Apr 11 20:31:30 2011 +0200 nux-0.9.42-1-i686 * version bump diff --git a/source/ayatana-extra/nux/FrugalBuild b/source/ayatana-extra/nux/FrugalBuild index f950b4a..bb2d625 100644 --- a/source/ayatana-extra/nux/FrugalBuild +++ b/source/ayatana-extra/nux/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=nux -pkgver=0.9.40 +pkgver=0.9.42 pkgrel=1 pkgdesc="An OpenGL toolkit (for Unity)" url="https://launchpad.net/nux" @@ -14,6 +14,6 @@ groups=('ayatana-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/0.9/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('c908723a84b1fba46e62afcb3872d5fe4bdddf3c') +sha1sums=('534ca4630b1e46befdbefa011b29a368f7f342a1') # optimization OK From devil505linux at gmail.com Mon Apr 11 21:00:00 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:00:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: unity-3.8.6-1-i686 * version bump Message-ID: <20110411190000.4F4281358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a0b90667fd6f773b66f3f516dfc8250f29893a6f commit a0b90667fd6f773b66f3f516dfc8250f29893a6f Author: Devil505 Date: Mon Apr 11 20:59:24 2011 +0200 unity-3.8.6-1-i686 * version bump diff --git a/source/ayatana-extra/unity/FrugalBuild b/source/ayatana-extra/unity/FrugalBuild index f10de09..45e617d 100644 --- a/source/ayatana-extra/unity/FrugalBuild +++ b/source/ayatana-extra/unity/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Devil505 pkgname=unity -pkgver=3.8.4 +pkgver=3.8.6 branch=3.0 pkgrel=1 pkgdesc="A desktop experience designed for efficiency of space and interaction" url="https://launchpad.net/unity/" -depends=('compiz-core>=0.9.4-2' 'nux>=0.9.40' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') +depends=('compiz-core>=0.9.4-2' 'nux>=0.9.42' 'bamf>=0.2.70' 'libdee>=0.5.16' 'libdbusmenu>=0.4.0' 'libindicator' 'libunity-misc' 'unity-asset-pool') makedepends=('vala' 'intltool' 'gobject-introspection' 'boost') groups=('ayatana-extra') _F_cmake_confopts="-DCMAKE_BUILD_TYPE=Release -DCOMPIZ_PLUGIN_INSTALL_TYPE=package" @@ -17,7 +17,7 @@ Finclude cmake gnome-scriptlet archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/$branch/$pkgver/+download/$pkgname-$pkgver.tar.bz2 frugalware-icon.png unity-3.2.14-disable_tests.patch) -sha1sums=('87f015a88eb053c99a03ad2c0b26ca78e0081deb' \ +sha1sums=('86caea85b5c925e81f9e53c45f317fa58394eb8b' \ '74be0bbad4cda0b411fb4f8e62c5fa401535aa8b' \ '14b8f00bc15e7789fc81a87a0b7f4505baf43957') From devil505linux at gmail.com Mon Apr 11 21:16:24 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:16:24 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: Revert "avant-window-navigator" Message-ID: <20110411191624.60FA81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6dcddded0b9b43f3554879a5d31b03be19e64580 commit 6dcddded0b9b43f3554879a5d31b03be19e64580 Author: Devil505 Date: Mon Apr 11 21:15:17 2011 +0200 Revert "avant-window-navigator" This reverts commit 693ba1e1780c7bde91ed268f167e5e8ddc48ef1c. diff --git a/source/gnome-extra/avant-window-navigator/FrugalBuild b/source/gnome-extra/avant-window-navigator/FrugalBuild new file mode 100644 index 0000000..7cf5e1f --- /dev/null +++ b/source/gnome-extra/avant-window-navigator/FrugalBuild @@ -0,0 +1,25 @@ +# Compiling Time: 0.38 SBU +# Maintainer: bouleetbil +# Contributor: AlexExtreme + +pkgname=avant-window-navigator +pkgver=0.3.2.1 +pkgrel=6 +pkgdesc="Fully customisable dock-like window navigator for GNOME." +url="https://launchpad.net/awn" +depends=('pygtk' 'gtk+2>=2.20.0-2' 'libglade' 'libwnck2' 'gconf' 'gnome-desktop2' \ + 'dbus-glib' 'libxcomposite' 'libx11' 'libxrender' 'gnome-python' \ + 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk') +makedepends=('perl-xml-parser' 'intltool' 'vala') +groups=('gnome-extra') +_F_gnome_schemas=('/etc/gconf/schemas/awn.schemas') +_F_gnome_iconcache=y +_F_gnome_desktop=y +options=('scriptlet') +Finclude gnome-scriptlet +archs=('i686' 'x86_64') +up2date="elinks -dump 'https://launchpad.net/awn/+download' | Flasttar" +source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('3b663ebdd8ecca1c953343e8664e713746128242') + +# optimization OK From bouleetbil at frogdev.info Mon Apr 11 21:17:25 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 11 Apr 2011 21:17:25 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-panel-3.0.0.1-2-x86_64 *remove replace avant-window-navigator Message-ID: <20110411191725.D0BBB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=88d8fd5c903ca3a58d49acc9679408b8cb0592bd commit 88d8fd5c903ca3a58d49acc9679408b8cb0592bd Author: bouleetbil Date: Mon Apr 11 21:16:44 2011 +0200 gnome-panel-3.0.0.1-2-x86_64 *remove replace avant-window-navigator diff --git a/source/gnome/gnome-panel/FrugalBuild b/source/gnome/gnome-panel/FrugalBuild index 5073669..45ec8aa 100644 --- a/source/gnome/gnome-panel/FrugalBuild +++ b/source/gnome/gnome-panel/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnome-panel pkgver=3.0.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME panel and core applets" depends=('libxml2>=2.7.8' 'gnome-desktop>=3.0.0' 'gnome-menus>=2.30.4' \ 'libwnck>=3.0.0' 'rarian>=0.8.0' 'dbus-glib>=0.71' 'avahi-glib>=0.6.17' 'librsvg>=2.32.0' \ @@ -19,7 +19,6 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet sha1sums=('d092cc3c14b29c3c98bb067345b50a6891da1d11') -replaces=('avant-window-navigator' 'awn-extras-applets') build() { Fcd From devil505linux at gmail.com Mon Apr 11 21:19:18 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:19:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: avant-window-navigator-0.4.0-1-i686 * version bump * changed m8r (bouleetbil->devil505) * using launchpad schema * added libdesktop-agnostic to depends Message-ID: <20110411191918.56B4D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=823c59378ad5b5aa2741f75e0be555741ba1d781 commit 823c59378ad5b5aa2741f75e0be555741ba1d781 Author: Devil505 Date: Mon Apr 11 21:17:45 2011 +0200 avant-window-navigator-0.4.0-1-i686 * version bump * changed m8r (bouleetbil->devil505) * using launchpad schema * added libdesktop-agnostic to depends diff --git a/source/gnome-extra/avant-window-navigator/FrugalBuild b/source/gnome-extra/avant-window-navigator/FrugalBuild index 7cf5e1f..5fdab3f 100644 --- a/source/gnome-extra/avant-window-navigator/FrugalBuild +++ b/source/gnome-extra/avant-window-navigator/FrugalBuild @@ -1,25 +1,25 @@ # Compiling Time: 0.38 SBU -# Maintainer: bouleetbil +# Maintainer: Devil505 # Contributor: AlexExtreme pkgname=avant-window-navigator -pkgver=0.3.2.1 -pkgrel=6 +pkgver=0.4.0 +pkgrel=1 pkgdesc="Fully customisable dock-like window navigator for GNOME." url="https://launchpad.net/awn" depends=('pygtk' 'gtk+2>=2.20.0-2' 'libglade' 'libwnck2' 'gconf' 'gnome-desktop2' \ 'dbus-glib' 'libxcomposite' 'libx11' 'libxrender' 'gnome-python' \ - 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk') + 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk' 'libdesktop-agnostic') makedepends=('perl-xml-parser' 'intltool' 'vala') groups=('gnome-extra') _F_gnome_schemas=('/etc/gconf/schemas/awn.schemas') _F_gnome_iconcache=y _F_gnome_desktop=y options=('scriptlet') -Finclude gnome-scriptlet +_F_launchpad_dirname="awn" +_F_launchpad_branch="0.4" +Finclude gnome-scriptlet launchpad archs=('i686' 'x86_64') -up2date="elinks -dump 'https://launchpad.net/awn/+download' | Flasttar" -source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('3b663ebdd8ecca1c953343e8664e713746128242') +sha1sums=('2e64c4e66af93ff5ef3a5a2f3cfbaa1db1027a9c') # optimization OK From devil505linux at gmail.com Mon Apr 11 21:20:34 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:20:34 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: Revert "awn-extras-applets" Message-ID: <20110411192034.C6E891358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=74f7229a8a2558708ba66ccf7785cb36f108716f commit 74f7229a8a2558708ba66ccf7785cb36f108716f Author: Devil505 Date: Mon Apr 11 21:20:25 2011 +0200 Revert "awn-extras-applets" This reverts commit dfd44166ddb39d61f5bdd651412705c48860bbf4. diff --git a/source/gnome-extra/awn-extras-applets/FrugalBuild b/source/gnome-extra/awn-extras-applets/FrugalBuild new file mode 100644 index 0000000..1098013 --- /dev/null +++ b/source/gnome-extra/awn-extras-applets/FrugalBuild @@ -0,0 +1,42 @@ +# Compiling Time: 0.96 SBU +# Maintainer: bouleetbil + +pkgname=awn-extras-applets +pkgver=0.3.2.2 +pkgrel=5 +pkgdesc="plugins for avant window manager" +url="https://launchpad.net/awn-extras" +depends=('avant-window-navigator>=0.3.2.1-4' 'libsexy' 'librsvg' 'gnome-menus' 'libgtop' 'vte>=0.20.5' 'wxgtk' \ + 'gst-python' 'gnome-python-extras' 'gnome-desktop>=2.30.0' \ + 'pyalsaaudio' 'feedparser' 'python>=2.7' 'gnome-python-extras' 'gnome-python' \ + 'gnome-python-desktop' 'gnome-python-desktop-applet' 'gnome-python-desktop-desktop' \ + 'gnome-python-extras-mozembed' 'gnome-python-extras-gtkhtml' \ + 'gnome-python-extras-gtkspell' 'notify-python') +makedepends=('perl-xml-parser' 'intltool') +groups=('gnome-extra') +options=('scriptlet') +archs=('i686' 'x86_64') +up2date="elinks -dump 'https://launchpad.net/awn-extras/+download' | Flasttar" +source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) +Fconfopts="${Fconfopts[@]} --disable-pymod-checks" +_F_gnome_iconcache="y" +_F_gnome_schemas=( \ + '/etc/gconf/schemas/arss.schemas' \ + '/etc/gconf/schemas/awn-notification-daemon.schemas' \ + '/etc/gconf/schemas/awnsystemmonitor.schemas' \ + '/etc/gconf/schemas/awnterm.schemas' \ + '/etc/gconf/schemas/cairo-clock.schemas' \ + '/etc/gconf/schemas/DesktopManager.schemas' \ + '/etc/gconf/schemas/digitalClock.schemas' \ + '/etc/gconf/schemas/filebrowser.schemas' \ + '/etc/gconf/schemas/file-browser-launcher.schemas' \ + '/etc/gconf/schemas/places.schemas' \ + '/etc/gconf/schemas/pynot.schemas' \ + '/etc/gconf/schemas/pynot-rgba.schemas' \ + '/etc/gconf/schemas/shinyswitcher.schemas' \ + '/etc/gconf/schemas/to-do.schemas' \ + '/etc/gconf/schemas/trash.schemas') +Finclude gnome-scriptlet +sha1sums=('a59fe66fd379a222291ea238d06c1f64195aee14') + +# optimization OK From devil505linux at gmail.com Mon Apr 11 21:22:24 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:22:24 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: awn-extras-applets-0.3.2.2-5-i686 * changed m8r (bouleetbil->devil505) Message-ID: <20110411192224.0D8F01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9d805ea813517f2623d96bc8af2ccd316d88f755 commit 9d805ea813517f2623d96bc8af2ccd316d88f755 Author: Devil505 Date: Mon Apr 11 21:22:08 2011 +0200 awn-extras-applets-0.3.2.2-5-i686 * changed m8r (bouleetbil->devil505) diff --git a/source/gnome-extra/awn-extras-applets/FrugalBuild b/source/gnome-extra/awn-extras-applets/FrugalBuild index 1098013..2c7e7f2 100644 --- a/source/gnome-extra/awn-extras-applets/FrugalBuild +++ b/source/gnome-extra/awn-extras-applets/FrugalBuild @@ -1,5 +1,6 @@ # Compiling Time: 0.96 SBU -# Maintainer: bouleetbil +# Maintainer: Devil505 +# Contributor: bouleetbil pkgname=awn-extras-applets pkgver=0.3.2.2 From devil505linux at gmail.com Mon Apr 11 21:28:19 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 21:28:19 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: avant-window-navigator-0.4.0-1-i686 * fixing depends Message-ID: <20110411192819.1026C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2118c6959adfe380e6e7ab505da78cc24f0049ab commit 2118c6959adfe380e6e7ab505da78cc24f0049ab Author: Devil505 Date: Mon Apr 11 21:28:06 2011 +0200 avant-window-navigator-0.4.0-1-i686 * fixing depends diff --git a/source/gnome-extra/avant-window-navigator/FrugalBuild b/source/gnome-extra/avant-window-navigator/FrugalBuild index 5fdab3f..0b93a7b 100644 --- a/source/gnome-extra/avant-window-navigator/FrugalBuild +++ b/source/gnome-extra/avant-window-navigator/FrugalBuild @@ -9,7 +9,7 @@ pkgdesc="Fully customisable dock-like window navigator for GNOME." url="https://launchpad.net/awn" depends=('pygtk' 'gtk+2>=2.20.0-2' 'libglade' 'libwnck2' 'gconf' 'gnome-desktop2' \ 'dbus-glib' 'libxcomposite' 'libx11' 'libxrender' 'gnome-python' \ - 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk' 'libdesktop-agnostic') + 'gnome-python-desktop-desktop' 'pyxdg' 'pygtk' 'libdesktop-agnostic' 'libgtop') makedepends=('perl-xml-parser' 'intltool' 'vala') groups=('gnome-extra') _F_gnome_schemas=('/etc/gconf/schemas/awn.schemas') From devil505linux at gmail.com Mon Apr 11 22:10:04 2011 From: devil505linux at gmail.com (Devil505) Date: Mon, 11 Apr 2011 22:10:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: awn-extras-applets-0.4.0-1-i686 * version bump * using now launchpad schema * added patch for libnotify 0.7 Message-ID: <20110411201004.B323E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=43248d62bed5927697eba6d0dd4d1beb06ceb69f commit 43248d62bed5927697eba6d0dd4d1beb06ceb69f Author: Devil505 Date: Mon Apr 11 22:09:27 2011 +0200 awn-extras-applets-0.4.0-1-i686 * version bump * using now launchpad schema * added patch for libnotify 0.7 diff --git a/source/gnome-extra/awn-extras-applets/FrugalBuild b/source/gnome-extra/awn-extras-applets/FrugalBuild index 2c7e7f2..7a91bea 100644 --- a/source/gnome-extra/awn-extras-applets/FrugalBuild +++ b/source/gnome-extra/awn-extras-applets/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: bouleetbil pkgname=awn-extras-applets -pkgver=0.3.2.2 -pkgrel=5 +pkgver=0.4.0 +pkgrel=1 pkgdesc="plugins for avant window manager" url="https://launchpad.net/awn-extras" depends=('avant-window-navigator>=0.3.2.1-4' 'libsexy' 'librsvg' 'gnome-menus' 'libgtop' 'vte>=0.20.5' 'wxgtk' \ @@ -17,8 +17,6 @@ makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') options=('scriptlet') archs=('i686' 'x86_64') -up2date="elinks -dump 'https://launchpad.net/awn-extras/+download' | Flasttar" -source=($url/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) Fconfopts="${Fconfopts[@]} --disable-pymod-checks" _F_gnome_iconcache="y" _F_gnome_schemas=( \ @@ -37,7 +35,12 @@ _F_gnome_schemas=( \ '/etc/gconf/schemas/shinyswitcher.schemas' \ '/etc/gconf/schemas/to-do.schemas' \ '/etc/gconf/schemas/trash.schemas') -Finclude gnome-scriptlet -sha1sums=('a59fe66fd379a222291ea238d06c1f64195aee14') +_F_launchpad_dirname="awn-extras" +_F_launchpad_name="awn-extras" +_F_launchpad_branch="0.4" +Finclude gnome-scriptlet launchpad +source=($source awn-extras-libnotify0.7.patch) +sha1sums=('6adca898d11369da841d5eecd79fa693989118a6' \ + 'a578383a0091698feb9eeca8059974e22b30e53d') # optimization OK diff --git a/source/gnome-extra/awn-extras-applets/awn-extras-libnotify0.7.patch b/source/gnome-extra/awn-extras-applets/awn-extras-libnotify0.7.patch new file mode 100644 index 0000000..63b282b --- /dev/null +++ b/source/gnome-extra/awn-extras-applets/awn-extras-libnotify0.7.patch @@ -0,0 +1,20 @@ +diff -aur awn-extras-0.4.0/applets/maintained/notification-daemon/daemon.c awn-extras-0.4.0-new//applets/maintained/notification-daemon/daemon.c +--- awn-extras-0.4.0/applets/maintained/notification-daemon/daemon.c 2010-04-09 16:26:20.000000000 -0700 ++++ awn-extras-0.4.0-new//applets/maintained/notification-daemon/daemon.c 2011-03-06 09:33:33.603336393 -0800 +@@ -1487,7 +1487,15 @@ + if (fork() == 0) + { + notify_init("notify-send"); +- notify = notify_notification_new(summary, body, icon_str, NULL); ++ #ifdef NOTIFY_CHECK_VERSION ++ #if NOTIFY_CHECK_VERSION (0, 7, 0) ++ notify = notify_notification_new(summary, body, icon_str); ++ #else ++ notify = notify_notification_new(summary, body, icon_str, NULL); ++ #endif ++ #else ++ notify = notify_notification_new(summary, body, icon_str, NULL); ++ #endif + notify_notification_set_category(notify, type); + notify_notification_set_urgency(notify, urgency); + notify_notification_set_timeout(notify, expire_timeout); From pingax at frugalware.fr Tue Apr 12 09:50:06 2011 From: pingax at frugalware.fr (Pingax) Date: Tue, 12 Apr 2011 09:50:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: dotclear-2.2.3-1-i686 * Version bump Message-ID: <20110412075006.F0BCF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4ce6200244a4596f4b5e73d6f7731680caddd0ad commit 4ce6200244a4596f4b5e73d6f7731680caddd0ad Author: Pingax Date: Tue Apr 12 09:43:14 2011 +0200 dotclear-2.2.3-1-i686 * Version bump diff --git a/source/network-extra/dotclear/FrugalBuild b/source/network-extra/dotclear/FrugalBuild index aa73d30..4874cba 100644 --- a/source/network-extra/dotclear/FrugalBuild +++ b/source/network-extra/dotclear/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Pingax pkgname=dotclear -pkgver=2.2.2 +pkgver=2.2.3 pkgrel=1 pkgdesc="Dotclear is a php-written blogging platform" url="http://dotclear.org" @@ -11,7 +11,7 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar http://download.dotclear.org/latest/" source=(http://download.dotclear.org/latest/$pkgname-$pkgver.tar.gz) -sha1sums=('84adb4efff558ac474903dd773b9b839fbb485a0') +sha1sums=('27dbca1dca1e3736154f413396a849b324b10d11') build() { From vmiklos at frugalware.org Tue Apr 12 10:51:26 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 10:51:26 +0200 (CEST) Subject: [Frugalware-git] boost14: pdns-2.9.22-3-i686 Message-ID: <20110412085126.C81501358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=34dfca208714874bc5dd33105be92a25d819fc79 commit 34dfca208714874bc5dd33105be92a25d819fc79 Author: Miklos Vajna Date: Tue Apr 12 10:37:50 2011 +0200 pdns-2.9.22-3-i686 - rebuild with boost>=1.46.1 diff --git a/source/network-extra/pdns/FrugalBuild b/source/network-extra/pdns/FrugalBuild index e46f500..17ab10a 100644 --- a/source/network-extra/pdns/FrugalBuild +++ b/source/network-extra/pdns/FrugalBuild @@ -5,11 +5,11 @@ pkgname=pdns pkgver=2.9.22 -pkgrel=2 +pkgrel=3 pkgdesc="Power DNS Server and Recursor" url="http://www.powerdns.com/" -depends=('libstdc++' 'sqlite2' 'libmysqlclient' 'libpq' 'pdns-recursor>=3.3-1') -makedepends=('mysql' 'postgresql' 'boost>=1.34.1') +depends=('libstdc++' 'sqlite2' 'libmysqlclient' 'libpq' 'pdns-recursor>=3.3-1' 'libboost>=1.46.1') +makedepends=('mysql' 'postgresql' 'boost') groups=('network-extra') archs=('i686' 'x86_64') up2date="lynx --dump 'http://downloads.powerdns.com/releases/?C=M;O=D' | grep pdns-.*gz$ | sed 's/.*-\(.*\)\.t.*/\1/;q'" From vmiklos at frugalware.org Tue Apr 12 10:59:56 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 10:59:56 +0200 (CEST) Subject: [Frugalware-git] boost14: pdns-recursor-3.3-2-i686 Message-ID: <20110412085956.EBD8E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=c06fddd52fefbbf8a02aba4175439cc194ef9f96 commit c06fddd52fefbbf8a02aba4175439cc194ef9f96 Author: Miklos Vajna Date: Tue Apr 12 10:46:22 2011 +0200 pdns-recursor-3.3-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/network-extra/pdns-recursor/FrugalBuild b/source/network-extra/pdns-recursor/FrugalBuild index abc3bb2..0914f4b 100644 --- a/source/network-extra/pdns-recursor/FrugalBuild +++ b/source/network-extra/pdns-recursor/FrugalBuild @@ -5,11 +5,11 @@ pkgname=pdns-recursor pkgver=3.3 -pkgrel=1 +pkgrel=2 pkgdesc="Power DNS recursor" url="http://www.powerdns.com/" -depends=('libstdc++') -makedepends=('boost>=1.34.1') +depends=('libstdc++' 'libboost>=1.46.1') +makedepends=('boost') groups=('network-extra') archs=('i686' 'x86_64') up2date="lynx --dump 'http://downloads.powerdns.com/releases/?C=M;O=D'|grep recursor|sed 's/.*recursor-\(.*\).tar.*/\1/;1 q'" From vmiklos at frugalware.org Tue Apr 12 11:22:10 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 11:22:10 +0200 (CEST) Subject: [Frugalware-git] boost14: source-highlight-qt-0.2.2-2-i686 Message-ID: <20110412092210.0CAE41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=fc8c19b81e368f8cefce35a4c5206e3062183d53 commit fc8c19b81e368f8cefce35a4c5206e3062183d53 Author: Miklos Vajna Date: Tue Apr 12 11:08:32 2011 +0200 source-highlight-qt-0.2.2-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/xlib-extra/source-highlight-qt/FrugalBuild b/source/xlib-extra/source-highlight-qt/FrugalBuild index f060700..027baa0 100644 --- a/source/xlib-extra/source-highlight-qt/FrugalBuild +++ b/source/xlib-extra/source-highlight-qt/FrugalBuild @@ -3,10 +3,10 @@ pkgname=source-highlight-qt pkgver=0.2.2 -pkgrel=1 +pkgrel=2 pkgdesc="This provides libraries for Qt4 for highlighting contents of a QTextEdit using GNU Source-Highlight library. " depends=('source-highlight' 'libqtgui' 'libuuid') -makedepends=('boost') +makedepends=('boost>=1.46.1') groups=('xlib-extra') archs=('i686' 'x86_64') _F_sourceforge_dirname='srchiliteqt' From vmiklos at frugalware.org Tue Apr 12 12:43:12 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 12:43:12 +0200 (CEST) Subject: [Frugalware-git] boost14: libktorrent-1.1.0-2-i686 Message-ID: <20110412104312.EB1A01358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=e114bcb68f652cc9ece3c4ce371cfce6969e6d49 commit e114bcb68f652cc9ece3c4ce371cfce6969e6d49 Author: Miklos Vajna Date: Tue Apr 12 12:29:29 2011 +0200 libktorrent-1.1.0-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/kde-extra/libktorrent/FrugalBuild b/source/kde-extra/libktorrent/FrugalBuild index 65465ec..c1be229 100644 --- a/source/kde-extra/libktorrent/FrugalBuild +++ b/source/kde-extra/libktorrent/FrugalBuild @@ -3,12 +3,12 @@ pkgname=libktorrent pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="LibKTorrent is a BitTorrent library for KDE." _F_cmakekde_final=OFF Finclude kde depends=("${depends[@]}" 'phonon' 'qca' 'libnepomuk' 'attica') -makedepends=("${makedepends[@]}" 'automoc4' 'boost' 'kdelibs-compiletime>=$_F_kde_ver') +makedepends=("${makedepends[@]}" 'automoc4' 'boost>=1.46.1' 'kdelibs-compiletime>=$_F_kde_ver') groups=('kde-extra') archs=('i686' 'x86_64') url="http://ktorrent.org/" From vmiklos at frugalware.org Tue Apr 12 13:09:16 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 13:09:16 +0200 (CEST) Subject: [Frugalware-git] boost14: pdfedit-0.4.5-2-i686 Message-ID: <20110412110916.233F81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=983c508de2743466645c67ce946b32d7030e1fca commit 983c508de2743466645c67ce946b32d7030e1fca Author: Miklos Vajna Date: Tue Apr 12 12:55:37 2011 +0200 pdfedit-0.4.5-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/xapps-extra/pdfedit/FrugalBuild b/source/xapps-extra/pdfedit/FrugalBuild index 860282c..357ab91 100644 --- a/source/xapps-extra/pdfedit/FrugalBuild +++ b/source/xapps-extra/pdfedit/FrugalBuild @@ -3,10 +3,10 @@ pkgname=pdfedit pkgver=0.4.5 -pkgrel=1 +pkgrel=2 pkgdesc="PDFedit is an editor for manipulating PDF files." -depends=('qt' 't1lib' 'libboost-mt>=1.37.0') -makedepends=('boost>=1.37.0') +depends=('qt' 't1lib' 'libboost>=1.46.1') +makedepends=('boost>=1.46.1') groups=('xapps-extra') archs=('i686' 'x86_64') _F_sourceforge_ext=".tar.bz2" From vmiklos at frugalware.org Tue Apr 12 13:30:34 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 13:30:34 +0200 (CEST) Subject: [Frugalware-git] boost14: launchy-2.5-2-i686 Message-ID: <20110412113034.985BD1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=eb5dcd1c0e661e786d35c8d3ffe40bdb9caa5c0c commit eb5dcd1c0e661e786d35c8d3ffe40bdb9caa5c0c Author: Miklos Vajna Date: Tue Apr 12 13:16:52 2011 +0200 launchy-2.5-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/xapps-extra/launchy/FrugalBuild b/source/xapps-extra/launchy/FrugalBuild index 6a3cf70..e413436 100644 --- a/source/xapps-extra/launchy/FrugalBuild +++ b/source/xapps-extra/launchy/FrugalBuild @@ -3,11 +3,11 @@ pkgname=launchy pkgver=2.5 -pkgrel=1 +pkgrel=2 pkgdesc="Launchy is a free cross-platform utility designed to help you forget about your start menu, the icons on your desktop, and even your file manager" Finclude sourceforge depends=('libqtgui' 'libqtnetwork' 'libgcc' 'libice' 'libxrender' 'libxext' 'libuuid') -makedepends=('boost') +makedepends=('boost>=1.46.1') groups=('xapps-extra') archs=('i686' 'x86_64') sha1sums=('7a6317168fe7aa219c138fbbc0f84539be9bce9e') @@ -20,4 +20,4 @@ build() Fmakeinstall INSTALL_ROOT=$Fdestdir } -# optimization OK \ No newline at end of file +# optimization OK From vmiklos at frugalware.org Tue Apr 12 13:32:46 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 13:32:46 +0200 (CEST) Subject: [Frugalware-git] boost14: vdrift-2010_06_30-2-i686 Message-ID: <20110412113246.8F1561358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=accb639955ca1f9458c8a030fdec825ef71053a5 commit accb639955ca1f9458c8a030fdec825ef71053a5 Author: Miklos Vajna Date: Tue Apr 12 13:19:10 2011 +0200 vdrift-2010_06_30-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/games-extra/vdrift/FrugalBuild b/source/games-extra/vdrift/FrugalBuild index faf56d6..59923d2 100644 --- a/source/games-extra/vdrift/FrugalBuild +++ b/source/games-extra/vdrift/FrugalBuild @@ -4,10 +4,10 @@ pkgname=vdrift pkgver=2010_06_30 _realver=${pkgver//_/-} -pkgrel=1 +pkgrel=2 pkgdesc="A free drift racing simulator with excellent physics and graphics. (FULL version)" depends=('libglu' 'glew' 'sdlimage' 'sdl_gfx' 'libvorbis' 'libstdc++' 'libxmu' 'libxi' 'libxdamage' 'libsm' 'util-linux-ng') -makedepends=('scons' 'boost' 'asio') +makedepends=('scons' 'boost>=1.46.1' 'asio') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge options=('nobuild') # Package too big ! From vmiklos at frugalware.org Tue Apr 12 15:05:18 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 15:05:18 +0200 (CEST) Subject: [Frugalware-git] boost14: gnote-0.7.3-3-i686 Message-ID: <20110412130518.CA73F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=6530f45e67af7f356b1a1f36a25772154d10d9b0 commit 6530f45e67af7f356b1a1f36a25772154d10d9b0 Author: Miklos Vajna Date: Tue Apr 12 14:51:31 2011 +0200 gnote-0.7.3-3-i686 - rebuild with boost>=1.46.1 - disable broken applet support diff --git a/source/gnome-extra/gnote/FrugalBuild b/source/gnome-extra/gnote/FrugalBuild index b4de42c..d1ceecc 100644 --- a/source/gnome-extra/gnote/FrugalBuild +++ b/source/gnome-extra/gnote/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnote pkgver=0.7.3 -pkgrel=2 +pkgrel=3 pkgdesc="Gnote is a port of Tomboy to C++" groups=('gnome-extra') -depends=('glibmm' 'gtk+2>=2.20.0-2' 'gtkmm2' 'libxml++' 'gconf>=2.28.1' 'gtkspell' 'libpanelappletmm>=2.26.0-2' 'libboost-mt' \ +depends=('glibmm' 'gtk+2>=2.20.0-2' 'gtkmm2' 'libxml++' 'gconf>=2.28.1' 'gtkspell' 'libboost>=1.46.1' \ 'dbus-glib' 'openssl>=1.0.0' 'glitz') makedepends=('boost' 'intltool' 'gnome-doc-utils') archs=('i686' 'ppc' 'x86_64') @@ -16,6 +16,12 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_devel="y" Finclude gnome gnome-scriptlet -Fconfopts="$Fconfopts --enable-dbus" +Fconfopts="$Fconfopts --enable-dbus --disable-applet" sha1sums=('86c06cc7cc90ced886ff76d468ccd2bed16cee55') +build() +{ + export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2" + Fbuild +} + From vmiklos at frugalware.org Tue Apr 12 15:14:28 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 15:14:28 +0200 (CEST) Subject: [Frugalware-git] boost14: vigra-1.7.1-2-i686 Message-ID: <20110412131428.E190C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=4980b7675a607da9cb60b7e9e0363eb7dd2c6831 commit 4980b7675a607da9cb60b7e9e0363eb7dd2c6831 Author: Miklos Vajna Date: Tue Apr 12 15:00:51 2011 +0200 vigra-1.7.1-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/lib-extra/vigra/FrugalBuild b/source/lib-extra/vigra/FrugalBuild index 49f907d..9d78725 100644 --- a/source/lib-extra/vigra/FrugalBuild +++ b/source/lib-extra/vigra/FrugalBuild @@ -3,11 +3,11 @@ pkgname=vigra pkgver=1.7.1 -pkgrel=1 +pkgrel=2 pkgdesc="The VIGRA Computer Vision Library" url="http://hci.iwr.uni-heidelberg.de/vigra/" Finclude cmake -depends=('libjpeg' 'libpng' 'libtiff' 'libboost-mt') +depends=('libjpeg' 'libpng' 'libtiff' 'libboost>=1.46.1') makedepends=(${makedepends} 'doxygen' 'fftw' 'boost') groups=('lib-extra') archs=('i686' 'x86_64') From elentir at frugalware.org Tue Apr 12 17:00:01 2011 From: elentir at frugalware.org (Elentir) Date: Tue, 12 Apr 2011 17:00:01 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: openbox-minimal-3.4.11.2-1-x86_64 Message-ID: <20110412150001.265A71358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=febfd5b5b9fcd9feb28673b28c9847ac802ee0be commit febfd5b5b9fcd9feb28673b28c9847ac802ee0be Author: Elentir Date: Tue Apr 12 16:59:28 2011 +0200 openbox-minimal-3.4.11.2-1-x86_64 * version bump diff --git a/source/x11-extra/openbox-minimal/FrugalBuild b/source/x11-extra/openbox-minimal/FrugalBuild index 1179e87..ab690b6 100644 --- a/source/x11-extra/openbox-minimal/FrugalBuild +++ b/source/x11-extra/openbox-minimal/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Elentir pkgname=openbox-minimal -pkgver=3.4.11 -pkgrel=3 +pkgver=3.4.11.2 +pkgrel=1 pkgdesc="Openbox for Fwife Install CD" url="http://openbox.org/" depends=('fontconfig' 'libxml2>=2.7.8' 'glib2' 'pango-minimal' 'libsm' 'libxrandr') @@ -15,7 +15,7 @@ options=("nodocs") up2date="Flasttar http://openbox.org/wiki/Openbox:Download" _F_cd_path="$_F_archive_name-$pkgver" source=($url/dist/openbox/openbox-$pkgver.tar.gz) -sha1sums=('fb9fc8e0fa0dbc0e1fba9f5763a14e96746a09c8') +sha1sums=('e9eb2d91b3aea54158d0ce38694896e5669a7610') Fconfopts="$Fconfopts --program-suffix='-fwife' --libdir=/usr/lib/openbox-fwife" export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" From bouleetbil at frogdev.info Tue Apr 12 17:08:00 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 12 Apr 2011 17:08:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: compiz *compiz-core replace it Message-ID: <20110412150800.C7DF11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5fb855bf025a20f22e2862e96c8cbdcb31eb702a commit 5fb855bf025a20f22e2862e96c8cbdcb31eb702a Author: bouleetbil Date: Tue Apr 12 17:05:47 2011 +0200 compiz *compiz-core replace it diff --git a/source/x11-extra/compiz/FrugalBuild b/source/x11-extra/compiz/FrugalBuild deleted file mode 100644 index b7a1325..0000000 --- a/source/x11-extra/compiz/FrugalBuild +++ /dev/null @@ -1,100 +0,0 @@ -# Compiling Time: 0.42 SBU -# Maintainer: Priyank Gosalia - -pkgname=compiz -Finclude compiz -pkgrel=2 -depends=('libgl>=7.4.2-5' 'libglx>=1.6.1-7' 'libpng>=1.4.1' 'libxcomposite>=0.4.0-2' 'libxfixes>=4.0.3-4' 'libxdamage>=1.1.1-3' \ - 'libxrandr>=1.3.0' 'libxinerama>=1.0.3' 'libice>=1.0.5-2' 'libsm>=1.1.0' 'startup-notification>=0.9-3' \ - 'libxrender>=0.9.4-3' 'libxslt' 'dbus' 'mesa>=7.4.2-5') -makedepends=('intltool' 'perl-xml-parser' 'fixesproto' 'damageproto' 'gnome-control-center>=2.30.0' 'gconf>=2.28.1' 'metacity>=2.30.0') -replaces=('beryl' 'beryl-manager' 'beryl-settings' 'beryl-settings-bindings' 'beryl-settings-simple') -groups=('x11-extra') -archs=('i686' 'x86_64') -up2date=$pkgver -sha1sums=('8d5998cb18418283cbd367f126a65dde4062ad00') -_F_gnome_schemas=('/etc/gconf/schemas/compiz-place.schemas' \ - '/etc/gconf/schemas/compiz-move.schemas' \ - '/etc/gconf/schemas/compiz-minimize.schemas' \ - '/etc/gconf/schemas/compiz-kconfig.schemas' \ - '/etc/gconf/schemas/compiz-inotify.schemas' \ - '/etc/gconf/schemas/compiz-ini.schemas' \ - '/etc/gconf/schemas/compiz-glib.schemas' \ - '/etc/gconf/schemas/compiz-gconf.schemas' \ - '/etc/gconf/schemas/compiz-fs.schemas' \ - '/etc/gconf/schemas/compiz-fade.schemas' \ - '/etc/gconf/schemas/compiz-decoration.schemas' \ - '/etc/gconf/schemas/compiz-dbus.schemas' \ - '/etc/gconf/schemas/compiz-cube.schemas' \ - '/etc/gconf/schemas/compiz-core.schemas' \ - '/etc/gconf/schemas/compiz-clone.schemas' \ - '/etc/gconf/schemas/compiz-blur.schemas' \ - '/etc/gconf/schemas/compiz-annotate.schemas' - '/etc/gconf/schemas/compiz-obs.schemas' \ - '/etc/gconf/schemas/compiz-png.schemas' \ - '/etc/gconf/schemas/compiz-regex.schemas' \ - '/etc/gconf/schemas/compiz-resize.schemas' \ - '/etc/gconf/schemas/compiz-rotate.schemas' \ - '/etc/gconf/schemas/compiz-scale.schemas' \ - '/etc/gconf/schemas/compiz-screenshot.schemas' \ - '/etc/gconf/schemas/compiz-svg.schemas' \ - '/etc/gconf/schemas/compiz-switcher.schemas' \ - '/etc/gconf/schemas/compiz-video.schemas' \ - '/etc/gconf/schemas/compiz-water.schemas' \ - '/etc/gconf/schemas/compiz-wobbly.schemas' \ - '/etc/gconf/schemas/compiz-zoom.schemas' \ - '/etc/gconf/schemas/gwd.schemas') -Finclude gnome-scriptlet -unset install - -subpkgs=("$pkgname-gnome") -subdescs=('Compiz for GNOME') -subrodepends=("$pkgname=$pkgver") -subdepends=("librsvg>=2.26.0-2 metacity>=2.30.0 gnome-control-center>=2.30.0 gconf>=2.28.1") -subinstall=("$_F_gnome_scriptlet") -subgroups=('gnome-extra') -subarchs=('i686 x86_64') - -build() { - Fbuild --enable-gconf --enable-librsvg --enable-metacity --enable-gnome \ - --enable-gtk --with-scale-corner=no - - Fsplit compiz-gnome usr/share/gnome/ - Fsplit compiz-gnome usr/share/gnome-control-center/ - Fsplit compiz-gnome usr/bin/gtk-window-decorator - Fsplit compiz-gnome etc/gconf/schemas/compiz-place.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-move.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-minimize.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-kconfig.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-inotify.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-ini.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-glib.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-gconf.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-fs.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-fade.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-decoration.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-dbus.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-cube.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-core.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-clone.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-blur.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-annotate.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-obs.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-png.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-regex.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-resize.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-rotate.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-scale.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-screenshot.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-svg.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-switcher.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-video.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-wobbly.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-water.schemas - Fsplit compiz-gnome etc/gconf/schemas/compiz-zoom.schemas - Fsplit compiz-gnome etc/gconf/schemas/gwd.schemas - - Fbuild_gnome_scriptlet -} - -# optimization OK diff --git a/source/x11-extra/compiz/gtk-deprecated.diff b/source/x11-extra/compiz/gtk-deprecated.diff deleted file mode 100644 index b990954..0000000 --- a/source/x11-extra/compiz/gtk-deprecated.diff +++ /dev/null @@ -1,21 +0,0 @@ -From 934337177a21ec743ba816db2ca6172929aeeac4 Mon Sep 17 00:00:00 2001 -From: Sam Spilsbury -Date: Wed, 24 Mar 2010 13:13:33 +0000 -Subject: Fixed deprecated symbol in gtk-window-decorator - ---- -diff --git a/gtk/window-decorator/gtk-window-decorator.c b/gtk/window-decorator/gtk-window-decorator.c -index f80850f..1f14058 100644 ---- a/gtk/window-decorator/gtk-window-decorator.c -+++ b/gtk/window-decorator/gtk-window-decorator.c -@@ -3951,7 +3951,7 @@ show_tooltip (const char *text) - static void - hide_tooltip (void) - { -- if (GTK_WIDGET_VISIBLE (tip_window)) -+ if (gtk_widget_get_visible (tip_window)) - g_get_current_time (&tooltip_last_popdown); - - gtk_widget_hide (tip_window); --- -cgit v0.8.3.1-30-gff3a From devil505linux at gmail.com Tue Apr 12 17:20:11 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 12 Apr 2011 17:20:11 +0200 (CEST) Subject: [Frugalware-git] homepage-ng: * Spanish translation of news #203 Message-ID: <20110412152011.B325E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=0e0458e65666e2cf3bb9ced00d930dccedb4ef18 commit 0e0458e65666e2cf3bb9ced00d930dccedb4ef18 Author: Nekrodes Date: Tue Apr 12 15:34:52 2011 +0200 * Spanish translation of news #203 diff --git a/frugalware/xml/news_es.xml b/frugalware/xml/news_es.xml index f9145cf..7c5c757 100644 --- a/frugalware/xml/news_es.xml +++ b/frugalware/xml/news_es.xml @@ -21,6 +21,23 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + + 203 + ??GNOME 3 disponible! + S??b, 9 Abr 2011 11:54:15 +0100 + Devil505 + 0 + ??GNOME 3 disponible! + El Equipo de Desarrolladores de Frugalware se complace en anunciarles la disponibilidad de la nueva + versi??n del Escitorio GNOME (3.0) en el repositorio current de frugalware.
+
+
+ Traducido por Nekrodes. + ]]> +
+ /images/icons/info.png +
202 Frugalware Newsletter N??mero 77 From vmiklos at frugalware.org Tue Apr 12 17:28:54 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 12 Apr 2011 17:28:54 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: docs/upgrade: unhide gst section Message-ID: <20110412152854.6D9CA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0f9b99bebfbea0af3b65755d34206416fce7b6b8 commit 0f9b99bebfbea0af3b65755d34206416fce7b6b8 Author: Miklos Vajna Date: Tue Apr 12 17:15:17 2011 +0200 docs/upgrade: unhide gst section diff --git a/docs/upgrade.txt b/docs/upgrade.txt index aadf8b1..93ec8cb 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -29,14 +29,14 @@ The new release comes with a new version of samba. From this version the package does NOT contain mount.smb, smbmnt and smbmount binaries, so in the file /etc/fstab the `smb` filesystem type has to be changed to `cifs`. -//== Removing obsolete packages +== Removing obsolete packages -//Some software has been marked as obsolete in the new release. To remove -//them: +Some software has been marked as obsolete in the new release. To remove +them: -//---- -//# pacman-g2 -Rd gvfs-gconf gst-plugins-bad-alsa gst-plugins-bad-jack gst-plugins-bad-metadata -//---- +---- +# pacman-g2 -Rd gst-plugins-bad-alsa gst-plugins-bad-jack gst-plugins-bad-metadata +---- == Upgrading the system From devil505linux at gmail.com Tue Apr 12 19:04:18 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 12 Apr 2011 19:04:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: alarm-clock-1.4.3-2-i686 * rebuilt with libnotify 0.7 Message-ID: <20110412170418.490391358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f0459e5f3c4d92705ba332f5c10f70e4a4322ec commit 2f0459e5f3c4d92705ba332f5c10f70e4a4322ec Author: Devil505 Date: Tue Apr 12 19:03:53 2011 +0200 alarm-clock-1.4.3-2-i686 * rebuilt with libnotify 0.7 diff --git a/source/xapps-extra/alarm-clock/FrugalBuild b/source/xapps-extra/alarm-clock/FrugalBuild index ac35f3d..0fe982c 100644 --- a/source/xapps-extra/alarm-clock/FrugalBuild +++ b/source/xapps-extra/alarm-clock/FrugalBuild @@ -3,11 +3,11 @@ pkgname=alarm-clock pkgver=1.4.3 -pkgrel=1 +pkgrel=2 pkgdesc="Alarm-clock is a light alarm program for GTK." url="http://www.alarm-clock.pl/" makedepends=('intltool>=0.35.0') -depends=('gstreamer' 'libnotify>=0.4.5-3' 'unique') +depends=('gstreamer' 'libnotify>=0.7' 'unique') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="Flasttar '$url/index.php?option=com_content&view=article&id=1&Itemid=2'" From devil505linux at gmail.com Tue Apr 12 19:43:21 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 12 Apr 2011 19:43:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: json-glib-0.12.4-1-i686 * version bump Message-ID: <20110412174321.EF1191358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7b8e012a29a395caaaf70d4e13c42fe3f0e0da3e commit 7b8e012a29a395caaaf70d4e13c42fe3f0e0da3e Author: Devil505 Date: Tue Apr 12 19:43:00 2011 +0200 json-glib-0.12.4-1-i686 * version bump diff --git a/source/devel/json-glib/FrugalBuild b/source/devel/json-glib/FrugalBuild index 230c7b5..0c42252 100644 --- a/source/devel/json-glib/FrugalBuild +++ b/source/devel/json-glib/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=json-glib -pkgver=0.12.2 -pkgrel=2 +pkgver=0.12.4 +pkgrel=1 pkgdesc="JSON library built on GLib" url="http://live.gnome.org/JsonGlib" Finclude gnome @@ -11,6 +11,6 @@ depends=('glib2') makedepends=('gobject-introspection') groups=('devel') archs=('i686' 'x86_64' 'ppc') -sha1sums=('7689c9ec00940b3271cddb60d48fdd426b78785f') +sha1sums=('41524f520840a148b865ff6b47a73003f00bdc82') # optimization OK From devil505linux at gmail.com Tue Apr 12 20:02:26 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 12 Apr 2011 20:02:26 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: Revert "alarm-clock-1.4.3-2-i686" Message-ID: <20110412180226.407401358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=462b8e1990cfbe4ae42c755e7c5bf8b9b6ada666 commit 462b8e1990cfbe4ae42c755e7c5bf8b9b6ada666 Author: Devil505 Date: Tue Apr 12 20:02:03 2011 +0200 Revert "alarm-clock-1.4.3-2-i686" This reverts commit 2f0459e5f3c4d92705ba332f5c10f70e4a4322ec. diff --git a/source/xapps-extra/alarm-clock/FrugalBuild b/source/xapps-extra/alarm-clock/FrugalBuild index 0fe982c..ac35f3d 100644 --- a/source/xapps-extra/alarm-clock/FrugalBuild +++ b/source/xapps-extra/alarm-clock/FrugalBuild @@ -3,11 +3,11 @@ pkgname=alarm-clock pkgver=1.4.3 -pkgrel=2 +pkgrel=1 pkgdesc="Alarm-clock is a light alarm program for GTK." url="http://www.alarm-clock.pl/" makedepends=('intltool>=0.35.0') -depends=('gstreamer' 'libnotify>=0.7' 'unique') +depends=('gstreamer' 'libnotify>=0.4.5-3' 'unique') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="Flasttar '$url/index.php?option=com_content&view=article&id=1&Itemid=2'" From devil505linux at gmail.com Tue Apr 12 20:22:16 2011 From: devil505linux at gmail.com (Devil505) Date: Tue, 12 Apr 2011 20:22:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gbrainy-1.65-1-i686 * version bump Message-ID: <20110412182216.7172F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c7136df3c11533b8991d2cfcdf5d1e2255e8316f commit c7136df3c11533b8991d2cfcdf5d1e2255e8316f Author: Devil505 Date: Tue Apr 12 20:22:00 2011 +0200 gbrainy-1.65-1-i686 * version bump diff --git a/source/gnome-extra/gbrainy/FrugalBuild b/source/gnome-extra/gbrainy/FrugalBuild index 2b90e38..cedfa30 100644 --- a/source/gnome-extra/gbrainy/FrugalBuild +++ b/source/gnome-extra/gbrainy/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gbrainy -pkgver=1.64 +pkgver=1.65 pkgrel=1 pkgdesc="brain teaser game and trainer" url="http://live.gnome.org/$pkgname" @@ -17,7 +17,7 @@ Finclude gnome-scriptlet groups=('gnome-extra') up2date="lynx -dump $url | Flasttar" source=(http://gent.softcatala.org/jmas/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('6dc4bb93989c2abcdd6d71ce85dbe4a604f71b97') +sha1sums=('9fa8ef24fd5bd336a2864f97510b14323abaa1e1') build() { From achevaux at gmail.com Tue Apr 12 21:31:32 2011 From: achevaux at gmail.com (centuri0) Date: Tue, 12 Apr 2011 21:31:32 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: kalgebra-20060501-1-i686 Message-ID: <20110412193132.915331358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=52e4198990dbb5d89fc380d54960b48e53af5764 commit 52e4198990dbb5d89fc380d54960b48e53af5764 Author: centuri0 Date: Tue Apr 12 21:30:43 2011 +0200 kalgebra-20060501-1-i686 * remove package kalgebra * provided by kde-extra/kdeedu diff --git a/source/kde-extra/kalgebra/FrugalBuild b/source/kde-extra/kalgebra/FrugalBuild deleted file mode 100644 index ee0f9ad..0000000 --- a/source/kde-extra/kalgebra/FrugalBuild +++ /dev/null @@ -1,25 +0,0 @@ -# Compiling Time: 0.33 SBU -# Maintainer: Priyank Gosalia -# Contributor: Edo Hikmahtiar - -pkgname=kalgebra -pkgver=20060501 -pkgrel=1 -pkgdesc="KAlgebra is a mathematical calculator based content markup MathML language." -license="GPL" -depends=('kdelibs' 'libpng' 'libjpeg' 'qt') -groups=('kde-extra') -archs=('i686' 'x86_64') -_F_berlios_ext=".tar.bz2" -_F_kde_defaults=0 -Finclude berlios kde -sha1sums=('fb2669bc18a88cd8abd982519c5cf4c6afb26907') - -build() -{ - Fcd $pkgname - make -f Makefile.cvs || Fdie - Fbuild -} - -# optimization OK From achevaux at gmail.com Tue Apr 12 22:17:37 2011 From: achevaux at gmail.com (centuri0) Date: Tue, 12 Apr 2011 22:17:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: rekonq-0.7.0-1-i686 Message-ID: <20110412201737.D000B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=65c720c21999a23f2a0bca7fce1db39d3fb6e2e6 commit 65c720c21999a23f2a0bca7fce1db39d3fb6e2e6 Author: centuri0 Date: Tue Apr 12 21:53:33 2011 +0200 rekonq-0.7.0-1-i686 * version bump diff --git a/source/kde-extra/rekonq/FrugalBuild b/source/kde-extra/rekonq/FrugalBuild index 5f09108..96a8598 100644 --- a/source/kde-extra/rekonq/FrugalBuild +++ b/source/kde-extra/rekonq/FrugalBuild @@ -1,9 +1,9 @@ -# Compiling Time: 0.57 SBU +# Compiling Time: 0.42 SBU # Maintainer: exceed # Contributor: Devil505 pkgname=rekonq -pkgver=0.6.95 +pkgver=0.7.0 pkgrel=1 pkgdesc='A WebKit based web browser for KDE' groups=('kde-extra') @@ -13,7 +13,7 @@ Finclude sourceforge kde depends=("${depends[@]}" "kdelibs>=$_F_kde_ver" "kdelibs-compiletime>=$_F_kde_ver" \ "libqtcore" "libqtgui" "libqtnetwork" "libqtwebkit" "gtk+2") makedepends=("${makedepends[@]}" 'docbook-xsl') -sha1sums=('f11a8dc5a48b85d5adeadb91bf4fb68127d74cb8') +sha1sums=('960cd9a3bfe5f87e577cc9324bbf1915c0f89dcc') # optimization OK From achevaux at gmail.com Tue Apr 12 22:17:37 2011 From: achevaux at gmail.com (centuri0) Date: Tue, 12 Apr 2011 22:17:37 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: tellico-2.3.3-1-i686 Message-ID: <20110412201737.E68C9BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7388e9a7c5e1f735edc4aa5dffbf705f1e9fcaef commit 7388e9a7c5e1f735edc4aa5dffbf705f1e9fcaef Author: centuri0 Date: Tue Apr 12 22:17:13 2011 +0200 tellico-2.3.3-1-i686 * version bump diff --git a/source/kde-extra/tellico/FrugalBuild b/source/kde-extra/tellico/FrugalBuild index 1eea53a..75eef06 100644 --- a/source/kde-extra/tellico/FrugalBuild +++ b/source/kde-extra/tellico/FrugalBuild @@ -1,19 +1,19 @@ -# Compiling Time: 2.05 SBU +# Compiling Time: 1.44 SBU # Maintainer: CS?CSY L?szl? pkgname=tellico -pkgver=2.3.2 +pkgver=2.3.3 pkgrel=1 pkgdesc="A collection manager for the KDE environment." groups=('kde-extra') archs=('i686' 'x86_64') Finclude kde -depends=("${depends[@]}" "kdelibs>=$_F_kde_ver" "libxslt" "kdemultimedia" "kdepim>=$_F_kde_ver" "taglib" "poppler-qt4>=0.8.0" "qimageblitz" 'openssl>=1.0.0') -makedepends=(${makedepends[@]} "kdelibs-compiletime>=$_F_kde_ver") +depends=("${depends[@]}" "kdelibs>=$_F_kde_ver" "libxslt" "kdemultimedia" "kdepim" "taglib" "poppler-qt4>=0.8.0" "qimageblitz" "openssl>=1.0.0" 'libcddb') +makedepends=(${makedepends[@]} "kdelibs-compiletime>=$_F_kde_ver" "docbook-xsl") url="http://tellico-project.org" up2date="Flastarchive $url/download .tar.bz2" source=($url/files/$pkgname-$pkgver.tar.bz2) -sha1sums=('ff07a5ee1be84a863ea7b971058d64d90bb3bdb9') +sha1sums=('f738f93eafa6291b0a88d55ace62051a69f0c9a0') # optimization OK From jercel16 at gmail.com Tue Apr 12 22:25:24 2011 From: jercel16 at gmail.com (jercel) Date: Tue, 12 Apr 2011 22:25:24 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: nvidia-emul-260.19.36_5-1-x86_64 Message-ID: <20110412202524.1AF901358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=80954c0ea84b6c27eaf488d9568633764a76ed5d commit 80954c0ea84b6c27eaf488d9568633764a76ed5d Author: jercel Date: Tue Apr 12 22:20:20 2011 +0200 nvidia-emul-260.19.36_5-1-x86_64 version bump diff --git a/source/emul-extra/nvidia-emul/FrugalBuild b/source/emul-extra/nvidia-emul/FrugalBuild index 5dff1ed..44fe938 100644 --- a/source/emul-extra/nvidia-emul/FrugalBuild +++ b/source/emul-extra/nvidia-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=nvidia-emul -pkgver=260.19.36_3 +pkgver=260.19.36_5 pkgrel=1 pkgdesc="3d accelerated display driver for Nvidia cards (32bit emul)" url="http://www.nvidia.com" @@ -12,4 +12,4 @@ provides=('libgl-emul' 'libglx-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('3e235c19711d50c2f7d968dbc0a0f2888954585c') +sha1sums=('6d512cdd18b9a81773652a5693180b2f7771b201') From jercel16 at gmail.com Tue Apr 12 22:31:59 2011 From: jercel16 at gmail.com (jercel) Date: Tue, 12 Apr 2011 22:31:59 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnome-icon-theme-emul-3.0.0_2-1-x86_64 Message-ID: <20110412203159.B0A7D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3a474b6da67c4d8a391492a67df07bf266ac73f8 commit 3a474b6da67c4d8a391492a67df07bf266ac73f8 Author: jercel Date: Tue Apr 12 22:27:53 2011 +0200 gnome-icon-theme-emul-3.0.0_2-1-x86_64 version bump diff --git a/source/emul-extra/gnome-icon-theme-emul/FrugalBuild b/source/emul-extra/gnome-icon-theme-emul/FrugalBuild index 26753b0..c59a2eb 100644 --- a/source/emul-extra/gnome-icon-theme-emul/FrugalBuild +++ b/source/emul-extra/gnome-icon-theme-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-icon-theme-emul -pkgver=2.30.3_2 +pkgver=3.0.0_2 pkgrel=1 pkgdesc="Default icon theme for GNOME (32bit emul)" url="http://www.gnome.org/" @@ -10,4 +10,4 @@ depends=('hicolor-icon-theme-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('d03c41d4c2460a4f2f0fa4fcb8a93e080eb14c3c') +sha1sums=('8446c997e77aef688733726017d1789261e22c3e') From vmiklos at frugalware.org Wed Apr 13 10:47:14 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 10:47:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: less-443-1-i686 Message-ID: <20110413084714.1B7A41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=63d48f0e5d1e0ca7cf9bdab3202abc5d06d70061 commit 63d48f0e5d1e0ca7cf9bdab3202abc5d06d70061 Author: Miklos Vajna Date: Wed Apr 13 00:02:22 2011 +0200 less-443-1-i686 - version bump diff --git a/source/base/less/FrugalBuild b/source/base/less/FrugalBuild index 74b5bb2..284b74d 100644 --- a/source/base/less/FrugalBuild +++ b/source/base/less/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=less -pkgver=441 +pkgver=443 pkgrel=1 pkgdesc="A paginator similar to more" url="http://www.greenwoodsoftware.com/less" @@ -11,16 +11,14 @@ groups=('base') archs=('i686' 'x86_64' 'ppc' 'arm') up2date="lynx -dump http://www.greenwoodsoftware.com/less/download.html |grep -m 1 .tar.gz | Flasttar" source=($url/$pkgname-$pkgver.tar.gz lesspipe.sh less.sh) -sha1sums=('241136cc2c7f75c58ad9d1b73f783d5a6aa10d8c' \ +sha1sums=('72cf3d3c77990e04ad04ea63b377b893c8a7a2cd' \ '3e7e305a7eec7d3a52fd994f93c6065a71319086' \ '167bfbea39f7d22e153b7ab22606d87cfb60f518') build() { Fbuild - Fmkdir /bin - Fmv /usr/bin/less /bin/ - Fexe lesspipe.sh /bin + Fexe /usr/bin/lesspipe.sh Fexe /etc/profile.d/less.sh } From vmiklos at frugalware.org Wed Apr 13 10:52:37 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 10:52:37 +0200 (CEST) Subject: [Frugalware-git] boost14: yoshimi-0.060.10-1-i686 Message-ID: <20110413085237.1E8241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=9278c8b23e81716f1ab6f2de63cddc736b2dd959 commit 9278c8b23e81716f1ab6f2de63cddc736b2dd959 Author: Miklos Vajna Date: Wed Apr 13 10:38:48 2011 +0200 yoshimi-0.060.10-1-i686 - rebuild with boost>=1.46.1 diff --git a/source/xmultimedia-extra/yoshimi/FrugalBuild b/source/xmultimedia-extra/yoshimi/FrugalBuild index a049f4b..6ae67b6 100644 --- a/source/xmultimedia-extra/yoshimi/FrugalBuild +++ b/source/xmultimedia-extra/yoshimi/FrugalBuild @@ -2,16 +2,17 @@ # Maintainer: exceed pkgname=yoshimi -pkgver=0.060.1 +pkgver=0.060.10 pkgrel=1 pkgdesc="Software synthesizer based on ZynAddSubFX with very good Jack and Alsa midi/audio functionality" -depends=('fftw>=3.2.2-1' 'mxml>=2.6-1' 'fltk' 'zlib' 'jack>=0.118.0' 'fontconfig' 'libsndfile' 'boost>=1.39.0') +depends=('fftw>=3.2.2-1' 'mxml>=2.6-1' 'fltk' 'zlib' 'jack>=0.118.0' 'fontconfig' 'libsndfile' 'libboost>=1.46.1') +makedepends=('boost') groups=('xmultimedia-extra') archs=('i686' 'x86_64') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge cmake _F_cd_path="$pkgname-$pkgver/src" -sha1sums=('be70ae72b173f7afc95dce79a75174363586ca18') +sha1sums=('deca9408b3a63a22da0e91703baae06bd8115363') build() { From vmiklos at frugalware.org Wed Apr 13 10:58:04 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 10:58:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: d4x-2.5.7.1-7-i686 Message-ID: <20110413085804.422601358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c2db8debe5f65ce322efa31fd93e2bb86200588a commit c2db8debe5f65ce322efa31fd93e2bb86200588a Author: Miklos Vajna Date: Wed Apr 13 10:43:58 2011 +0200 d4x-2.5.7.1-7-i686 - bin, replaced by gwget diff --git a/source/xapps-extra/d4x/FrugalBuild b/source/xapps-extra/d4x/FrugalBuild deleted file mode 100644 index b4f0dcb..0000000 --- a/source/xapps-extra/d4x/FrugalBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Compiling Time: 0.31 SBU -# Maintainer: crazy -# Contributor: IroNiQ - -pkgname=d4x -pkgver=2.5.7.1 -pkgrel=7 -pkgdesc="Download manager for Linux" -url="http://www.krasu.ru/soft/chuchelo/" -depends=('gtk+2>=2.20.0-2' 'atk' 'openssl>=1.0.0' 'libstdc++' 'freetype2' 'pango' 'cairo') -makedepends=('boost>=1.34.1') -groups=('xapps-extra') -options=('scriptlet') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.krasu.ru/soft/chuchelo/|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" -source=(http://www.mirrorservice.org/sites/ftp.freebsd.org/pub/FreeBSD/distfiles/$pkgname-$pkgver.tar.bz2 \ - gtk2-compile.patch index-const.patch) -sha1sums=('10955550112bdf22ff91c6c9395afd1a5f15bff2' \ - '5020e0ea3027c4eae877c702b52f360047dbd8f8' \ - '11e53a65a2c3187db80a28e25b2ecb8845f2fac4') - -build () -{ - Fcd - Fpatchall - autoconf || Fdie - Fmkdir usr/bin - Fmake - Fmakeinstall - Fln /usr/man/man1/nt.1.gz /usr/man/man1/d4x.1.gz - Fmkdir /usr/share/{applications,pixmaps} - Ffilerel share/nt.desktop /usr/share/applications/nt.desktop - Ffilerel share/nt.png /usr/share/pixmaps/nt.png - echo "Categories=Qt;Gtk;Application;Network;" >> $Fdestdir/usr/share/applications/nt.desktop -} - - -# optimization OK diff --git a/source/xapps-extra/d4x/gtk2-compile.patch b/source/xapps-extra/d4x/gtk2-compile.patch deleted file mode 100644 index 8f15a9a..0000000 --- a/source/xapps-extra/d4x/gtk2-compile.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Naur d4x-2.5.7.1/configure.ac d4x-2.5.7.1-gtk/configure.ac ---- d4x-2.5.7.1/configure.ac 2005-11-05 00:35:38.000000000 +0100 -+++ d4x-2.5.7.1-gtk/configure.ac 2007-12-08 21:31:53.000000000 +0100 -@@ -298,7 +298,6 @@ - - # Other needed defines - AC_DEFINE(_REENTRANT, , [Enable reenrant code of glibc]) --AC_DEFINE(GTK_DISABLE_DEPRECATED, , [Enable warnings about deprecated functions usage]) - AC_DEFINE(_FILE_OFFSET_BITS, 64, [To support files over 2GB]) - - # Prepare all requiered flags -diff -Naur d4x-2.5.7.1/main/face/list.cc d4x-2.5.7.1-gtk/main/face/list.cc ---- d4x-2.5.7.1/main/face/list.cc 2006-03-20 01:29:41.000000000 +0100 -+++ d4x-2.5.7.1-gtk/main/face/list.cc 2007-12-08 21:31:04.000000000 +0100 -@@ -8,7 +8,6 @@ - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - */ --#define GTK_DISABLE_DEPRECATED - - #include - #include diff --git a/source/xapps-extra/d4x/index-const.patch b/source/xapps-extra/d4x/index-const.patch deleted file mode 100644 index 2c96404..0000000 --- a/source/xapps-extra/d4x/index-const.patch +++ /dev/null @@ -1,100 +0,0 @@ -diff --git a/main/face/edit.cc b/main/face/edit.cc -index b1cbd97..376d8fb 100644 ---- a/main/face/edit.cc -+++ b/main/face/edit.cc -@@ -1450,7 +1450,7 @@ static void proxy_toggle_socks(GtkWidget *parent,tProxyWidget *where) { - - static void _proxy_port_changed_(GtkEntry *entry,GtkEntry *entryh){ - const char *tmp=gtk_entry_get_text(entryh); -- char *tmp1=index(tmp,':'); -+ char *tmp1=(char*)index(tmp,':'); - if (tmp1){ - *tmp1=0; - char *ns=sum_strings(tmp,":",gtk_entry_get_text(entry),NULL); -diff --git a/main/ftp.cc b/main/ftp.cc -index 0a12bf2..72b0a23 100644 ---- a/main/ftp.cc -+++ b/main/ftp.cc -@@ -261,7 +261,7 @@ int tFtpClient::connect() { - }; - - static void d4x_ftp_parse_pasv(const char *str,int args[]){ -- char *a=index(str,'('); -+ char *a=(char*)index(str,'('); - if (a==NULL) return; - a+=1; - int i=0; -diff --git a/main/html.cc b/main/html.cc -index 8b096c3..526c68d 100644 ---- a/main/html.cc -+++ b/main/html.cc -@@ -700,7 +700,7 @@ void tHtmlParser::look_for_meta_content(tHtmlTagField *where, - - void tHtmlParser::set_content_type(const char *ct){ - //Example: text/html; charset=koi8-r -- char *a=index(ct,'='); -+ char *a=(char*)index(ct,'='); - if (a) codepage=a+1; - }; - -diff --git a/main/locstr.cc b/main/locstr.cc -index 0760851..6753ca3 100644 ---- a/main/locstr.cc -+++ b/main/locstr.cc -@@ -281,7 +281,7 @@ char *index_mult(char *str,const char *what){ - DBC_RETVAL_IF_FAIL(str!=NULL,NULL); - DBC_RETVAL_IF_FAIL(what!=NULL,NULL); - while (*str){ -- char *a=index(what,*str); -+ char *a=(char*)index(what,*str); - if (a) return(str); - str++; - }; -@@ -472,7 +472,7 @@ std::string unhexed_string(const std::string &str){ - char *escape_char(const char *where,char what,char bywhat){ - DBC_RETVAL_IF_FAIL(where!=NULL,NULL); - int num=0; -- char *tmp=index(where,what); -+ char *tmp=(char*)index(where,what); - while(tmp){ - num+=1; - tmp=index(tmp+1,what); -@@ -481,7 +481,7 @@ char *escape_char(const char *where,char what,char bywhat){ - char *rvalue=new char[strlen(where)+num*2+1]; - *rvalue=0; - char *r=rvalue; -- tmp=index(where,what); -+ tmp=(char*)index(where,what); - while(tmp){ - if (tmp-where) - memcpy(r,where,tmp-where); -@@ -490,7 +490,7 @@ char *escape_char(const char *where,char what,char bywhat){ - r[1]=what; - r+=2; - where=tmp+1; -- tmp=index(where,what); -+ tmp=(char*)index(where,what); - }; - *r=0; - if (*where) -@@ -962,17 +962,17 @@ char *subtract_path(const char *a,const char *b){ - DBC_RETVAL_IF_FAIL(a!=NULL,NULL); - DBC_RETVAL_IF_FAIL(b!=NULL,NULL); - int i=0; -- char *temp=index(b,'/'); -+ char *temp=(char*)index(b,'/'); - while (temp){ - while (*temp=='/') temp+=1; - temp=index(temp,'/'); - i+=1; - }; - i-=1; -- temp=rindex(a,'/'); -+ temp=(char*)rindex(a,'/'); - while (temp && i>0){ - *temp=0; -- char *tmp=rindex(a,'/'); -+ char *tmp=(char*)rindex(a,'/'); - *temp='/'; - temp=tmp; - i-=1; From vmiklos at frugalware.org Wed Apr 13 11:07:01 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 11:07:01 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gwget-1.0.4-5-i686 Message-ID: <20110413090701.27F441358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5679456334c34b09747a8fc648b83c02248734d3 commit 5679456334c34b09747a8fc648b83c02248734d3 Author: Miklos Vajna Date: Wed Apr 13 10:53:12 2011 +0200 gwget-1.0.4-5-i686 - replace d4x diff --git a/source/gnome-extra/gwget/FrugalBuild b/source/gnome-extra/gwget/FrugalBuild index c3809a7..2bf7569 100644 --- a/source/gnome-extra/gwget/FrugalBuild +++ b/source/gnome-extra/gwget/FrugalBuild @@ -4,13 +4,14 @@ pkgname=gwget pkgver=1.0.4 -pkgrel=4 +pkgrel=5 pkgdesc="Gwget is a download manager for the GNOME desktop." url="http://gnome.org/projects/gwget/index.html" depends=('wget>=1.12-3' 'libgnomeui>=2.24.1-2' 'libglade>=2.6.4-2' \ 'gconf>=2.28.0' 'gtk+2>=2.20.0-2' 'dbus>=1.2.12' 'libnotify>=0.7') makedepends=('perl-xml-parser' 'intltool' 'gettext' 'pkgconfig') groups=('gnome-extra') +replaces=('d4x') archs=('i686' 'x86_64') _F_gnome_schemas=('/etc/gconf/schemas/gwget.schemas') _F_gnome_scrollkeeper="y" From vmiklos at frugalware.org Wed Apr 13 11:12:49 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 11:12:49 +0200 (CEST) Subject: [Frugalware-git] boost14: asio-1.5.0-2-i686 Message-ID: <20110413091249.5DD7B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=34d82bf81c47158b8255d95a06130ab2564c33d2 commit 34d82bf81c47158b8255d95a06130ab2564c33d2 Author: Miklos Vajna Date: Wed Apr 13 10:59:04 2011 +0200 asio-1.5.0-2-i686 - rebuild with boost>=1.46.1 diff --git a/source/lib-extra/asio/FrugalBuild b/source/lib-extra/asio/FrugalBuild index c97b3ca..5a36bb3 100644 --- a/source/lib-extra/asio/FrugalBuild +++ b/source/lib-extra/asio/FrugalBuild @@ -3,11 +3,11 @@ pkgname=asio pkgver=1.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="A a cross-platform C++ library written in C++ for consistent asynchronous I/O." Finclude sourceforge depends=() -makedepends=('boost') +makedepends=('boost>=1.46.1') groups=('lib-extra') archs=('i686' 'x86_64') sha1sums=('cf7a6060e601e86816f50483cafe268ef6dd8e6f') From vmiklos at frugalware.org Wed Apr 13 11:16:20 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 11:16:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: t/xorg: blacklist compiz Message-ID: <20110413091620.0A83F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=430138604d197892e0bb15266a85a20cf4158c75 commit 430138604d197892e0bb15266a85a20cf4158c75 Author: Miklos Vajna Date: Wed Apr 13 11:02:21 2011 +0200 t/xorg: blacklist compiz diff --git a/t/xorg b/t/xorg index 49a52b0..81b4388 100755 --- a/t/xorg +++ b/t/xorg @@ -58,7 +58,8 @@ skip=('xf86-video-impact is mips-only' 'xf86-input-summa is dead' 'xf86-input-tek4957 is dead' 'xf86-input-ur98 is dead' -'xf86-video-vga is dead') +'xf86-video-vga is dead' +'compiz is replaced by compiz-core') upstream=$(for i in app data doc driver font lib proto testdir util xserver do From vmiklos at frugalware.org Wed Apr 13 12:48:36 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 12:48:36 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qutecom-2.2_rc3-2-i686 Message-ID: <20110413104836.90C0A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a6fbba8b839e8788ac67f78ef04799ae1aa0ff36 commit a6fbba8b839e8788ac67f78ef04799ae1aa0ff36 Author: Miklos Vajna Date: Wed Apr 13 12:33:54 2011 +0200 qutecom-2.2_rc3-2-i686 - add missing v4l-utils makedep diff --git a/source/xapps-extra/qutecom/FrugalBuild b/source/xapps-extra/qutecom/FrugalBuild index 45f65b8..c8e1c58 100644 --- a/source/xapps-extra/qutecom/FrugalBuild +++ b/source/xapps-extra/qutecom/FrugalBuild @@ -3,11 +3,11 @@ pkgname=qutecom pkgver=2.2_rc3 -pkgrel=1 +pkgrel=2 pkgdesc="A free VoIP softphone, superseding WengoPhone." url="http://www.qutecom.org/" depends=('libboost-mt' 'libuuid' 'curl' 'ffmpeg' 'libqtnetwork' 'libqtwebkit' 'libqtuitools' 'libqtdbus' 'libxft' 'libxv' 'libsamplerate' 'alsa-lib' 'libtasn1' 'libgcrypt' 'libxcb' 'flac' 'speex' 'portaudio' 'openssl' 'gnutls' 'libosip2' 'libsndfile' 'e2fsprogs' 'libxml2' 'libqtscript') -makedepends=('boost' 'qt4-linguist') +makedepends=('boost' 'qt4-linguist' 'v4l-utils') options=('scriptlet') _F_gnome_iconcache="y" _F_gnome_desktop="y" @@ -21,6 +21,14 @@ sha1sums=('c41a3b90503df15b22543a55c41d6e8c5434e4cb') build() { Fcd + export CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS" + Fsed 'linux/videodev.h' 'libv4l1-videodev.h' libs/pixertool/src/v4l/v4l-pixertool.c + Fsed 'linux/videodev.h' 'libv4l1-videodev.h' libs/webcam/include/webcam/V4LWebcamDriver.h + Fsed 'const __u16 try_palettes' 'const uint16_t try_palettes' libs/webcam/src/v4l/V4LWebcamDriver.cpp + Fsed '\(#include \)' '\1\n#include \n#include \n#include ' \ + libs/webcam/src/v4l2/V4L2WebcamDriver.cpp CMake_build Fbuild_gnome_scriptlet } + +# optimization OK From vmiklos at frugalware.org Wed Apr 13 12:49:04 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 12:49:04 +0200 (CEST) Subject: [Frugalware-git] boost14: Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current Message-ID: <20110413104904.F0B8D135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=44b05e5f1c84b1e9e910dcd937e7fa59668e4775 commit 44b05e5f1c84b1e9e910dcd937e7fa59668e4775 Merge: 34d82bf a6fbba8 Author: Miklos Vajna Date: Wed Apr 13 12:35:17 2011 +0200 Merge branch 'master' of git.frugalware.org:/pub/frugalware/frugalware-current From vmiklos at frugalware.org Wed Apr 13 13:06:37 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 13:06:37 +0200 (CEST) Subject: [Frugalware-git] boost14: qutecom-2.2_rc3-3-i686 Message-ID: <20110413110637.EAEC21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boost14.git;a=commitdiff;h=edd5357210e3c271c5c28634c97d1455c4ce0c78 commit edd5357210e3c271c5c28634c97d1455c4ce0c78 Author: Miklos Vajna Date: Wed Apr 13 12:52:47 2011 +0200 qutecom-2.2_rc3-3-i686 - rebuild with boost>=1.46.1 diff --git a/source/xapps-extra/qutecom/FrugalBuild b/source/xapps-extra/qutecom/FrugalBuild index c8e1c58..d9953e9 100644 --- a/source/xapps-extra/qutecom/FrugalBuild +++ b/source/xapps-extra/qutecom/FrugalBuild @@ -3,10 +3,10 @@ pkgname=qutecom pkgver=2.2_rc3 -pkgrel=2 +pkgrel=3 pkgdesc="A free VoIP softphone, superseding WengoPhone." url="http://www.qutecom.org/" -depends=('libboost-mt' 'libuuid' 'curl' 'ffmpeg' 'libqtnetwork' 'libqtwebkit' 'libqtuitools' 'libqtdbus' 'libxft' 'libxv' 'libsamplerate' 'alsa-lib' 'libtasn1' 'libgcrypt' 'libxcb' 'flac' 'speex' 'portaudio' 'openssl' 'gnutls' 'libosip2' 'libsndfile' 'e2fsprogs' 'libxml2' 'libqtscript') +depends=('libboost>=1.46.1' 'libuuid' 'curl' 'ffmpeg' 'libqtnetwork' 'libqtwebkit' 'libqtuitools' 'libqtdbus' 'libxft' 'libxv' 'libsamplerate' 'alsa-lib' 'libtasn1' 'libgcrypt' 'libxcb' 'flac' 'speex' 'portaudio' 'openssl' 'gnutls' 'libosip2' 'libsndfile' 'e2fsprogs' 'libxml2' 'libqtscript') makedepends=('boost' 'qt4-linguist' 'v4l-utils') options=('scriptlet') _F_gnome_iconcache="y" From bouleetbil at frogdev.info Wed Apr 13 13:10:27 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 13 Apr 2011 13:10:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gedit-3.0.1-1-x86_64 Message-ID: <20110413111027.A367C1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9a30b3cb02ca688feaa8fa03d9584e9427a335d9 commit 9a30b3cb02ca688feaa8fa03d9584e9427a335d9 Author: bouleetbil Date: Wed Apr 13 13:09:57 2011 +0200 gedit-3.0.1-1-x86_64 *Version bump diff --git a/source/gnome/gedit/FrugalBuild b/source/gnome/gedit/FrugalBuild index 510f356..6fc3802 100644 --- a/source/gnome/gedit/FrugalBuild +++ b/source/gnome/gedit/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gedit -pkgver=3.0.0 +pkgver=3.0.1 pkgrel=1 pkgdesc="A text editor for GNOME" url="http://www.gnome.org/" @@ -15,7 +15,7 @@ _F_gnome_glib="y" _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -sha1sums=('df79aaafcbd28b44ef4c495282cf7d02fcac7d29') +sha1sums=('0576c379a9fef36dae572bf197e93a44b29f4a1b') replaces=("$pkgname-python") build() { From elentir at frugalware.org Wed Apr 13 14:01:56 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 14:01:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: qtiplot-0.9.8.5-1-x86_64 Message-ID: <20110413120156.194471358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=13c33ffcd87505118ed1984748c481d7ce42ecf0 commit 13c33ffcd87505118ed1984748c481d7ce42ecf0 Author: Elentir Date: Wed Apr 13 14:00:37 2011 +0200 qtiplot-0.9.8.5-1-x86_64 * version bump diff --git a/source/xapps-extra/qtiplot/FrugalBuild b/source/xapps-extra/qtiplot/FrugalBuild index c3a3161..b8cf3b5 100644 --- a/source/xapps-extra/qtiplot/FrugalBuild +++ b/source/xapps-extra/qtiplot/FrugalBuild @@ -2,10 +2,11 @@ # Maintainer: Elentir pkgname=qtiplot -pkgver=0.9.8.3 +pkgver=0.9.8.5 pkgrel=1 pkgdesc="QtiPlot is a professional scientific data analysis and visualisation solution" -depends=('libboost-mt>=1.39.0' 'pyqt4' 'muparser' 'gsl' 'libglu' 'libqtassistantclient' 'libglu' 'libqt3support' 'libqtopengl') +depends=('libboost-mt>=1.39.0' 'pyqt4' 'muparser' 'gsl' 'libglu' 'libqtassistantclient' \ + 'libglu' 'libqt3support' 'libqtopengl' 'tamu_anova') makedepends=('boost>=1.39.0') groups=('xapps-extra') archs=('i686' 'x86_64') @@ -17,16 +18,22 @@ _F_desktop_name="Qtiplot" _F_desktop_categories="Qt;Education;Science;" _F_desktop_mimetypes="application/x-qtiplot-project;application/x-qtiplot-project-compressed;application/x-qtiplot-project-backup" source=($source build.conf qtiplot.xml \ - http://download.berlios.de/qtiplot/QTeXEngine-0.2-opensource.zip) + http://download.berlios.de/qtiplot/QTeXEngine-0.2-opensource.zip \ + qtiplot-0.9.8.5-tamuanova.patch \ + qtiplot-0.9.8.5-qtassist.patch) up2date="Flasttar http://soft.proindependent.com/download.html" -sha1sums=('e5ffdd25f1f69611f3f39a0b22e8c23959ab51e1' \ - 'db5d65a0e368875b38713060295954c680aa2da4' \ +sha1sums=('0305097eb096adf332d319b0619c14fc42f01cf4' \ + '04a1e263c1736c11cb42f87c6ee29522035fc077' \ '285f57d865956d93250ec548288c5bface096b6b' \ - 'b484a4da7a0f3103e188539bfa6c1910dc9b55ca') + 'b484a4da7a0f3103e188539bfa6c1910dc9b55ca' \ + 'd46045ac63cdb7735121120054705be5c37f0649' \ + '0e70e9bfd18295b395a1bbabe723d7261a0d748d') unset MAKEFLAGS build() { Fcd + Fpatchall + cp -a ../QTeXEngine ./3rdparty/ || Fdie cp ../build.conf ./ || Fdie @@ -36,18 +43,20 @@ build() { cd ../qwtplot3d || Fdie qmake || Fdie - make || Fdie - + make staticlib || Fdie + cd ../QTeXEngine || Fdie qmake || Fdie make || Fdie - + cd ../../qtiplot || Fdie ## fix some path Fsed "pythonconfig.path = /usr/local/qtiplot" "pythonconfig.path = /usr/share/qtiplot" qtiplot.pro Fsed "/usr/local/" "/usr/" qtiplot.pro Fsed "doc/qtiplot/" "doc/qtiplot-$pkgver" qtiplot.pro Fsed "d_python_config_folder + \"" "\"/usr/share/qtiplot" src/core/ApplicationWindow.cpp + ## fix include name + Fsed '' '' src/core/ApplicationWindow.cpp qmake || Fdie make || Fdie INSTALL_ROOT=${Fdestdir} make install || Fdie diff --git a/source/xapps-extra/qtiplot/build.conf b/source/xapps-extra/qtiplot/build.conf old mode 100755 new mode 100644 index cad0658..5d50e5b --- a/source/xapps-extra/qtiplot/build.conf +++ b/source/xapps-extra/qtiplot/build.conf @@ -150,6 +150,20 @@ TEX_ENGINE_LIBS = $$QTI_ROOT/3rdparty/QTeXEngine/libQTeXEngine.a #ALGLIB_LIBS = $$QTI_ROOT/3rdparty/alglib/libalglib.a ########################################################## +## TAMUANOVA (0.2.1) +########################################################## + +TAMUANOVA_LIBS = -ltamuanova +TAMUANOVA_INCLUDEPATH = /usr/include/tamu_anova/ + +########################################################## +## Qt Assistant Compat +########################################################## + +QTASSISTANT_LIBS = -lQtAssistantClient +QTASSISTANT_INCLUDEPATH = /usr/include/QtAssistant/ + +########################################################## ## python - only used if python is needed ########################################################## @@ -184,7 +198,7 @@ contains( TARGET, qtiplot ) { # Uncomment the following line if you want to build QtiPlot as a browser plugin (not working on Internet Explorer). #CONFIG += BrowserPlugin - + CONFIG += release #CONFIG += debug #win32: CONFIG += console diff --git a/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-qtassist.patch b/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-qtassist.patch new file mode 100644 index 0000000..ed7a7e4 --- /dev/null +++ b/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-qtassist.patch @@ -0,0 +1,19 @@ +diff -Naur qtiplot-0.9.8.5/qtiplot/qtiplot.pro qtiplot-0.9.8.5/qtiplot/qtiplot.pro +--- qtiplot-0.9.8.5/qtiplot/qtiplot.pro 2011-02-14 12:21:47.000000000 +0100 ++++ qtiplot-0.9.8.5/qtiplot/qtiplot.pro 2011-04-13 13:19:28.830160242 +0200 +@@ -14,12 +14,14 @@ + INCLUDEPATH += $$QWT_INCLUDEPATH + INCLUDEPATH += $$QWT3D_INCLUDEPATH + INCLUDEPATH += $$GSL_INCLUDEPATH ++INCLUDEPATH += $$QTASSISTANT_INCLUDEPATH + + # configurable libs + LIBS += $$MUPARSER_LIBS + LIBS += $$QWT_LIBS + LIBS += $$QWT3D_LIBS + LIBS += $$GSL_LIBS ++LIBS += $$QTASSISTANT_LIBS + + ############################################################################# + ###################### BASIC PROJECT PROPERTIES ############################# + diff --git a/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-tamuanova.patch b/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-tamuanova.patch new file mode 100644 index 0000000..61647be --- /dev/null +++ b/source/xapps-extra/qtiplot/qtiplot-0.9.8.5-tamuanova.patch @@ -0,0 +1,53 @@ +diff --git a/qtiplot/qtiplot.pro b/qtiplot/qtiplot.pro +index 95a5f0c..72e99ab 100755 +--- a/qtiplot/qtiplot.pro ++++ b/qtiplot/qtiplot.pro +@@ -205,18 +205,14 @@ contains(SCRIPTING_LANGS, Python) { + !isEmpty(TAMUANOVA_LIBS) { + DEFINES += HAVE_TAMUANOVA + INCLUDEPATH += $$TAMUANOVA_INCLUDEPATH +- #LIBS += $$TAMUANOVA_LIBS +- +- HEADERS += $$TAMUANOVA_INCLUDEPATH/tamu_anova.h +- SOURCES += $$TAMUANOVA_INCLUDEPATH/anova_1.c +- SOURCES += $$TAMUANOVA_INCLUDEPATH/anova_2.c ++ LIBS += $$TAMUANOVA_LIBS + } + + ############################################################### + + # At the very end: add global include- and lib path +-#unix:INCLUDEPATH += $$SYS_INCLUDEPATH +-#unix:LIBS += $$SYS_LIBS ++unix:INCLUDEPATH += $$SYS_INCLUDEPATH ++unix:LIBS += $$SYS_LIBS + + ############################################################### + ############### Building QtiPlot as a browser plugin ########## +@@ -230,14 +226,15 @@ contains(CONFIG, BrowserPlugin){ + } + + QT += sql +-LIBS += src/plugins/libQtiPlotdBasePlugin.a +-LIBS += src/plugins/libQtiPlotDatabasePlugin.a +-LIBS += src/plugins/libQtiPlotCsvPlugin.a +-LIBS += src/plugins/libQtiPlotTexPlugin.a +-LIBS += src/plugins/libQtiPlotOdsPlugin.a +-LIBS += src/plugins/libQtiPlotExcelPlugin.a +-LIBS += src/plugins/libQtiPlotOriginPlugin.a +-LIBS += src/plugins/libQtiPlotEmfExportPlugin.a +-LIBS += ../3rdparty/quazip/lib/libquazip.a +-LIBS += ../3rdparty/EmfEngine/libEmfEngine.a +-LIBS += -lgdiplus ++#LIBS += src/plugins/libQtiPlotdBasePlugin.a ++#LIBS += src/plugins/libQtiPlotDatabasePlugin.a ++#LIBS += src/plugins/libQtiPlotCsvPlugin.a ++#LIBS += src/plugins/libQtiPlotTexPlugin.a ++#LIBS += src/plugins/libQtiPlotOdsPlugin.a ++#LIBS += src/plugins/libQtiPlotExcelPlugin.a ++#LIBS += src/plugins/libQtiPlotOriginPlugin.a ++#LIBS += src/plugins/libQtiPlotEmfExportPlugin.a ++#LIBS += -lquazip ++#LIBS += ../3rdparty/EmfEngine/libEmfEngine.a ++#LIBS += -lgdiplus ++ From elentir at frugalware.org Wed Apr 13 14:41:11 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 14:41:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gdk-pixbuf2-minimal-2.23.3-1-x86_64 Message-ID: <20110413124111.639001358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a771ff588ba71bbcc3cd1697e1076f9c372da8f8 commit a771ff588ba71bbcc3cd1697e1076f9c372da8f8 Author: Elentir Date: Wed Apr 13 14:36:24 2011 +0200 gdk-pixbuf2-minimal-2.23.3-1-x86_64 * new package diff --git a/source/xlib-extra/gdk-pixbuf2-minimal/FrugalBuild b/source/xlib-extra/gdk-pixbuf2-minimal/FrugalBuild new file mode 100644 index 0000000..56a4e4c --- /dev/null +++ b/source/xlib-extra/gdk-pixbuf2-minimal/FrugalBuild @@ -0,0 +1,30 @@ +# Compiling time: 0.16 SBU +# Maintainer: Elentir + +pkgname=gdk-pixbuf2-minimal +_F_gnome_name=gdk-pixbuf +pkgver=2.23.3 +pkgrel=1 +pkgdesc="An image loading library for Fwife install CD" +depends=('libjpeg' 'libpng' 'glib2>=2.28.1-2' 'libx11') +groups=('xlib-extra') +archs=('i686' 'x86_64') +_F_gnome_devel="y" +Finclude gnome +options=("nodocs") +_F_cd_path="$_F_gnome_name-$pkgver" +sha1sums=('b141f7afde11a7b8e31535f1c8195a951e1fe1aa') +Fconfopts="${Fconfopts[@]} --without-libjasper --with-included-loaders=png,jpeg \ + --without-libtiff --includedir=/usr/include/gdk-pixbuf2-fwife/ \ + --libdir=/usr/lib/gdk-pixbuf2-fwife/" + +export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" + +build() { + Fbuild + Frm etc + Frm usr/bin + Frm usr/share/ +} + +# optimization OK From elentir at frugalware.org Wed Apr 13 14:46:12 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 14:46:12 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk+2-minimal-2.24.4-2-x86_64 Message-ID: <20110413124612.59E571358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=14b007596dc28977d69069d646103c1c32433b31 commit 14b007596dc28977d69069d646103c1c32433b31 Author: Elentir Date: Wed Apr 13 14:44:02 2011 +0200 gtk+2-minimal-2.24.4-2-x86_64 * build with gdk-pixbuf2-minimal diff --git a/source/xlib-extra/gtk+2-minimal/FrugalBuild b/source/xlib-extra/gtk+2-minimal/FrugalBuild index 58dc196..92f20ea 100644 --- a/source/xlib-extra/gtk+2-minimal/FrugalBuild +++ b/source/xlib-extra/gtk+2-minimal/FrugalBuild @@ -4,9 +4,9 @@ pkgname=gtk+2-minimal _F_gnome_name=gtk+ pkgver=2.24.4 -pkgrel=1 +pkgrel=2 pkgdesc="GTK+2 for Fwife Install CD" -depends=('atk>=1.26.0' 'fontconfig' 'libx11' 'gdk-pixbuf2' \ +depends=('atk>=1.26.0' 'fontconfig' 'libx11' 'gdk-pixbuf2-minimal' \ 'pango-minimal>=1.28.0' 'cairo-minimal>=1.8.10' 'libxrandr' 'libsm' 'glib2>=2.20.3') rodepends=('shared-mime-info') groups=('xlib-extra') @@ -17,14 +17,17 @@ Finclude gnome url="http://www.gtk.org/" _F_cd_path="$_F_gnome_name-$pkgver" Fconfopts="$Fconfopts --disable-xinerama --enable-xkb --disable-largefile \ ---disable-cups --disable-papi --with-gdktarget=x11 --with-x --with-xinput=yes \ +--disable-cups --disable-papi --with-gdktarget=x11 --with-x \ --libdir=/usr/lib/gtk-fwife/ --includedir=/usr/include/gtk-fwife/" sha1sums=('c15a25ba49eb459b2c4cdc46baedf6cecf08cbcf') +unset MAKEFLAGS export CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" -export PKG_CONFIG_PATH="/usr/lib/cairo-fwife/pkgconfig:/usr/lib/pango-fwife/pkgconfig" +export PKG_CONFIG_PATH="/usr/lib/gdk-pixbuf2-fwife/pkgconfig:/usr/lib/cairo-fwife/pkgconfig:/usr/lib/pango-fwife/pkgconfig" build() { + Fcd + Fsed "demos" "" Makefile.in Fbuild Frm etc Frm usr/bin From elentir at frugalware.org Wed Apr 13 14:50:11 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 14:50:11 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pangomm-minimal-2.28.2-1-x86_64 Message-ID: <20110413125011.708DB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=722b55a7efb226e05384cc6d6447c16f6ca36531 commit 722b55a7efb226e05384cc6d6447c16f6ca36531 Author: Elentir Date: Wed Apr 13 14:49:40 2011 +0200 pangomm-minimal-2.28.2-1-x86_64 * version bump diff --git a/source/xlib-extra/pangomm-minimal/FrugalBuild b/source/xlib-extra/pangomm-minimal/FrugalBuild index 29e884e..c752be9 100644 --- a/source/xlib-extra/pangomm-minimal/FrugalBuild +++ b/source/xlib-extra/pangomm-minimal/FrugalBuild @@ -3,7 +3,7 @@ pkgname=pangomm-minimal _F_gnome_name=pangomm -pkgver=2.26.2 +pkgver=2.28.2 pkgrel=1 pkgdesc="Pangomm for Fwife Install CD" url="http://www.gtk.org/" @@ -14,7 +14,7 @@ options=("nodocs") Finclude gnome _F_cd_path=$_F_gnome_name-$pkgver Fconfopts="$Fconfopts --libdir=/usr/lib/pangomm-fwife/ --includedir=/usr/include/pangomm-fwife/" -sha1sums=('67ebf73e36dc829ab3e7ff76c0e447dc0a031f14') +sha1sums=('31bcbb0c8773fdde6f4ea9b4a79fdf7159f94520') export CXXFLAGS="`echo $CXXFLAGS |sed 's|-O2|-Os|g'`" export PKG_CONFIG_PATH="/usr/lib/pango-fwife/pkgconfig:/usr/lib/cairomm-fwife/pkgconfig\ From elentir at frugalware.org Wed Apr 13 15:04:47 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 15:04:47 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: cairomm-minimal-1.9.8-1-x86_64 Message-ID: <20110413130447.4FF1F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=afa36e01ca4d89af9ab37397abf69af13dda86a9 commit afa36e01ca4d89af9ab37397abf69af13dda86a9 Author: Elentir Date: Wed Apr 13 15:04:33 2011 +0200 cairomm-minimal-1.9.8-1-x86_64 * version bump diff --git a/source/xlib-extra/cairomm-minimal/FrugalBuild b/source/xlib-extra/cairomm-minimal/FrugalBuild index 90ee5b4..6ee5efb 100644 --- a/source/xlib-extra/cairomm-minimal/FrugalBuild +++ b/source/xlib-extra/cairomm-minimal/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Elentir pkgname=cairomm-minimal -pkgver=1.9.2 +pkgver=1.9.8 pkgrel=1 pkgdesc="Cairomm for Fwife Install CD" url="http://cairographics.org" @@ -15,7 +15,7 @@ source=($url/releases/cairomm-$pkgver.tar.gz) _F_cd_path=cairomm-$pkgver Fconfopts="$Fconfopts --disable-docs --libdir=/usr/lib/cairomm-fwife/ \ --includedir=/usr/include/cairomm-fwife/" -sha1sums=('8dc75d88b7d2d10bf4e98032aa329b791b519657') +sha1sums=('ce27835ac69f5b4bd88653655dabf09c868accf9') export CXXFLAGS="`echo $CXXFLAGS |sed 's|-O2|-Os|g'`" export PKG_CONFIG_PATH="/usr/lib/cairo-fwife/pkgconfig" From elentir at frugalware.org Wed Apr 13 16:15:21 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:21 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtkmm-minimal-2.24.0-1-x86_64 Message-ID: <20110413141521.A125B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=607097e0727406614c02ff6683794af4d16475dd commit 607097e0727406614c02ff6683794af4d16475dd Author: Elentir Date: Wed Apr 13 16:15:02 2011 +0200 gtkmm-minimal-2.24.0-1-x86_64 * version bump diff --git a/source/xlib-extra/gtkmm-minimal/FrugalBuild b/source/xlib-extra/gtkmm-minimal/FrugalBuild index fba0c44..ceb0ded 100644 --- a/source/xlib-extra/gtkmm-minimal/FrugalBuild +++ b/source/xlib-extra/gtkmm-minimal/FrugalBuild @@ -3,22 +3,23 @@ pkgname=gtkmm-minimal _F_gnome_name=gtkmm -pkgver=2.20.2 +pkgver=2.24.0 pkgrel=1 pkgdesc="Gtkmm for Fwife Install CD" -depends=('glibmm>=2.18.5' 'gtk+2-minimal>=2.20.0' 'cairomm-minimal>=1.8.0' 'pangomm-minimal>=2.26.1') +depends=('glibmm>=2.18.5' 'gtk+2-minimal>=2.24.0' 'cairomm-minimal>=1.9.0' 'pangomm-minimal>=2.28.1') groups=('xlib-extra') archs=('i686' 'x86_64') Finclude gnome options=("nodocs") -Fconfopts="$Fconfopts --disable-docs --disable-examples --disable-demos \ +Fconfopts="${Fconfopts[@]} --disable-documentation --enable-api-atkmm=no \ --libdir=/usr/lib/gtkmm-fwife/ --includedir=/usr/include/gtkmm-fwife/" _F_cd_path=$_F_gnome_name-$pkgver -sha1sums=('b86d51a7a16ed6f5adfbc85e11286f65caaef425') +sha1sums=('9b9e68360fb3f5faa7f221acba56f0d75a8198d2') export CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" export CXXFLAGS="`echo $CXXFLAGS |sed 's|-O2|-Os|g'`" export PKG_CONFIG_PATH="/usr/lib/pango-fwife/pkgconfig:/usr/lib/cairomm-fwife/pkgconfig\ -:/usr/lib/cairo-fwife/pkgconfig:/usr/lib/pangomm-fwife/pkgconfig:/usr/lib/gtk-fwife/pkgconfig" +:/usr/lib/cairo-fwife/pkgconfig:/usr/lib/pangomm-fwife/pkgconfig:/usr/lib/gtk-fwife/pkgconfig\ +:/usr/lib/gdk-pixbuf2-fwife/pkgconfig" build() { Fbuild From elentir at frugalware.org Wed Apr 13 16:15:58 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:58 +0200 (CEST) Subject: [Frugalware-git] fwife: select-basic: fix packages Message-ID: <20110413141558.7B5451358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=96ad3c2d2958b0ae8c5600eb56e801dd1d6f3c96 commit 96ad3c2d2958b0ae8c5600eb56e801dd1d6f3c96 Author: Elentir Date: Tue Apr 12 22:52:15 2011 +0200 select-basic: fix packages diff --git a/src/plugins/select-basic.c b/src/plugins/select-basic.c index 5c299b4..c9bce6a 100644 --- a/src/plugins/select-basic.c +++ b/src/plugins/select-basic.c @@ -178,10 +178,16 @@ void configure_desktop_basic(void) /* Disable devel as well in this mode */ selectcat("devel", 0); - /* Disable xapps as well */ + /* Disable some xapps as well */ selectfile("xapps", "geeqie", 0); + selectfile("xapps", "qt4-designer", 0); selectfile("xapps", "firefox", 0); selectfile("xapps", "thunderbird", 0); + selectfile("apps", "attica", 0); + selectfile("apps", "qt-data", 0); + selectfile("apps", "soprano", 0); + selectfile("xapps", "mplayer", 0); + selectfile("xapps", "akonadi", 0); if(strcmp(lang ,"en")) { ptr = g_strdup_printf("firefox-%s", lang); @@ -197,7 +203,7 @@ void configure_desktop_basic(void) /* Disable all default desktop categories */ selectcat("kde", 0); - selectcat("gnome", 0); + selectallfiles("gnome", NULL, 0); selectcat("xfce4", 0); if(!strcmp(seldesk, _("KDE"))) @@ -213,20 +219,21 @@ void configure_desktop_basic(void) selectfile("kde-extra", "rekonq", 1); selectfile("kde-extra", "krita", 1); selectfile("xapps", "gftp", 0); - selectfile("xapps", "mplayer", 0); selectfile("xapps", "pidgin", 0); selectfile("xapps", "xchat", 0); + selectfile("apps", "attica", 1); + selectfile("xapps", "akonadi", 1); } else if(!strcmp(seldesk, _("GNOME"))) { - selectcat("gnome", 1); + selectallfiles("gnome", NULL, 1); selectcat("gnome-extra", 1); selectfile("gnome-extra", "epiphany", 1); selectfile("gnome-extra", "empathy", 1); selectfile("gnome-extra", "gnucash", 1); selectfile("xapps-extra", "transmission", 1); selectfile("xapps", "gimp", 1); - selectfile("xapps", "akonadi", 0); + selectfile("xapps", "pidgin", 0); } else if(!strcmp(seldesk, _("XFCE"))) { @@ -237,7 +244,7 @@ void configure_desktop_basic(void) selectfile("xapps-extra", "xarchiver", 1); selectfile("xapps-extra", "claws-mail", 1); selectfile("xapps", "gimp", 1); - selectfile("xapps", "akonadi", 0); + selectfile("gnome", "gksu-frugalware", 1); } else if(!strcmp(seldesk, _("LXDE"))) { @@ -248,7 +255,7 @@ void configure_desktop_basic(void) selectfile("xapps-extra", "claws-mail", 1); selectfile("xapps-extra", "xarchiver", 1); selectfile("xapps", "gimp", 1); - selectfile("xapps", "akonadi", 0); + selectfile("gnome", "gksu-frugalware", 1); } free(lang); From elentir at frugalware.org Wed Apr 13 16:15:58 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:58 +0200 (CEST) Subject: [Frugalware-git] fwife: rootconf: fix label Message-ID: <20110413141558.859721358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=952f1146c718abe9ac3c3d2f06b455559d77f4ab commit 952f1146c718abe9ac3c3d2f06b455559d77f4ab Author: Elentir Date: Wed Apr 13 00:51:17 2011 +0200 rootconf: fix label diff --git a/src/plugins/rootconf.c b/src/plugins/rootconf.c index 6ac8747..7985085 100644 --- a/src/plugins/rootconf.c +++ b/src/plugins/rootconf.c @@ -77,8 +77,10 @@ GtkWidget *load_gtk_widget(void) vboxp = gtk_vbox_new(FALSE, 5); infolabl = gtk_label_new(NULL); gtk_label_set_justify(GTK_LABEL(infolabl), GTK_JUSTIFY_CENTER); - gtk_label_set_markup(GTK_LABEL(infolabl), _("You can set password on the system administrator account (root).\n It is recommended that you set one now so that it is active the first time the machine is rebooted.\n This is especially important if your machine is on an internet connected LAN.\n Is you don't want to set one, keep entry empty and go to the next step.")); - + gtk_label_set_markup(GTK_LABEL(infolabl), _("You can set password on the system administrator account (root).\n\ +It is recommended that you set one now so that it is active the first time the machine is rebooted.\n\ +This is especially important if your machine is on an internet connected LAN.\n\ +If you don't want to set one, keep entry empty and go to the next step.")); gtk_box_pack_start (GTK_BOX (vboxp), infolabl, FALSE, FALSE, 10); hboxroot1 = gtk_hbox_new(FALSE, 10); From elentir at frugalware.org Wed Apr 13 16:15:58 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:58 +0200 (CEST) Subject: [Frugalware-git] fwife: partdisk: ext4 not experimental anymore and make it the default Message-ID: <20110413141558.8BFDB135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=90fc6e9922e2371378d9fe043708e17498d56032 commit 90fc6e9922e2371378d9fe043708e17498d56032 Author: Elentir Date: Wed Apr 13 12:12:01 2011 +0200 partdisk: ext4 not experimental anymore and make it the default diff --git a/src/plugins/partdisk.c b/src/plugins/partdisk.c index 8c8ee0d..01f0cbc 100644 --- a/src/plugins/partdisk.c +++ b/src/plugins/partdisk.c @@ -517,14 +517,14 @@ int requestformat(char *namedev) gtk_label_set_markup(GTK_LABEL(pLabel), _("Choose filesystem :\n")); gtk_box_pack_start(GTK_BOX(pVBox), pLabel, FALSE, FALSE, 2); - /* Ext3 filesystem - default*/ - GtkWidget *pRadio1 = gtk_radio_button_new_with_label(NULL, _("ext3 - Journalising version of the ext2 filesystem")); + /* Ext4 filesystem - default */ + GtkWidget *pRadio1 = gtk_radio_button_new_with_label(NULL, _("ext4 - The evolution of the ext3 filesystem")); /* Ext2 filesystem */ GtkWidget *pRadio2 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON (pRadio1), _("ext2 - Standard Linux ext2 filesystem")); - /* Ext4 filesystem , experimental by now */ - GtkWidget *pRadio3 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON (pRadio1), _("ext4 - The evolution of the ext3 filesystem (EXPERIMENTAL!)")); + /* Ext3 filesystem */ + GtkWidget *pRadio3 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON (pRadio1), _("ext3 - Journalising version of the ext2 filesystem")); gtk_box_pack_start(GTK_BOX (pVBox), pRadio3, FALSE, FALSE, 2); gtk_box_pack_start(GTK_BOX (pVBox), pRadio2, FALSE, FALSE, 2); @@ -578,7 +578,7 @@ int requestformat(char *namedev) fs = "ext2"; else if(!strcmp(sLabel, _("ext3 - Journalising version of the ext2 filesystem"))) fs = "ext3"; - else if(!strcmp(sLabel, _("ext4 - The evolution of the ext3 filesystem (EXPERIMENTAL!)"))) + else if(!strcmp(sLabel, _("ext4 - The evolution of the ext3 filesystem"))) fs = "ext4"; else if(!strcmp(sLabel, _("reiserfs - Hans Reiser's journalising filesystem"))) fs = "reiserfs"; From elentir at frugalware.org Wed Apr 13 16:15:58 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:58 +0200 (CEST) Subject: [Frugalware-git] fwife: userconf: checkbox to add the user to /etc/sudoers if sudo available Message-ID: <20110413141558.920AB135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=217fc210656b49610a0b48d87f3f2b108a375e1e commit 217fc210656b49610a0b48d87f3f2b108a375e1e Author: Elentir Date: Wed Apr 13 12:40:12 2011 +0200 userconf: checkbox to add the user to /etc/sudoers if sudo available diff --git a/src/plugins/usersconf.c b/src/plugins/usersconf.c index bb4fc94..30070bc 100644 --- a/src/plugins/usersconf.c +++ b/src/plugins/usersconf.c @@ -76,6 +76,11 @@ void remove_user(GtkWidget *widget, gpointer data) if (gtk_tree_selection_get_selected (selection, NULL, &iter)) { gtk_tree_model_get (model, &iter, COLUMN_USR_NAME, &old_name, -1); + + ptr = g_strdup_printf("sed -i '/%s ALL=(ALL) ALL/d' %s/etc/sudoers", old_name, TARGETDIR); + fw_system(ptr); + free(ptr); + ptr = g_strdup_printf("chroot %s /usr/sbin/userdel -r %s", TARGETDIR, old_name); if(fw_system(ptr) != 0) { fwife_error(_("User can't be deleted!")); @@ -100,6 +105,7 @@ void add_user(GtkWidget *widget, gpointer data) GtkWidget *pFrame; GtkWidget *pVBoxFrame; GtkWidget *pLabel; + GtkWidget *hassudo; GtkTreeIter iter; GtkTreeView *treeview = (GtkTreeView *)data; @@ -116,8 +122,8 @@ void add_user(GtkWidget *widget, gpointer data) gtk_window_set_transient_for(GTK_WINDOW(pBoite), GTK_WINDOW(assistant)); gtk_window_set_position(GTK_WINDOW(pBoite), GTK_WIN_POS_CENTER_ON_PARENT); - pVBox = gtk_vbox_new(TRUE, 0); - gtk_box_pack_start(GTK_BOX(GTK_DIALOG(pBoite)->vbox), pVBox, TRUE, FALSE, 5); + pVBox = gtk_vbox_new(FALSE, 5); + gtk_box_pack_start(GTK_BOX(GTK_DIALOG(pBoite)->vbox), pVBox, TRUE, FALSE, 0); pFrame = gtk_frame_new(_("General Configuration")); gtk_box_pack_start(GTK_BOX(pVBox), pFrame, TRUE, FALSE, 0); @@ -169,6 +175,14 @@ void add_user(GtkWidget *widget, gpointer data) pEntryHome = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(pVBoxFrame), pEntryHome, TRUE, FALSE, 0); + hassudo = gtk_check_button_new_with_label(_("Give user root privileges (sudo)")); + gtk_box_pack_start(GTK_BOX(pVBox), hassudo, FALSE, FALSE, 0); + + struct stat buf; + ptr = g_strdup_printf("%s/etc/sudoers", TARGETDIR); + if(stat(ptr, &buf)) + gtk_widget_set_sensitive(hassudo, FALSE); + gtk_widget_show_all(pBoite); switch (gtk_dialog_run(GTK_DIALOG(pBoite))) @@ -217,6 +231,13 @@ void add_user(GtkWidget *widget, gpointer data) free(ptr); } + if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(hassudo))) + { + ptr = g_strdup_printf("echo '%s ALL=(ALL) ALL' >> %s/etc/sudoers", sName, TARGETDIR); + fw_system(ptr); + free(ptr); + } + /* Adding new user to the list */ gtk_list_store_append (GTK_LIST_STORE (model), &iter); userimg = gtk_image_get_pixbuf (GTK_IMAGE(userorigimg)); From elentir at frugalware.org Wed Apr 13 16:15:58 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:15:58 +0200 (CEST) Subject: [Frugalware-git] fwife: partdisk: fix radio button order Message-ID: <20110413141558.983C41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=0fd6ab7f393937748ecee323f1ec8f3fb1f57652 commit 0fd6ab7f393937748ecee323f1ec8f3fb1f57652 Author: Elentir Date: Wed Apr 13 12:41:41 2011 +0200 partdisk: fix radio button order diff --git a/src/plugins/partdisk.c b/src/plugins/partdisk.c index 01f0cbc..d7348cb 100644 --- a/src/plugins/partdisk.c +++ b/src/plugins/partdisk.c @@ -526,8 +526,8 @@ int requestformat(char *namedev) /* Ext3 filesystem */ GtkWidget *pRadio3 = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON (pRadio1), _("ext3 - Journalising version of the ext2 filesystem")); - gtk_box_pack_start(GTK_BOX (pVBox), pRadio3, FALSE, FALSE, 2); gtk_box_pack_start(GTK_BOX (pVBox), pRadio2, FALSE, FALSE, 2); + gtk_box_pack_start(GTK_BOX (pVBox), pRadio3, FALSE, FALSE, 2); gtk_box_pack_start(GTK_BOX (pVBox), pRadio1, FALSE, FALSE, 2); /* Reiser Filesystem */ From elentir at frugalware.org Wed Apr 13 16:42:42 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:42:42 +0200 (CEST) Subject: [Frugalware-git] setup: gui: add gdk-pixbuf2-minimal package Message-ID: <20110413144242.805E11358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=c25e80de7c2be3b858cfdadcf2bfe935be94af12 commit c25e80de7c2be3b858cfdadcf2bfe935be94af12 Author: Elentir Date: Wed Apr 13 16:41:36 2011 +0200 gui: add gdk-pixbuf2-minimal package diff --git a/Makefile b/Makefile index 0b0c6fe..45b37a7 100644 --- a/Makefile +++ b/Makefile @@ -460,7 +460,7 @@ glibc: mkdir -p glibc/{lib,usr/lib/locale} $(UNPACK) cp -a $(BDIR)/lib/{ld*,libc*,libm*,libdl*,libnss*,libresolv*,libutil*,libnsl*,librt*,libpthread*,libthread*} glibc/lib/ - + # generate the necessary locales cd $(BDIR) && rm -rf usr/ && mkdir -p usr/lib/locale/ cd $(BDIR); \ @@ -1041,6 +1041,12 @@ pango-minimal: cp -a usr/lib/pango-fwife/libpango*.so* ../pango-minimal/usr/lib; \ cp -a etc/pango-fwife/* ../pango-minimal/etc/pango/ +gdk-pixbuf2-minimal: + $(CLEANUP) + mkdir -p gdk-pixbuf2-minimal/usr/lib + $(UNPACK); \ + cp -a usr/lib/gdk-pixbuf2-fwife/libgdk_pixbuf-2.0.so* ../gdk-pixbuf2-minimal/usr/lib + gtk+2-minimal: $(CLEANUP) mkdir -p gtk+2-minimal/usr/{share/locale,lib} diff --git a/configure b/configure index 1e56bb9..afaee3c 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-evdev', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', + 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'gdk-pixbuf2-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv', 'xf86-video-openchrome', 'libdrm']) From elentir at frugalware.org Wed Apr 13 16:49:28 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 16:49:28 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: recorder-1.4.5-1-x86_64 Message-ID: <20110413144928.22A661358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f87463e491615a7a39a406410f89d6122ecb4ea6 commit f87463e491615a7a39a406410f89d6122ecb4ea6 Author: Elentir Date: Wed Apr 13 16:46:41 2011 +0200 recorder-1.4.5-1-x86_64 * new package diff --git a/source/xapps-extra/recorder/FrugalBuild b/source/xapps-extra/recorder/FrugalBuild new file mode 100644 index 0000000..e6508a6 --- /dev/null +++ b/source/xapps-extra/recorder/FrugalBuild @@ -0,0 +1,13 @@ +# Compiling Time: 0.01 SBU +# Maintainer: Elentir + +pkgname=recorder +pkgver=1.4.5 +pkgrel=1 +pkgdesc="A GTK frontend of cdrkit/cdrtools, cdrdao, mkisofs and growisofs" +depends=('pygtk') +groups=('xapps-extra') +archs=('i686' 'x86_64') +_F_googlecode_ext=".tar.bz2" +Finclude googlecode +sha1sums=('2d28c50333790f5af98e1185fc52dac8d046755b') From elentir at frugalware.org Wed Apr 13 17:05:28 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 17:05:28 +0200 (CEST) Subject: [Frugalware-git] fwife: remove useless e17 desktop image Message-ID: <20110413150528.96AD21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=e1a73ccd004b7eefc254a2d83a124310f643d235 commit e1a73ccd004b7eefc254a2d83a124310f643d235 Author: Elentir Date: Wed Apr 13 17:04:20 2011 +0200 remove useless e17 desktop image diff --git a/data/images/e17desktop.png b/data/images/e17desktop.png deleted file mode 100644 index af2b37b..0000000 Binary files a/data/images/e17desktop.png and /dev/null differ From elentir at frugalware.org Wed Apr 13 17:06:33 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 17:06:33 +0200 (CEST) Subject: [Frugalware-git] fwife: remove e17desktop.png entry in Makefile.am as well Message-ID: <20110413150633.AF1C51358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=56a6b48635bf9cbf514fcaa64fef9d247696f022 commit 56a6b48635bf9cbf514fcaa64fef9d247696f022 Author: Elentir Date: Wed Apr 13 17:05:56 2011 +0200 remove e17desktop.png entry in Makefile.am as well diff --git a/data/images/Makefile.am b/data/images/Makefile.am index 0fe11fd..27f8713 100644 --- a/data/images/Makefile.am +++ b/data/images/Makefile.am @@ -30,7 +30,6 @@ images_DATA = adduser.png \ kde4desktop.png \ gnomedesktop.png \ xfcedesktop.png \ - e17desktop.png \ lxdedesktop.png \ nox.png \ tree.png From bouleetbil at frogdev.info Wed Apr 13 17:59:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 13 Apr 2011 17:59:02 +0200 (CEST) Subject: frugalware-current: ca-certificates-20090814-6-x86_64 *useless warning to /dev/null/ Ă*closed #4466 Message-ID: <20110413155902.183BA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f23ad057d589db2c050f7afb5372d03a4af9e6c5 commit f23ad057d589db2c050f7afb5372d03a4af9e6c5 Author: bouleetbil Date: Wed Apr 13 17:56:19 2011 +0200 ca-certificates-20090814-6-x86_64 *useless warning to /dev/null/ ?*closed #4466 diff --git a/source/lib/ca-certificates/FrugalBuild b/source/lib/ca-certificates/FrugalBuild index 947c782..ef68aed 100644 --- a/source/lib/ca-certificates/FrugalBuild +++ b/source/lib/ca-certificates/FrugalBuild @@ -3,7 +3,7 @@ pkgname=ca-certificates pkgver=20090814 -pkgrel=5 +pkgrel=6 pkgdesc='Common CA certificates' archs=('i686' 'x86_64' 'ppc') groups=('lib') diff --git a/source/lib/ca-certificates/ca-certificates.install b/source/lib/ca-certificates/ca-certificates.install index ef961aa..e5b063d 100644 --- a/source/lib/ca-certificates/ca-certificates.install +++ b/source/lib/ca-certificates/ca-certificates.install @@ -1,10 +1,10 @@ post_install() { - /usr/sbin/update-ca-certificates --fresh 2>/dev/null - /usr/sbin/update-ca-certificates 2>/dev/null + /usr/sbin/update-ca-certificates --fresh 2>/dev/null >/dev/null + /usr/sbin/update-ca-certificates 2>/dev/null >/dev/null } post_upgrade() { - /usr/sbin/update-ca-certificates 2>/dev/null + /usr/sbin/update-ca-certificates 2>/dev/null >/dev/null } op=$1 From devil505linux at gmail.com Wed Apr 13 18:37:01 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:37:01 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: vlc-1.1.9-1-i686 * version bump Message-ID: <20110413163701.D32781358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6b215c23a01ae21346d3a3f3e6514d66bf3b455c commit 6b215c23a01ae21346d3a3f3e6514d66bf3b455c Author: Devil505 Date: Wed Apr 13 18:32:15 2011 +0200 vlc-1.1.9-1-i686 * version bump diff --git a/source/xmultimedia-extra/vlc/FrugalBuild b/source/xmultimedia-extra/vlc/FrugalBuild index 2f66c03..7eca189 100644 --- a/source/xmultimedia-extra/vlc/FrugalBuild +++ b/source/xmultimedia-extra/vlc/FrugalBuild @@ -3,9 +3,9 @@ # Contributor: VMiklos pkgname=vlc -pkgver=1.1.8 +pkgver=1.1.9 pkgextraver= -pkgrel=2 +pkgrel=1 pkgdesc="The cross-platform media player and streaming server." url="http://www.videolan.org/vlc/" depends=('hal' 'e2fsprogs' 'libxpm>=3.5.8-1' 'libxdmcp' 'libshout' 'avahi' 'libdvbpsi>=0.1.7' 'libsmbclient' 'vcdimager>=0.7.24' 'libdvdnav>=4.1.3' \ @@ -21,7 +21,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url/download-sources.html|grep -m1 'Latest VLC'|sed 's/.*(\(.*\)).*/\1/;s/$pkgextraver//'" source=(http://download.videolan.org/pub/videolan/vlc/$pkgver$pkgextraver/$pkgname-$pkgver$pkgextraver.tar.bz2 \ vlc-upnp.patch) -sha1sums=('c4ac61e31fa287a0cb7744534a1abf49cf033776' \ +sha1sums=('cff81791d83fcd55f99cb12a4d9ad617cdff00c4' \ '13e7ccc32f375650aec10b7c7431b01e547cfd59') build() From devil505linux at gmail.com Wed Apr 13 18:48:26 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:48:26 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: shotwell-0.9.2-1-i686 * version bump Message-ID: <20110413164826.C4C051358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c073e10499d18b4319971c5ff09d7727af639e32 commit c073e10499d18b4319971c5ff09d7727af639e32 Author: Devil505 Date: Wed Apr 13 18:48:04 2011 +0200 shotwell-0.9.2-1-i686 * version bump diff --git a/source/gnome-extra/shotwell/FrugalBuild b/source/gnome-extra/shotwell/FrugalBuild index 4d65a58..67578dc 100644 --- a/source/gnome-extra/shotwell/FrugalBuild +++ b/source/gnome-extra/shotwell/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=shotwell -pkgver=0.9.1 +pkgver=0.9.2 pkgrel=1 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" url="http://yorba.org/shotwell/" @@ -17,7 +17,7 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/install/" source=(http://yorba.org/download/shotwell/0.9/$pkgname-$pkgver.tar.bz2) -sha1sums=('e3d1b4e175352184a2c46da08f7a6ce53939b534') +sha1sums=('7a2a90c74a49e0e4b96a70eb83d2a80df4ea6fa3') build() { Fbuild ---with-gconf-schema-file-dir=/etc/schemas From devil505linux at gmail.com Wed Apr 13 18:48:31 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:48:31 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pragha-0.94.1-1-i686 * version bump Message-ID: <20110413164831.C87D7BAC007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f278273e0191d6323032f054931305cd268d371 commit 2f278273e0191d6323032f054931305cd268d371 Author: Devil505 Date: Wed Apr 13 18:48:21 2011 +0200 pragha-0.94.1-1-i686 * version bump diff --git a/source/xapps-extra/pragha/FrugalBuild b/source/xapps-extra/pragha/FrugalBuild index 50500c2..8092809 100644 --- a/source/xapps-extra/pragha/FrugalBuild +++ b/source/xapps-extra/pragha/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=pragha -pkgver=0.94.0 +pkgver=0.94.1 pkgrel=1 pkgdesc="Pragha is is a lightweight GTK+ music manager. It is written completely in C and GTK+. This it is a fork of Consonance Music Manager." depends=('gstreamer' 'sqlite3' 'taglib' 'libnotify' 'libcdio' 'curl') @@ -13,7 +13,7 @@ _F_gnome_desktop="y" Finclude googlecode gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('985947e7066827183a9ed6eea527dffc89acc549') +sha1sums=('ea7b8554028f9df3f1a001ca278edbb8cda37fb7') build() { From devil505linux at gmail.com Wed Apr 13 18:50:42 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:50:42 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bluez-4.91-1-i686 * version bump Message-ID: <20110413165042.396E81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=adf8b3c04fdb2ab89ebd746879d37738a3ac508d commit adf8b3c04fdb2ab89ebd746879d37738a3ac508d Author: Devil505 Date: Wed Apr 13 18:50:33 2011 +0200 bluez-4.91-1-i686 * version bump diff --git a/source/apps/bluez/FrugalBuild b/source/apps/bluez/FrugalBuild index 3931514..48eb3a1 100644 --- a/source/apps/bluez/FrugalBuild +++ b/source/apps/bluez/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=bluez -pkgver=4.89 +pkgver=4.91 pkgrel=1 pkgdesc="Library to use the BlueZ Linux Bluetooth stack" url="http://bluez.sourceforge.net/" @@ -13,7 +13,7 @@ up2date="Flasttar http://www.bluez.org/download/" source=(http://www.kernel.org/pub/linux/bluetooth/$pkgname-$pkgver.tar.gz \ rc.bluetooth bluetooth.default Fix_netdevgroup.diff \ install-systemd-unit-files.patch) -sha1sums=('761741107a8e579e17f8ab640b8ed51a48dc5a4a' \ +sha1sums=('4cb62c406efed648ea34e5f4ad717e2bb1d51912' \ 'c9db2651400cc9261798afcc7e438acffbd2cc37' \ 'b54b6eb3606edcbac635f32f94d0afe32091c89f' \ '21f7a64b47eb9578c91799a341a3a7ef67d786b6' \ From devil505linux at gmail.com Wed Apr 13 18:51:56 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:51:56 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: python-logilab-common-0.55.2-1-i686 * version bump Message-ID: <20110413165156.1DB801358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=921fb2b4bc87b2b41b6b48f88e0dd47ba058b2dd commit 921fb2b4bc87b2b41b6b48f88e0dd47ba058b2dd Author: Devil505 Date: Wed Apr 13 18:51:46 2011 +0200 python-logilab-common-0.55.2-1-i686 * version bump diff --git a/source/devel-extra/python-logilab-common/FrugalBuild b/source/devel-extra/python-logilab-common/FrugalBuild index 7ace808..8b18eea 100644 --- a/source/devel-extra/python-logilab-common/FrugalBuild +++ b/source/devel-extra/python-logilab-common/FrugalBuild @@ -4,7 +4,7 @@ pkgname=python-logilab-common _F_archive_name=logilab-common -pkgver=0.55.0 +pkgver=0.55.2 pkgrel=1 pkgdesc="Providing low level functionalities needed for logilab python programs." url="http://www.logilab.org/projects/common/project_view" @@ -15,5 +15,5 @@ up2date="lynx -dump http://www.logilab.org/ftp/pub/common | Flasttar" source=(ftp://ftp.logilab.org/pub/common/logilab-common-$pkgver.tar.gz) Finclude python _F_cd_path=logilab-common-$pkgver -sha1sums=('75babf74b28dab84a8434f7f05919584788df848') +sha1sums=('dd0123ccf0d69c1e52449906817abdb2e91655a4') From devil505linux at gmail.com Wed Apr 13 18:52:46 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:52:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: uget-1.7.4-1-i686 * version bump Message-ID: <20110413165246.4C0901358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=74c9182ee4243d604e11506f1c2342c9e619407a commit 74c9182ee4243d604e11506f1c2342c9e619407a Author: Devil505 Date: Wed Apr 13 18:52:37 2011 +0200 uget-1.7.4-1-i686 * version bump diff --git a/source/xapps-extra/uget/FrugalBuild b/source/xapps-extra/uget/FrugalBuild index be33764..b8c9cf2 100644 --- a/source/xapps-extra/uget/FrugalBuild +++ b/source/xapps-extra/uget/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=uget -pkgver=1.7.3 +pkgver=1.7.4 pkgrel=1 pkgdesc="uget (urlgfe) is a graphical download manager written using GTK2." _F_sourceforge_dirname="urlget" @@ -14,7 +14,7 @@ options=('scriptlet') replaces=('urlgfe') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('5c339d5a73fcf8dd0525038826954bde8db6e847') +sha1sums=('f08bb13a9a61ff9df28726cf1f3d86309d89515b') Fconfopts="${Fconfopts} --enable-notify" _F_gnome_iconcache=y Finclude gnome-scriptlet From devil505linux at gmail.com Wed Apr 13 18:54:06 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:54:06 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: jpilot-1.8.1-1-i686 * version bump Message-ID: <20110413165406.C3B621358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=67a2ad232841a5edbaac35b55f7c9f9b79bf34ac commit 67a2ad232841a5edbaac35b55f7c9f9b79bf34ac Author: Devil505 Date: Wed Apr 13 18:53:56 2011 +0200 jpilot-1.8.1-1-i686 * version bump diff --git a/source/xapps-extra/jpilot/FrugalBuild b/source/xapps-extra/jpilot/FrugalBuild index 8be4193..1c091fc 100644 --- a/source/xapps-extra/jpilot/FrugalBuild +++ b/source/xapps-extra/jpilot/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=jpilot -pkgver=1.8.0 +pkgver=1.8.1 pkgrel=1 pkgdesc="JPilot is a desktop organizer for PalmOS devices." url="http://www.jpilot.org/" @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html | grep tar.gz | Flasttar" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('abc6a82823533bfab8c50fce7fff20cfaa898193') +sha1sums=('98a70bbb30bcccb8ba74aecb6a41b819dc8a4a3b') build() { From devil505linux at gmail.com Wed Apr 13 18:55:35 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:55:35 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libtorrent-rasterbar-0.15.6-1-i686 * version bump Message-ID: <20110413165535.D47BC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=813f85e848a776bdcda0816d1e13dcfe8b42a5c1 commit 813f85e848a776bdcda0816d1e13dcfe8b42a5c1 Author: Devil505 Date: Wed Apr 13 18:55:26 2011 +0200 libtorrent-rasterbar-0.15.6-1-i686 * version bump diff --git a/source/lib-extra/libtorrent-rasterbar/FrugalBuild b/source/lib-extra/libtorrent-rasterbar/FrugalBuild index 3937353..8bac5be 100644 --- a/source/lib-extra/libtorrent-rasterbar/FrugalBuild +++ b/source/lib-extra/libtorrent-rasterbar/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=libtorrent-rasterbar -pkgver=0.15.5 +pkgver=0.15.6 pkgrel=1 pkgdesc="LibTorrent Rasterbar is a BitTorrent library written in C++" _F_googlecode_dirname="libtorrent" @@ -19,7 +19,7 @@ Fconfopts="$Fconfopts --libdir=/usr/lib --enable-debug=no --with-zlib=system \ --with-boost-filesystem=mt --with-boost-thread=mt \ --with-boost-python=boost_python-mt --enable-python-binding --enable-statistics \ --enable-disk-stats --enable-examples --with-libgeoip=system" -sha1sums=('da81d92bb00f51edcd7dcea1e00e3c54806a43b4') +sha1sums=('e6f33b139933ec245e8850558efe52e88081fc6d') subpkgs=("libtorrent-rasterbar-python") subdescs=('libtorrent-rasterbar python bindings') From devil505linux at gmail.com Wed Apr 13 18:56:15 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:56:15 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: pragha-0.94.1-1-i686 * fixing depends Message-ID: <20110413165615.196E41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ae053edf5acd6e5e24f085d1fbd1e7405a131668 commit ae053edf5acd6e5e24f085d1fbd1e7405a131668 Author: Devil505 Date: Wed Apr 13 18:56:06 2011 +0200 pragha-0.94.1-1-i686 * fixing depends diff --git a/source/xapps-extra/pragha/FrugalBuild b/source/xapps-extra/pragha/FrugalBuild index 8092809..5c339ac 100644 --- a/source/xapps-extra/pragha/FrugalBuild +++ b/source/xapps-extra/pragha/FrugalBuild @@ -5,7 +5,7 @@ pkgname=pragha pkgver=0.94.1 pkgrel=1 pkgdesc="Pragha is is a lightweight GTK+ music manager. It is written completely in C and GTK+. This it is a fork of Consonance Music Manager." -depends=('gstreamer' 'sqlite3' 'taglib' 'libnotify' 'libcdio' 'curl') +depends=('gtk+2' 'gstreamer' 'sqlite3' 'taglib' 'libnotify' 'libcdio' 'curl') _F_googlecode_ext=".tar.bz2" _F_googlecode_dirname="dissonance" _F_gnome_iconcache="y" From devil505linux at gmail.com Wed Apr 13 18:59:29 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 18:59:29 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: jpilot-1.8.1-1-i686 * added intltool to makdepends() Message-ID: <20110413165929.0A7591358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10c162bbc316378971c921fd0963adfa05cfdce5 commit 10c162bbc316378971c921fd0963adfa05cfdce5 Author: Devil505 Date: Wed Apr 13 18:59:06 2011 +0200 jpilot-1.8.1-1-i686 * added intltool to makdepends() diff --git a/source/xapps-extra/jpilot/FrugalBuild b/source/xapps-extra/jpilot/FrugalBuild index 1c091fc..6b054e3 100644 --- a/source/xapps-extra/jpilot/FrugalBuild +++ b/source/xapps-extra/jpilot/FrugalBuild @@ -6,7 +6,7 @@ pkgver=1.8.1 pkgrel=1 pkgdesc="JPilot is a desktop organizer for PalmOS devices." url="http://www.jpilot.org/" -makedepends=('perl-xml-parser') +makedepends=('intltool' 'perl-xml-parser') depends=('pilot-link' 'gtk+2>=2.20.0-2') groups=('xapps-extra') archs=('i686' 'x86_64') From devil505linux at gmail.com Wed Apr 13 19:06:04 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 19:06:04 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: wine-1.2.3-1-i686 * version bump Message-ID: <20110413170604.8E8921358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6589518b0b8693cb212c8ddf01c94acc5131659c commit 6589518b0b8693cb212c8ddf01c94acc5131659c Author: Devil505 Date: Wed Apr 13 19:05:47 2011 +0200 wine-1.2.3-1-i686 * version bump diff --git a/source/xapps-extra/wine/FrugalBuild b/source/xapps-extra/wine/FrugalBuild index 6557fbd..1a586c3 100644 --- a/source/xapps-extra/wine/FrugalBuild +++ b/source/xapps-extra/wine/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=wine -pkgver=1.2.2 +pkgver=1.2.3 _geckover=1.0.0 pkgrel=1 pkgdesc="An Open Source implementation of the Windows API on top of X and Unix" @@ -37,7 +37,7 @@ build() Frcd2 } -sha1sums=('8b37c8e0230dd6a665d310054f4e36dcbdab7330' \ +sha1sums=('072184c492cc9d137138407732de3bb62ba6c091' \ 'afa22c52bca4ca77dcb9edb3c9936eb23793de01' \ 'f6a216de34aaa5e5388aae742e999f43f5d251f7' \ 'd014c926facb1cf4a2f025d6b92e5a0b25a19f3e' \ From devil505linux at gmail.com Wed Apr 13 19:06:27 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 19:06:27 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gtk-gnutella-0.96.9-1-i686 * version bump Message-ID: <20110413170627.9DD211358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2851c3114c795d59e93c0d5f31f686d173491c55 commit 2851c3114c795d59e93c0d5f31f686d173491c55 Author: Devil505 Date: Wed Apr 13 19:06:11 2011 +0200 gtk-gnutella-0.96.9-1-i686 * version bump diff --git a/source/xapps-extra/gtk-gnutella/FrugalBuild b/source/xapps-extra/gtk-gnutella/FrugalBuild index e616d5a..2cbc25c 100644 --- a/source/xapps-extra/gtk-gnutella/FrugalBuild +++ b/source/xapps-extra/gtk-gnutella/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: geekitus pkgname=gtk-gnutella -pkgver=0.96.8 -pkgrel=2 +pkgver=0.96.9 +pkgrel=1 pkgdesc="Gtk-Gnutella is a clone of Gnutella" depends=('gtk+2>=2.20.1' 'glib2' 'libxml2>=2.7.8' 'freetype2' 'libxau>=1.0.4-1' 'libxdmcp' 'dbus>=1.2.14-1' 'gnutls' 'libgcrypt' 'libxdamage>=1.1.1-3' 'libxext>=1.0.5-3') archs=('i686' 'x86_64') @@ -13,7 +13,7 @@ replaces=('apollon') options=('scriptlet') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -sha1sums=('f284aecfc9c0525ecf803c505e8bbd13c1b5735b') +sha1sums=('4b9254a3d5152377ce65acf09d858c2b0bb4ca50') build() { From devil505linux at gmail.com Wed Apr 13 20:41:20 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 20:41:20 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libpipeline-1.2.0-1-i686 * new package Message-ID: <20110413184120.3AA2A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=54055e2d924fc74e0d7ae20d16f500e5e512c4ba commit 54055e2d924fc74e0d7ae20d16f500e5e512c4ba Author: Devil505 Date: Wed Apr 13 20:40:52 2011 +0200 libpipeline-1.2.0-1-i686 * new package diff --git a/source/base/libpipeline/FrugalBuild b/source/base/libpipeline/FrugalBuild new file mode 100644 index 0000000..8355230 --- /dev/null +++ b/source/base/libpipeline/FrugalBuild @@ -0,0 +1,15 @@ +# Compiling Time: 0.05 SBU +# Maintainer: Devil505 + +pkgname=libpipeline +pkgver=1.2.0 +pkgrel=1 +pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way" +url="http://libpipeline.nongnu.org/" +depends=('glibc') +groups=('base') +archs=('i686' 'x86_64' 'ppc' 'arm') +up2date="Flasttar http://download.savannah.gnu.org/releases/$pkgname/" +source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('85638517d393c98465f7693f02afb4d02ed0f959') +# optimization OK From lorddarthfener at gmail.com Wed Apr 13 20:55:16 2011 From: lorddarthfener at gmail.com (Melko) Date: Wed, 13 Apr 2011 20:55:16 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libsysactivity-0.6.1-1-i686 Message-ID: <20110413185516.67F431358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cf2fc1105bde56d6b5f87621a02ad2d1f0fc07c6 commit cf2fc1105bde56d6b5f87621a02ad2d1f0fc07c6 Author: Melko Date: Wed Apr 13 20:49:47 2011 +0200 libsysactivity-0.6.1-1-i686 * version bump diff --git a/source/lib-extra/libsysactivity/FrugalBuild b/source/lib-extra/libsysactivity/FrugalBuild index ed758d8..b4c2aa2 100644 --- a/source/lib-extra/libsysactivity/FrugalBuild +++ b/source/lib-extra/libsysactivity/FrugalBuild @@ -1,15 +1,15 @@ -# Compiling Time: 0.03 SBU +# Compiling Time: 0.02 SBU # Maintainer: Melko # Contributor: centuri0 pkgname=libsysactivity -pkgver=0.6.0 +pkgver=0.6.1 pkgrel=1 pkgdesc="A lightweight library that retrieves statistics of the system's activity." depends=('glibc') groups=(lib-extra) archs=('i686' 'x86_64') -sha1sums=('585adee029d51f1090e920293c4097a45714a037') +sha1sums=('fe64aa270f7b08ff9df3e7ca460faf214a0b07bb') Finclude sourceforge cmake build() { export LDFLAGS="" From achevaux at gmail.com Wed Apr 13 21:02:18 2011 From: achevaux at gmail.com (centuri0) Date: Wed, 13 Apr 2011 21:02:18 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: clementine-0.7.1-3-i686 Message-ID: <20110413190218.11F3D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=95115e582ca661fa525c58dd0bfe99d6971ecad1 commit 95115e582ca661fa525c58dd0bfe99d6971ecad1 Author: centuri0 Date: Wed Apr 13 21:02:00 2011 +0200 clementine-0.7.1-3-i686 * version bump diff --git a/source/xapps-extra/clementine/FrugalBuild b/source/xapps-extra/clementine/FrugalBuild index 4aaa3a8..51e8e71 100644 --- a/source/xapps-extra/clementine/FrugalBuild +++ b/source/xapps-extra/clementine/FrugalBuild @@ -1,9 +1,9 @@ -# Compiling Time: 2.44 SBU +# Compiling Time: 2.38 SBU # Maintainer: exceed # Contributor: centuri0 pkgname=clementine -pkgver=0.7 +pkgver=0.7.1 pkgrel=3 pkgdesc="Clementine is a modern music player and library organiser. Port of Amarok 1.4" makedepends=('qt4-linguist' 'boost') @@ -13,6 +13,6 @@ _F_cd_path="$pkgname-$pkgver" Finclude googlecode cmake groups=(xapps-extra) archs=('i686' 'x86_64') -sha1sums=('496bb012e727d02320f294ebad9bf864a01b38f7') +sha1sums=('8b2025b8876f9f3fe33ef5001e0621f3a5d0f142') # optimization OK From devil505linux at gmail.com Wed Apr 13 21:05:00 2011 From: devil505linux at gmail.com (Devil505) Date: Wed, 13 Apr 2011 21:05:00 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: man-db-2.6.0.2-1-i686 * version bump Message-ID: <20110413190500.7F35F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3a93ac7686035961d6c7f9c16518b851aa09c162 commit 3a93ac7686035961d6c7f9c16518b851aa09c162 Author: Devil505 Date: Wed Apr 13 21:04:27 2011 +0200 man-db-2.6.0.2-1-i686 * version bump diff --git a/source/base/man-db/FrugalBuild b/source/base/man-db/FrugalBuild index 26416be..ac1d199 100644 --- a/source/base/man-db/FrugalBuild +++ b/source/base/man-db/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Devil505 pkgname=man-db -pkgver=2.5.9 +pkgver=2.6.0.2 pkgrel=1 pkgdesc="A utility for reading man pages" url="http://www.nongnu.org/man-db/" -depends=('bash' 'gdbm' 'zlib' 'groff' 'less') +depends=('bash' 'gdbm' 'zlib' 'groff' 'less' 'libpipeline') replaces=('man') provides=('man') conflicts=('man') @@ -17,7 +17,7 @@ up2date="Flasttar http://download.savannah.gnu.org/releases/man-db/" source=(http://savannah.nongnu.org/download/man-db/$pkgname-$pkgver.tar.gz \ man.sh man-colors.sh README.Frugalware \ convert-mans man-db.cron.daily) -sha1sums=('e307ec4c440b82c20c9c20984852046d01426333' \ +sha1sums=('864e79e9369f993bfce0934132d41f29a687a6f4' \ '33ed8d61d09f8711176fd18b7ae4e3a2d3354cf6' \ 'b51fd2d450c7a0982e605e74010256a40a3fa05e' \ '3a1e22acd8931537d5c2694a536913c02e0d448e' \ From elentir at frugalware.org Wed Apr 13 21:11:35 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 21:11:35 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: grisbi-0.8.4-1-x86_64 Message-ID: <20110413191135.039CA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3d99f947f61d6c6766731aeb1f9674c279510601 commit 3d99f947f61d6c6766731aeb1f9674c279510601 Author: Elentir Date: Wed Apr 13 21:10:00 2011 +0200 grisbi-0.8.4-1-x86_64 * version bump * change m8r diff --git a/source/xapps-extra/grisbi/FrugalBuild b/source/xapps-extra/grisbi/FrugalBuild index 76c8b06..e103485 100644 --- a/source/xapps-extra/grisbi/FrugalBuild +++ b/source/xapps-extra/grisbi/FrugalBuild @@ -1,10 +1,10 @@ # Compiling Time: 0.4 SBU +# Maintainer: Elentir # Contributor: Tuxbubling -# Maintainer: voroskoi pkgname=grisbi -pkgver=0.6.0 -pkgrel=3 +pkgver=0.8.4 +pkgrel=1 pkgdesc="Grisbi is a personnal accounting application." _F_sourceforge_ext=.tar.bz2 _F_gnome_desktop="y" @@ -12,9 +12,10 @@ _F_gnome_iconcache="y" Finclude sourceforge gnome-scriptlet url="http://www.grisbi.org" up2date="lynx -dump $url/download.en.html|grep http.*tar |sed -ne 's/.*-\(.*\).t.*/\1/;1p'" -depends=('gtk+2>=2.20.0-2' 'libxml2>=2.7.8') +depends=('gtk+2-libs' 'libxml2>=2.7.8') +makedepends=('intltool' 'gtk+2') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('d76973eaa068827d0239b2a6d7c411f78ae743fb') +sha1sums=('3823a435cdf21883538890f1b57040ea9b6c43d9') # optimization OK From bouleetbil at frogdev.info Wed Apr 13 22:06:33 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 13 Apr 2011 22:06:33 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnucash-2.4.5-1-x86_64 *version bump *switch to webkit support (gtkhtml is broken) Message-ID: <20110413200633.E13DB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=061387898bf28b09fd08a0eeb302ca5c99043808 commit 061387898bf28b09fd08a0eeb302ca5c99043808 Author: bouleetbil Date: Wed Apr 13 22:05:28 2011 +0200 gnucash-2.4.5-1-x86_64 *version bump *switch to webkit support (gtkhtml is broken) diff --git a/source/gnome-extra/gnucash/FrugalBuild b/source/gnome-extra/gnucash/FrugalBuild index 48729b8..3c3d195 100644 --- a/source/gnome-extra/gnucash/FrugalBuild +++ b/source/gnome-extra/gnucash/FrugalBuild @@ -2,15 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=gnucash -pkgver=2.2.9 -pkgrel=5 +pkgver=2.4.5 +pkgrel=1 pkgdesc="GnuCash is an application to keep track of your finances." url="http://www.gnucash.org/" depends=('yelp' 'libgnomeprintui' 'g-wrap>=1.9.9' 'libofx' 'libgsf-gnome' \ - 'aqbanking>=3.7.2' 'slib>=3a3-2' 'gtkhtml' 'goffice>=0.8.14' 'dbus-glib' \ + 'aqbanking>=3.7.2' 'slib>=3a3-2' 'webkit' 'goffice>=0.8.14' 'dbus-glib' \ 'libgnomeprint' 'libgnomeprintui') makedepends=('intltool' 'postgresql>=8.4.3-2') -options=('force') groups=('gnome-extra') archs=('i686' 'x86_64') license=('GPL-2') @@ -32,11 +31,9 @@ _F_gnome_schemas=('/etc/gconf/schemas/apps_gnucash_dialog_business_common.schema _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" -Finclude gnome gnome-scriptlet -up2date=("lynx -dump http://www.gnucash.org/pub/gnucash/sources/stable/ | grep gnucash | grep -v gnucash-docs| Flasttar") -source=(http://www.gnucash.org/pub/gnucash/sources/stable/$pkgname-$pkgver.tar.gz goffice_0-8_support.patch) +Finclude sourceforge gnome-scriptlet unset MAKEFLAGS -sha1sums=('8f63c67fcceaae93ceb8827143cc6a470e3a096a' \ - '6421fdb0f184987972d7f92671426ff18e09a390') +sha1sums=('3a008ca6f7381daeac4a1bb1b14aff0ed17ceba8') +Fconfopts="$Fconfopts --with-html-engine=webkit --disable-dbi" # optimization OK From bouleetbil at frogdev.info Wed Apr 13 22:11:58 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 13 Apr 2011 22:11:58 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: gnucash-2.4.5-1-x86_64 *forgot to remove useless patch Message-ID: <20110413201158.505AE1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b48b1d9eeccf9d5a7b25b955ccebcb483dfa10ce commit b48b1d9eeccf9d5a7b25b955ccebcb483dfa10ce Author: bouleetbil Date: Wed Apr 13 22:11:15 2011 +0200 gnucash-2.4.5-1-x86_64 *forgot to remove useless patch diff --git a/source/gnome-extra/gnucash/gnucash-2.0.5-gtk_html_print.diff b/source/gnome-extra/gnucash/gnucash-2.0.5-gtk_html_print.diff deleted file mode 100644 index 67fa1fa..0000000 --- a/source/gnome-extra/gnucash/gnucash-2.0.5-gtk_html_print.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- src/gnome-utils/gnc-html.c.orig Tue Feb 20 23:18:48 2007 -+++ src/gnome-utils/gnc-html.c Tue Feb 20 23:18:38 2007 -@@ -1325,7 +1325,7 @@ - return; - } - -- gtk_html_print(GTK_HTML(html->html), ps->context); -+ gtk_html_print_page(GTK_HTML(html->html), ps->context); - gnc_print_session_done(ps); - } - From elentir at frugalware.org Wed Apr 13 22:13:24 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 22:13:24 +0200 (CEST) Subject: [Frugalware-git] fwife: select-basic: fix packages again Message-ID: <20110413201324.EB6BC1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=f79bd5f5b25199133b3127e7958b00f068dac2d1 commit f79bd5f5b25199133b3127e7958b00f068dac2d1 Author: Elentir Date: Wed Apr 13 22:12:56 2011 +0200 select-basic: fix packages again diff --git a/src/plugins/select-basic.c b/src/plugins/select-basic.c index c9bce6a..2594479 100644 --- a/src/plugins/select-basic.c +++ b/src/plugins/select-basic.c @@ -173,21 +173,55 @@ void configure_desktop_basic(void) /* Disable lib in basic mode - lib used are just add as dependencies */ selectcat("lib", 0); - selectcat("xlib", 0); /* Disable devel as well in this mode */ selectcat("devel", 0); /* Disable some xapps as well */ - selectfile("xapps", "geeqie", 0); - selectfile("xapps", "qt4-designer", 0); - selectfile("xapps", "firefox", 0); - selectfile("xapps", "thunderbird", 0); - selectfile("apps", "attica", 0); - selectfile("apps", "qt-data", 0); - selectfile("apps", "soprano", 0); - selectfile("xapps", "mplayer", 0); - selectfile("xapps", "akonadi", 0); + selectallfiles("xapps", NULL, 0); + selectallfiles("apps", NULL, 0); + selectallfiles("xlib", NULL, 0); + + selectfile("xapps", "dvdauthor", 1); + selectfile("xapps", "emacs", 1); + selectfile("xapps", "gfpm", 1); + selectfile("xapps", "gnetconfig", 1); + selectfile("xapps", "gnokii", 1); + selectfile("xapps", "gvfs", 1); + selectfile("xapps", "icedtea-web", 1); + selectfile("xapps", "libreoffice", 1); + selectfile("xapps", "vte", 1); + selectfile("xapps", "system-config-printer", 1); + selectfile("xapps", "startup-notification", 1); + selectfile("xapps", "splashy", 1); + selectfile("xapps", "xpdf", 1); + selectfile("xapps", "udisks", 1); + + selectfile("apps", "bash-completion", 1); + selectfile("apps", "bc", 1); + selectfile("apps", "bluez", 1); + selectfile("apps", "cdrtools", 1); + selectfile("apps", "sudo", 1); + selectfile("apps", "irqbalance", 1); + selectfile("apps", "logrotate", 1); + selectfile("apps", "man-pages", 1); + selectfile("apps", "nano", 1); + selectfile("apps", "pm-utils", 1); + selectfile("apps", "pmount", 1); + selectfile("apps", "recode", 1); + selectfile("apps", "unarj", 1); + selectfile("apps", "unzip", 1); + selectfile("apps", "unarj", 1); + selectfile("apps", "vim", 1); + selectfile("apps", "upower", 1); + selectfile("apps", "memtest86+", 1); + + selectfile("network", "apache", 0); + selectfile("network", "samba", 0); + selectfile("network", "procmail", 0); + selectfile("network", "postfix", 0); + + selectfile("xlib", "flashplugin", 1); if(strcmp(lang ,"en")) { ptr = g_strdup_printf("firefox-%s", lang); @@ -218,11 +252,10 @@ void configure_desktop_basic(void) selectcat("kde-extra", 1); selectfile("kde-extra", "rekonq", 1); selectfile("kde-extra", "krita", 1); - selectfile("xapps", "gftp", 0); - selectfile("xapps", "pidgin", 0); - selectfile("xapps", "xchat", 0); + selectfile("kde-extra", "kmymoney2", 1); selectfile("apps", "attica", 1); selectfile("xapps", "akonadi", 1); + selectfile("xapps-extra", "qtparted", 1); } else if(!strcmp(seldesk, _("GNOME"))) { @@ -233,18 +266,32 @@ void configure_desktop_basic(void) selectfile("gnome-extra", "gnucash", 1); selectfile("xapps-extra", "transmission", 1); selectfile("xapps", "gimp", 1); - selectfile("xapps", "pidgin", 0); + selectfile("xapps", "gftp", 1); + selectfile("xapps", "xchat", 1); + selectfile("xmultimedia", "phonon", 0); + selectfile("xapps-extra", "gparted", 1); } else if(!strcmp(seldesk, _("XFCE"))) { selectcat("xfce4", 1); selectcat("xfce4-extra", 1); selectallfiles("xfce4-extra", NULL, 1); + selectfile("xfce4-extra", "xfce4-xmms-plugin", 0); + selectfile("xfce4-extra", "xfce4-xfapplet-plugin", 0); + selectfile("xfce4-extra", "xfce4-indicator-plugin", 0); + selectfile("xfce4-extra", "xfbib", 0); selectfile("xapps-extra", "midori", 1); selectfile("xapps-extra", "xarchiver", 1); selectfile("xapps-extra", "claws-mail", 1); selectfile("xapps", "gimp", 1); + selectfile("xapps", "gftp", 1); + selectfile("xapps", "pidgin", 1); selectfile("gnome", "gksu-frugalware", 1); + selectfile("xapps", "xchat", 1); + selectfile("xmultimedia", "phonon", 0); + selectfile("xapps-extra", "epdfview", 1); + selectfile("xapps-extra", "gparted", 1); + selectfile("xapps-extra", "grisbi", 1); } else if(!strcmp(seldesk, _("LXDE"))) { @@ -255,7 +302,15 @@ void configure_desktop_basic(void) selectfile("xapps-extra", "claws-mail", 1); selectfile("xapps-extra", "xarchiver", 1); selectfile("xapps", "gimp", 1); + selectfile("xapps", "gftp", 1); + selectfile("xapps", "pidgin", 1); selectfile("gnome", "gksu-frugalware", 1); + selectfile("xapps", "xchat", 1); + selectfile("xmultimedia", "phonon", 0); + selectfile("xapps-extra", "epdfview", 1); + selectfile("xapps-extra", "gparted", 1); + selectfile("xapps-extra", "grisbi", 1); + selectfile("xapps-extra", "recorder", 1); } free(lang); From bouleetbil at frogdev.info Wed Apr 13 22:13:43 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 13 Apr 2011 22:13:43 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: balsa-2.4.9-3-x86_64 *switch to webkit support instead gtkhtml Message-ID: <20110413201343.A0A241358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7b0ced7e2ee666445cd93f0be48a50a22173c8ec commit 7b0ced7e2ee666445cd93f0be48a50a22173c8ec Author: bouleetbil Date: Wed Apr 13 22:12:53 2011 +0200 balsa-2.4.9-3-x86_64 *switch to webkit support instead gtkhtml diff --git a/source/gnome-extra/balsa/FrugalBuild b/source/gnome-extra/balsa/FrugalBuild index 6f7c70a..7c29c72 100644 --- a/source/gnome-extra/balsa/FrugalBuild +++ b/source/gnome-extra/balsa/FrugalBuild @@ -3,14 +3,14 @@ pkgname=balsa pkgver=2.4.9 -pkgrel=2 +pkgrel=3 pkgdesc="Balsa is an e-mail client for GNOME" url="http://pawsa.fedorapeople.org/balsa" up2date="Flasttar http://pawsa.fedorapeople.org/balsa/download.html" source=($url/$pkgname-$pkgver.tar.bz2) options=('scriptlet') depends=('libesmtp' 'gmime' 'aspell' 'libbonobo' \ - 'libgnome' 'libgnomeui>=2.24.4' 'gnome-vfs' 'gtkhtml>=3.30.0-2' 'gpgme' 'sqlite3' 'openssl>=1.0.0' 'gtkspell' \ + 'libgnome' 'libgnomeui>=2.24.4' 'gnome-vfs' 'webkit' 'gpgme' 'sqlite3' 'openssl>=1.0.0' 'gtkspell' \ 'libsm' 'gnome-keyring' 'popt' 'esd' 'pango>=1.28.0-2' 'libart_lgpl' 'atk' 'freetype2' \ 'libxau>=1.0.4' 'libxdmcp' 'libnotify>=0.7' 'libglade>=2.6.4-2' 'libjpeg>=8a' 'libxdamage' 'gtkspell' \ 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libgcc' 'gtksourceview>=2.6.2-2' 'unique1' \ @@ -24,13 +24,6 @@ archs=('i686' 'x86_64' 'ppc') sha1sums=('0cda3106da2db6e544ae3954bef1db3e6f40024a') Fconfopts="${Fconfopts[@]} --with-ssl --with-gtkprint --with-gpgme=gpgme-config \ --with-sqlite=sqlite3 --with-gtkspell --with-gtksourceview=yes --with-unique \ - --with-nm=no --with-rubrica --with-libnotify=yes" - -build() { - Fcd - Fsed "libgtkhtml-3.14" "libgtkhtml-3.15" configure - Fbuild - Fbuild_gnome_scriptlet -} + --with-nm=no --with-rubrica --with-libnotify=yes --with-html-widget=webkit" # optimization OK From elentir at frugalware.org Wed Apr 13 22:40:39 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 22:40:39 +0200 (CEST) Subject: [Frugalware-git] fwife: updates for 0.8 Message-ID: <20110413204039.B5DE61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=9f21fd4abdfbdda741c577bc383712e8a394c76a commit 9f21fd4abdfbdda741c577bc383712e8a394c76a Author: Elentir Date: Wed Apr 13 22:40:22 2011 +0200 updates for 0.8 diff --git a/ChangeLog b/ChangeLog index e1e3299..470054d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +0.8 - more coherent set of packages in basic mode + - remove e17 choice in basic mode + - can add an user to /etc/sudoers if sudo available + - ext4 is now the default when formatting a partition + - some others small fixes 0.7 - package selection plugin now have 3 modes (basic, intermediate, expert) - support of installation from frugalware cds/dvds - add a button to set mountpoint when partitionning disks instead of editable cells diff --git a/README b/README index 7dd8edd..bb13874 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ Fwife : Frugalware Installer Frontend Readme --> Fwife 0.7 +-> Fwife 0.8 -> Compiling and testing : diff --git a/configure.ac b/configure.ac index 3c22f28..cb2269d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ([2.63]) -AC_INIT([Fwife], 0.7, [elentir at frugalware.org], fwife) +AC_INIT([Fwife], 0.8, [elentir at frugalware.org], fwife) AC_CONFIG_SRCDIR([src/fwife.c]) AC_LANG(C) AC_CONFIG_HEADERS([config.h]) From elentir at frugalware.org Wed Apr 13 22:48:39 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 22:48:39 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fwife-0.8-1-x86_64 Message-ID: <20110413204839.B867A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8c8652577cb9e79b04f5e7d3fc7e5ac328bf63ff commit 8c8652577cb9e79b04f5e7d3fc7e5ac328bf63ff Author: Elentir Date: Wed Apr 13 22:47:44 2011 +0200 fwife-0.8-1-x86_64 * version bump diff --git a/source/xapps-extra/fwife/FrugalBuild b/source/xapps-extra/fwife/FrugalBuild index ff35c10..4cf6dab 100644 --- a/source/xapps-extra/fwife/FrugalBuild +++ b/source/xapps-extra/fwife/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Elentir pkgname=fwife -pkgver=0.7 +pkgver=0.8 pkgrel=1 pkgdesc="Gtk GUI Installer for Frugalware" url="http://ftp.frugalware.org/pub/other/$pkgname/" @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') source=($url/$pkgname-$pkgver.tar.gz) up2date="Flasttar $url" -sha1sums=('5ed3302d02e69789b7869c533782a22b214baec7') +sha1sums=('04298551955b12f08b701cb0449b7cc85c8693ed') unset MAKEFLAGS subpkgs=("$pkgname-minimal") @@ -23,7 +23,7 @@ subarchs=('i686 x86_64') build() { Fbuild PKG_CONFIG_PATH="/usr/lib/pango-fwife/pkgconfig:/usr/lib/cairo-fwife/pkgconfig\ -:/usr/lib/gtk-fwife/pkgconfig" CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" +:/usr/lib/gtk-fwife/pkgconfig:/usr/lib/gdk-pixbuf2-fwife/pkgconfig" CFLAGS="`echo $CFLAGS |sed 's|-O2|-Os|g'`" Fmkdir fwife-minimal/ Fmv usr fwife-minimal Fmkdir usr/share/ From elentir at frugalware.org Wed Apr 13 23:48:57 2011 From: elentir at frugalware.org (Elentir) Date: Wed, 13 Apr 2011 23:48:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: libdrm-2.4.23-1-arm Message-ID: <20110413214857.1BB3F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d9b8a6d91ad2a83294350ce2a41fcbd4b26edc2d commit d9b8a6d91ad2a83294350ce2a41fcbd4b26edc2d Author: Elentir Date: Wed Apr 13 21:18:56 2011 +0000 libdrm-2.4.23-1-arm * add arm to archs diff --git a/source/x11/libdrm/FrugalBuild b/source/x11/libdrm/FrugalBuild index 96487db..d1c4dc3 100644 --- a/source/x11/libdrm/FrugalBuild +++ b/source/x11/libdrm/FrugalBuild @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="X.Org Userspace interface to kernel DRM services" url="http://xorg.freedesktop.org/" depends=('libpthread-stubs' 'udev') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') groups=('x11' 'xorg-core' 'xorg-libs') if Fuse $USE_DEVEL; then pkgver=$pkgver.g2d9990c From vmiklos at frugalware.org Wed Apr 13 23:49:57 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 13 Apr 2011 23:49:57 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: bash-4.2_008-1-i686 Message-ID: <20110413214957.A93751358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0c134f20e1b6151f4cbf556b85899dbb2b2cb359 commit 0c134f20e1b6151f4cbf556b85899dbb2b2cb359 Author: Miklos Vajna Date: Wed Apr 13 23:35:57 2011 +0200 bash-4.2_008-1-i686 - drop no longer needed install scriptlet diff --git a/source/base/bash/bash.install b/source/base/bash/bash.install deleted file mode 100644 index 3fefee6..0000000 --- a/source/base/bash/bash.install +++ /dev/null @@ -1,9 +0,0 @@ -post_upgrade() -{ - # fixes #586, to be removed after 0.5 - sed -i 's/ $//' /etc/shells -} - -op=$1 -shift -$op $* From elentir at frugalware.org Thu Apr 14 00:06:22 2011 From: elentir at frugalware.org (Elentir) Date: Thu, 14 Apr 2011 00:06:22 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: makedepend-1.0.3-1-arm Message-ID: <20110413220622.519181358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a9e8b4219ae581ca915781c587f29335c30d45df commit a9e8b4219ae581ca915781c587f29335c30d45df Author: Elentir Date: Wed Apr 13 21:54:24 2011 +0000 makedepend-1.0.3-1-arm * add arm to archs diff --git a/source/x11/makedepend/FrugalBuild b/source/x11/makedepend/FrugalBuild index 374edcf..d76371a 100644 --- a/source/x11/makedepend/FrugalBuild +++ b/source/x11/makedepend/FrugalBuild @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="X.Org makedepend utility" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-util') -archs=('i686' 'x86_64' 'ppc') +archs=('i686' 'x86_64' 'ppc' 'arm') depends=() makedepends=('pkgconfig' 'xproto>=7.0.18') Finclude xorg From vmiklos at frugalware.org Thu Apr 14 00:07:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:07:52 +0200 (CEST) Subject: [Frugalware-git] frugalware: install: create /media and /run Message-ID: <20110413220752.4773D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware.git;a=commitdiff;h=d4b37d6ee115197a98db76482cf6c23f89f5d227 commit d4b37d6ee115197a98db76482cf6c23f89f5d227 Author: Miklos Vajna Date: Wed Apr 13 23:47:44 2011 +0200 install: create /media and /run diff --git a/Makefile b/Makefile index 4c83983..9c6f894 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,8 @@ install: ln -sf ../profile.d/lang.sh $(DESTDIR)/etc/sysconfig/language $(INSTALL) -d $(DESTDIR)/home $(INSTALL) -d $(DESTDIR)/mnt + $(INSTALL) -d $(DESTDIR)/media + $(INSTALL) -d $(DESTDIR)/run $(INSTALL) -d $(DESTDIR)/opt $(INSTALL) -d $(DESTDIR)/proc $(INSTALL) -d -m710 $(DESTDIR)/root From vmiklos at frugalware.org Thu Apr 14 00:07:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:07:52 +0200 (CEST) Subject: [Frugalware-git] frugalware: up to 1.5pre1 Message-ID: <20110413220752.59026BAC005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware.git;a=commitdiff;h=f0e301349cde64f2e471eeb136c389feeb6e9d84 commit f0e301349cde64f2e471eeb136c389feeb6e9d84 Author: Miklos Vajna Date: Wed Apr 13 23:54:03 2011 +0200 up to 1.5pre1 diff --git a/Makefile b/Makefile index 9c6f894..ae754c6 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -VERSION = 1.4 -CODENAME = Nexon +VERSION = 1.5pre1 +CODENAME = Mores FRUGALWARE_LANGS = de hu it SERVICE_LANGS = de hu From vmiklos at frugalware.org Thu Apr 14 00:09:46 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:09:46 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: frugalware-1.5pre1-1-i686 Message-ID: <20110413220946.E77AB1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d8a4a9afc54aeaa1b4eb3aa8e1c494654d6e6f8a commit d8a4a9afc54aeaa1b4eb3aa8e1c494654d6e6f8a Author: Miklos Vajna Date: Wed Apr 13 23:55:50 2011 +0200 frugalware-1.5pre1-1-i686 - version bump diff --git a/source/base/frugalware/FrugalBuild b/source/base/frugalware/FrugalBuild index b48d7c6..733ffff 100644 --- a/source/base/frugalware/FrugalBuild +++ b/source/base/frugalware/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Miklos Vajna pkgname=frugalware -pkgver=1.4 -pkgrel=2 +pkgver=1.5pre1 +pkgrel=1 pkgdesc="Basic Frugalware Linux filesystem package" url="http://ftp.frugalware.org/pub/other/frugalware/" depends=() @@ -15,9 +15,3 @@ backup=(etc/{profile.d/lang.sh,issue.net,ld.so.conf,nsswitch.conf,securetty,term up2date="Flasttar $url" source=($url/$pkgname-$pkgver.tar.gz) signatures=($source.asc) - -build() -{ - Fbuild - Fmkdir /media /run -} From vmiklos at frugalware.org Thu Apr 14 00:37:40 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:37:40 +0200 (CEST) Subject: [Frugalware-git] setup: util-linux-ng -> util-linux Message-ID: <20110413223740.91C3A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=2572219e27db782d72bedabe9515d3af4dcc8db0 commit 2572219e27db782d72bedabe9515d3af4dcc8db0 Author: Miklos Vajna Date: Thu Apr 14 00:23:50 2011 +0200 util-linux-ng -> util-linux diff --git a/Makefile b/Makefile index 45b37a7..517bccc 100644 --- a/Makefile +++ b/Makefile @@ -541,12 +541,12 @@ eject: $(UNPACK) cp -a $(BDIR)/usr/bin/eject eject/bin/ -util-linux-ng: +util-linux: $(CLEANUP) - mkdir -p util-linux-ng/{sbin,usr/bin,lib} + mkdir -p util-linux/{sbin,usr/bin,lib} $(UNPACK) - cp -a $(BDIR)/sbin/{cfdisk,fdisk,mkswap} util-linux-ng/sbin/ - cp -a $(BDIR)/usr/bin/setterm util-linux-ng/usr/bin/ + cp -a $(BDIR)/sbin/{cfdisk,fdisk,mkswap} util-linux/sbin/ + cp -a $(BDIR)/usr/bin/setterm util-linux/usr/bin/ libblkid: $(CLEANUP) diff --git a/configure b/configure index afaee3c..0ede3db 100755 --- a/configure +++ b/configure @@ -8,7 +8,7 @@ libs = [] packages = ['parted', 'pacman-g2', 'bash', 'kernel', 'busybox', 'dialog', 'e2fsprogs', 'eject', 'frugalware', 'glibc', 'kbd', 'module-init-tools', 'ncurses', 'netkit-base', 'udev', - 'util-linux-ng', 'mdadm', 'xfsprogs', 'ppp', 'rp-pppoe', 'glib2', + 'util-linux', 'mdadm', 'xfsprogs', 'ppp', 'rp-pppoe', 'glib2', 'bzip2', 'libarchive', 'zlib', 'frugalwareutils', 'lzma', 'wireless_tools', 'dropbear', 'bastet', 'readline', 'shadow', From vmiklos at frugalware.org Thu Apr 14 00:48:52 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:48:52 +0200 (CEST) Subject: [Frugalware-git] setup: formatdisk: default to ext4 Message-ID: <20110413224852.9E73D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=2ffda47fa88744d198ebd939163959cfd128682e commit 2ffda47fa88744d198ebd939163959cfd128682e Author: Miklos Vajna Date: Thu Apr 14 00:34:57 2011 +0200 formatdisk: default to ext4 diff --git a/src/plugins/formatdisk.c b/src/plugins/formatdisk.c index b4f385c..e8a77c1 100644 --- a/src/plugins/formatdisk.c +++ b/src/plugins/formatdisk.c @@ -233,7 +233,7 @@ char *selfs(char *dev) { "ext2", _("Standard Linux ext2fs filesystem"), "ext3", _("Journaling version of the ext2 filesystem"), - "ext4", _("The evolution of the ext3 filesystem (EXPERIMENTAL!)"), + "ext4", _("The evolution of the ext3 filesystem"), #ifndef ARCH_PPC "reiserfs", _("Hans Reiser's journaling filesystem"), #endif @@ -243,7 +243,7 @@ char *selfs(char *dev) dialog_vars.backtitle=gen_backtitle(_("Formatting partitions")); dlg_put_backtitle(); dlg_clear(); - dialog_vars.default_item=strdup("ext3"); + dialog_vars.default_item=strdup("ext4"); if(fw_menu(g_strdup_printf(_("Selecting filesystem for %s"), dev), g_strdup_printf(_("Please select the type of filesystem to " "use for %s."), dev), 0, 0, 0, fsnum, fss) == -1) From vmiklos at frugalware.org Thu Apr 14 00:59:28 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 00:59:28 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: shadow-4.1.4.3-4-i686 Message-ID: <20110413225928.A541A1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a7ddaf8978609775b8a00a27923452b69b292508 commit a7ddaf8978609775b8a00a27923452b69b292508 Author: Miklos Vajna Date: Thu Apr 14 00:45:07 2011 +0200 shadow-4.1.4.3-4-i686 - add missing pulse-access group - if new users are added there by default, then we need it here as well diff --git a/source/base/shadow/FrugalBuild b/source/base/shadow/FrugalBuild index bd9bbee..ad84831 100644 --- a/source/base/shadow/FrugalBuild +++ b/source/base/shadow/FrugalBuild @@ -3,7 +3,7 @@ pkgname=shadow pkgver=4.1.4.3 -pkgrel=3 +pkgrel=4 pkgdesc="Shadow password file utilities" url="http://pkg-shadow.alioth.debian.org/" pkgurl="ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow" @@ -22,7 +22,7 @@ source=($pkgurl/shadow-$pkgver.tar.gz \ adduser.conf su.patch env-locale.patch) sha1sums=('f8b71d5c2b817f48bc02739041980a5c646534da' \ '7525113c8537f4b8443077bff781cf6e15f58e90' \ - '56cb4f7e5439c8f4eec8825e73a79ec482aae8de' \ + 'c51cd1f4fb0437a3e3fd71ee6db2b39ce4ede8f1' \ 'e1554d118f582a978b4b14c348c155af957a1368' \ 'a70e741ccea2d2f81b25b8b608a5fc3d3ab83ebe' \ '53169a6779436c95f45f73092c38684c742e13fe' \ diff --git a/source/base/shadow/group b/source/base/shadow/group index 34c34d4..3d489ac 100644 --- a/source/base/shadow/group +++ b/source/base/shadow/group @@ -33,6 +33,7 @@ ftp::50: telnetd::51: tape::52: dialout::53: +pulse-access::58: pop::90:pop nobody::98:nobody nogroup::99: From vmiklos at frugalware.org Thu Apr 14 01:28:53 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 01:28:53 +0200 (CEST) Subject: [Frugalware-git] setup: updates for 1.1.8 Message-ID: <20110413232853.3E6231358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=72f34fe17e5759d3782fcbc6d7ff5c3ef34da2f4 commit 72f34fe17e5759d3782fcbc6d7ff5c3ef34da2f4 Author: Miklos Vajna Date: Thu Apr 14 01:15:05 2011 +0200 updates for 1.1.8 diff --git a/NEWS b/NEWS index 3a428a6..cb86b35 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +1.1.8 - support gdk-pixbuf2 (gui) + - support util-linux + - default fs is now ext4 1.1.7 - support for parted-2.x 1.1.6 - support for xz-compressed fdb files in the offline installer 1.1.5 - ppc fix for usb installer diff --git a/configure b/configure index 0ede3db..5303357 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ elif os.uname()[-1] == 'ppc': packages.extend(['mac-fdisk']) # when releasing a new setup, please update this. -version = "1.1.7" +version = "1.1.8" # parse our options parser = OptionParser(version="configure for Frugalware Setup v%s" % (version)) From vmiklos at frugalware.org Thu Apr 14 01:34:14 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 14 Apr 2011 01:34:14 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: fwsetup-1.1.8-1-i686 Message-ID: <20110413233414.2DA511358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e14354d6e05f24248604b639532a57b59c9b9537 commit e14354d6e05f24248604b639532a57b59c9b9537 Author: Miklos Vajna Date: Thu Apr 14 01:34:04 2011 +0200 fwsetup-1.1.8-1-i686 - version bump diff --git a/source/devel-extra/fwsetup/FrugalBuild b/source/devel-extra/fwsetup/FrugalBuild index b462141..07dd287 100644 --- a/source/devel-extra/fwsetup/FrugalBuild +++ b/source/devel-extra/fwsetup/FrugalBuild @@ -5,14 +5,14 @@ USE_DEVEL=${USE_DEVEL:-"n"} USE_GUI=${USE_GUI:-"y"} pkgname=fwsetup -pkgver=1.1.7 +pkgver=1.1.8 Fuse $USE_DEVEL && pkgver=0.8.8.9.gd348556 pkgrel=1 pkgdesc="Frugalware Setup" url="http://ftp.frugalware.org/pub/other/setup/" depends=() makedepends=('dialog' 'parted>=2.3' 'pacman-g2>=3.5.5' 'module-init-tools' \ - 'frugalware>=1.4rc2' 'busybox>=1.12.1-2' 'frugalwareutils>=0.9.3-5' \ + 'frugalware>=1.5pre1' 'busybox>=1.12.1-2' 'frugalwareutils>=0.9.3-5' \ 'gdb>=7.0.1-2') if [ "$CARCH" != "ppc" ]; then Fconfopts="$Fconfopts --enable-tftp" From devil505linux at gmail.com Thu Apr 14 19:01:12 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 14 Apr 2011 19:01:12 +0200 (CEST) Subject: [Frugalware-git] artwork: * fixing mistake Message-ID: <20110414170112.1DF4E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=5c92be30cc2bb0790966f3175deddccd6b9e0979 commit 5c92be30cc2bb0790966f3175deddccd6b9e0979 Author: Devil505 Date: Thu Apr 14 18:59:43 2011 +0200 * fixing mistake diff --git a/frugalware-icon-theme/Frugalware-RoseDust/index.theme b/frugalware-icon-theme/Frugalware-RoseDust/index.theme index ed634ac..693d81f 100755 --- a/frugalware-icon-theme/Frugalware-RoseDust/index.theme +++ b/frugalware-icon-theme/Frugalware-RoseDust/index.theme @@ -1,6 +1,6 @@ [Icon Theme] Name=Frugalware Rose Dust -Inherits=Frugwlare,frugalware-mono-light,gnome +Inherits=Frugalware,frugalware-mono-light,gnome Comment=Icon theme project with tilish style, by Tiheum; modified (based on original icons) by john007; (mod: Rose Dust) by Zakobox Directories=actions/16,animations/16,apps/16,categories/16,devices/16,mimetypes/16,places/16,status/16,stock/16,actions/22,animations/22,apps/22,categories/22,devices/22,mimetypes/22,places/22,status/22,stock/22,actions/24,animations/24,apps/24,categories/24,devices/24,mimetypes/24,places/24,status/24,stock/24,actions/32,apps/32,categories/32,devices/32,mimetypes/32,places/32,status/32,stock/32,actions/48,apps/48,categories/48,devices/48,mimetypes/48,places/48,status/48,stock/48,actions/scalable,apps/scalable,categories/scalable,devices/scalable,mimetypes/scalable,places/scalable,status/scalable,stock/scalable From devil505linux at gmail.com Thu Apr 14 19:09:39 2011 From: devil505linux at gmail.com (Devil505) Date: Thu, 14 Apr 2011 19:09:39 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating GTK3 theme Message-ID: <20110414170939.B28841358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=95390c81724174f9847fa31f2aea746fce1ad1db commit 95390c81724174f9847fa31f2aea746fce1ad1db Author: Devil505 Date: Thu Apr 14 19:08:36 2011 +0200 * updating GTK3 theme diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/assets/resize-grip.png b/gnome-frugalware/theme/Frugalware/gtk-3.0/assets/resize-grip.png new file mode 100755 index 0000000..0dd576b Binary files /dev/null and b/gnome-frugalware/theme/Frugalware/gtk-3.0/assets/resize-grip.png differ diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/button.css b/gnome-frugalware/theme/Frugalware/gtk-3.0/button.css new file mode 100644 index 0000000..658d7a2 --- /dev/null +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/button.css @@ -0,0 +1,57 @@ +/*********** + * Buttons * + ***********/ +.button { + padding: 1; + + -adwaita-focus-fill-color: alpha (@theme_base_color, 0.35); + -adwaita-focus-border-gradient: -gtk-gradient (linear, + left top, left bottom, + from (alpha (@keyboard_focus_border_a, 0.62)), + to (alpha (@keyboard_focus_border_b, 0.62))); + -adwaita-focus-border-radius: 1; + -adwaita-focus-border-dashes: 0; + -GtkWidget-focus-line-width: 2; + + border-radius: 2; + border-width: 1; + border-color: @button_border; + border-style: solid; + + background-image: -gtk-gradient (linear, + left top, left bottom, + from (@button_gradient_color_a), + to (@button_gradient_color_b)); +} + +.button:hover, +.toolbar.button:hover { + border-color: @button_border; + background-image: -gtk-gradient (linear, + left top, left bottom, + from (@button_hover_gradient_color_a), + to (@button_hover_gradient_color_b)); +} + +.button:active, +.toolbar .button:active, +.button:hover:active, +.toolbar.button:hover:active { + background-image: -gtk-gradient (linear, + left top, left bottom, + from (@button_active_gradient_color_a), + to (alpha (@button_active_gradient_color_b, 0.13))); + border-color: @highlighted_border; +} + +.button:insensitive { + background-image: none; + background-color: @insensitive_bg_color; + color: @insensitive_fg_color; +} + +.button.default { + border-width: 2; + border-color: shade (@button_border, 1.10); +} + diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk-widgets.css b/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk-widgets.css index dd73098..b1b8f0a 100644 --- a/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk-widgets.css +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk-widgets.css @@ -249,7 +249,7 @@ GtkCalendar { * tabs * *****************/ .notebook { - padding: 2; + padding: 0 0 0 0; border-color: @notebook_border; border-style: solid; @@ -258,18 +258,18 @@ GtkCalendar { background-color: @theme_base_color; - -GtkNotebook-tab-overlap: 8; - -GtkNotebook-tab-curvature: 6; + -GtkNotebook-tab-overlap: 0; + -GtkNotebook-tab-curvature: 2; } .notebook tab { - padding: 3 8 0; + padding: 0 0 0 0; background-image: -gtk-gradient (linear, left top, left bottom, from (@notebook_tab_gradient_a), to (@notebook_tab_gradient_b)); - -adwaita-focus-border-radius: 2; + -adwaita-focus-border-radius: 0; } .notebook tab:active { @@ -306,63 +306,6 @@ GtkComboBox.button { color: @internal_element_color; } -/*********** - * Buttons * - ***********/ -.button { - padding: 3; - - -adwaita-focus-fill-color: alpha (@theme_base_color, 0.35); - -adwaita-focus-border-gradient: -gtk-gradient (linear, - left top, left bottom, - from (alpha (@keyboard_focus_border_a, 0.62)), - to (alpha (@keyboard_focus_border_b, 0.62))); - -adwaita-focus-border-radius: 1; - -adwaita-focus-border-dashes: 0; - -GtkWidget-focus-line-width: 2; - - border-radius: 2; - border-width: 1; - border-color: @button_border; - border-style: solid; - - background-image: -gtk-gradient (linear, - left top, left bottom, - from (@button_gradient_color_a), - to (@button_gradient_color_b)); -} - -.button:hover, -.toolbar.button:hover { - border-color: @button_border; - background-image: -gtk-gradient (linear, - left top, left bottom, - from (@button_hover_gradient_color_a), - to (@button_hover_gradient_color_b)); -} - -.button:active, -.toolbar .button:active, -.button:hover:active, -.toolbar.button:hover:active { - background-image: -gtk-gradient (linear, - left top, left bottom, - from (@button_active_gradient_color_a), - to (alpha (@button_active_gradient_color_b, 0.13))); - border-color: @highlighted_border; -} - -.button:insensitive { - background-image: none; - background-color: @insensitive_bg_color; - color: @insensitive_fg_color; -} - -.button.default { - border-width: 2; - border-color: shade (@button_border, 1.10); -} - /************************* * Check and Radio items * *************************/ @@ -506,12 +449,12 @@ GtkScrolledWindow.frame { border-style: solid; border-color: darker (@theme_bg_color); border-width: 1; - border-radius: 3; + border-radius: 0; } GtkViewport, GtkIconView { - border-radius: 3; + border-radius: 0; padding: 0; } diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk.css b/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk.css index 267e3d0..1593876 100644 --- a/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk.css +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/gtk.css @@ -98,6 +98,7 @@ @define-color expander_row_selected_color #acccee; @import url("gtk-widgets.css"); + at import url("button.css"); @import url("entry.css"); @import url("grip.css"); @import url("menu.css"); diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/menu.css b/gnome-frugalware/theme/Frugalware/gtk-3.0/menu.css index 20bbd1a..6e8fa28 100644 --- a/gnome-frugalware/theme/Frugalware/gtk-3.0/menu.css +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/menu.css @@ -37,9 +37,7 @@ .menu { padding: 1; - background-color: alpha (#000, 0.8); - border-style: solid; border-width: 1; border-radius: 6; diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/settings.ini b/gnome-frugalware/theme/Frugalware/gtk-3.0/settings.ini index 6fca69a..d4280ed 100644 --- a/gnome-frugalware/theme/Frugalware/gtk-3.0/settings.ini +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/settings.ini @@ -7,7 +7,7 @@ gtk_color_scheme = "link_color:#08C" gtk_color_scheme = "frame_color:#D1D1D1\ninactive_frame_color:#D1D1D1" # Fix for Chrome gtk_color_scheme = "bg_color_dark:#383838\ntext_color_dark:#FFF" # Dark colors -gtk-icon-sizes = "gtk-button=16,16" # Set icon size for buttons -gtk-button-images = 0 # Disables icons for buttons with text -gtk-toolbar-style = 0 # Disables text in toolbar -gtk-auto-mnemonics = 1 # Disables lines under menu items +gtk-icon-sizes = "gtk-button=16,16" # Set icon size for buttons +gtk-button-images = 0 # Disables icons for buttons with text +gtk-toolbar-style = 0 # Disables text in toolbar +gtk-auto-mnemonics = 1 # Disables lines under menu items diff --git a/gnome-frugalware/theme/Frugalware/gtk-3.0/toolbar.css b/gnome-frugalware/theme/Frugalware/gtk-3.0/toolbar.css index 47c4489..8a1a676 100644 --- a/gnome-frugalware/theme/Frugalware/gtk-3.0/toolbar.css +++ b/gnome-frugalware/theme/Frugalware/gtk-3.0/toolbar.css @@ -30,24 +30,16 @@ background-image: -gtk-gradient (linear, left top, left bottom, - from (@toolbar_gradient_base), - color-stop (0.01, shade (@theme_bg_color, 0.56)), - color-stop (0.02, @toolbar_gradient_base), - color-stop (0.16, @toolbar_gradient_step1), - color-stop (0.90, @toolbar_gradient_step2), - color-stop (0.98, @toolbar_gradient_final), - color-stop (0.99, shade (@theme_bg_color, 0.83)), - to (shade (@theme_bg_color, 0.83))); + from (@bg_color), + color-stop (0.94, shade (@theme_bg_color, 0.88)), + color-stop (0.95, shade (@theme_bg_color, 0.94)), + color-stop (0.97, shade (@theme_bg_color, 0.94)), + color-stop (0.99, shade (@theme_bg_color, 0.60)), + to (shade (@theme_bg_color, 0.60))); border-width: 0; border-radius: 0; - border-style: none; - - padding: 4; - + padding: 1; -GtkWidget-window-dragging: true; - -GtkToolbar-button-relief: 0; - -GtkWidget-separator-width: 1; - -GtkWidget-wide-separators: 1; } .primary-toolbar.toolbar:insensitive { From vmiklos at frugalware.org Fri Apr 15 00:02:05 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 15 Apr 2011 00:02:05 +0200 (CEST) Subject: [Frugalware-git] frugalware-current: TAG 1.5pre1 Message-ID: <20110414220205.B9A0F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a48d511442b4c5ae2b818e850f6b900d35eb5898 commit a48d511442b4c5ae2b818e850f6b900d35eb5898 Author: Miklos Vajna Date: Fri Apr 15 00:01:45 2011 +0200 TAG 1.5pre1 From devil505linux at gmail.com Fri Apr 15 11:47:26 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 15 Apr 2011 11:47:26 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating gnome-shell theme * bouleetbil ^^ Message-ID: <20110415094726.BD93F1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=8ddb9f8295efb5edf34e423291298c6a210f7841 commit 8ddb9f8295efb5edf34e423291298c6a210f7841 Author: Devil505 Date: Fri Apr 15 11:45:37 2011 +0200 * updating gnome-shell theme * bouleetbil ^^ diff --git a/gnome-shell/theme/add-workspace.svg b/gnome-shell/theme/add-workspace.svg deleted file mode 100644 index ceedc40..0000000 --- a/gnome-shell/theme/add-workspace.svg +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/calendar-arrow-left.svg b/gnome-shell/theme/calendar-arrow-left.svg new file mode 100644 index 0000000..d5d97b3 --- /dev/null +++ b/gnome-shell/theme/calendar-arrow-left.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/gnome-shell/theme/calendar-arrow-right.svg b/gnome-shell/theme/calendar-arrow-right.svg new file mode 100644 index 0000000..545da7e --- /dev/null +++ b/gnome-shell/theme/calendar-arrow-right.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/gnome-shell/theme/close-window.svg b/gnome-shell/theme/close-window.svg index 3c19ec5..147ec4d 100644 --- a/gnome-shell/theme/close-window.svg +++ b/gnome-shell/theme/close-window.svg @@ -12,38 +12,103 @@ id="Foreground" xml:space="preserve"> \ No newline at end of file + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#3a3a3a;stroke-width:1.67127275;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> \ No newline at end of file diff --git a/gnome-shell/theme/corner-ripple.png b/gnome-shell/theme/corner-ripple.png new file mode 100644 index 0000000..e77a960 Binary files /dev/null and b/gnome-shell/theme/corner-ripple.png differ diff --git a/gnome-shell/theme/corner-ripple.svg b/gnome-shell/theme/corner-ripple.svg deleted file mode 100644 index 32c2acf..0000000 --- a/gnome-shell/theme/corner-ripple.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - diff --git a/gnome-shell/theme/dash-placeholder.svg b/gnome-shell/theme/dash-placeholder.svg new file mode 100644 index 0000000..59246ac --- /dev/null +++ b/gnome-shell/theme/dash-placeholder.svg @@ -0,0 +1,140 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/filter-selected.svg b/gnome-shell/theme/filter-selected.svg new file mode 100644 index 0000000..1ad15e1 --- /dev/null +++ b/gnome-shell/theme/filter-selected.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/gnome-shell/theme/gnome-shell.css b/gnome-shell/theme/gnome-shell.css index d4a58c4..224fa1d 100644 --- a/gnome-shell/theme/gnome-shell.css +++ b/gnome-shell/theme/gnome-shell.css @@ -16,9 +16,12 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. */ - - /* GNOME Shell Sonar theme designed by Sean Wilson. - */ + +/*GNOME Shell Elementary theme designed by Sean Wilson*/ + +stage { + font-family: cantarell, sans-serif; +} .shell-link { color: #0000ff; @@ -30,7 +33,7 @@ } .label-shadow { - color: rgba(0,0,0,0.5); + color: rgba(255,255,255,0.5); } .label-real-shadow { @@ -45,124 +48,158 @@ StScrollBar padding: 0px; } -StScrollView +StScrollView StScrollBar { - scrollbar-width: 15px; - scrollbar-height: 15px; -} - -StScrollView > .top-shadow -{ - background-gradient-direction: vertical; - background-gradient-start: rgba(240, 235, 226, 0.7); - background-gradient-end: rgba(219, 212, 198, 0.0);; - height: 30px; + min-width: 10px; + min-height: 16px; } -StScrollView > .bottom-shadow -{ - background-gradient-direction: vertical; - background-gradient-start: rgba(240, 235, 226, 0.0); - background-gradient-end: rgba(219, 212, 198, 0.7); - height: 30px; -} -StScrollBar { - border: 1px solid #B0B0B0; - border-radius: 0px; - background-color: #F3F5F3; +StScrollBar StBin#trough { + background-color: rgba(255,255,255,0.5); + border-radius: 4px; } StScrollBar StButton#vhandle { - border-radius: 0px; - background-gradient-direction: horizontal; - background-gradient-start: #575C57; - background-gradient-end: #4D514D; + border-radius: 4px; + background-color: #777; } StScrollBar StButton#hhandle { - border-radius: 0px; - background-gradient-direction: vertical; - background-gradient-start: #575C57; - background-gradient-end: #4D514D; + border-radius: 4px; + background-color: #777; } -StScrollBar StButton#hhandle:hover +StScrollBar StButton#hhandle:hover, StScrollBar StButton#vhandle:hover { - background-gradient-direction: vertical; - background-gradient-start: #767D76; - background-gradient-end: #4D514D; + background-color: #555; } -StTooltip { - border: 1px solid rgba(79,111,173,0.9); +StTooltip StLabel { + border: 1px solid rgba(79,111,173,1); border-radius: 5px; padding: 4px; - background-color: rgba(79,111,173,0.9); + background-color: rgba(255,255,255,0.9); color: #ffffff; + font-size: 0.8em; + font-weight: normal; + text-align: center; } /* PopupMenu */ + .popup-menu-boxpointer { - -arrow-border-radius: 4px; - -arrow-background-color: rgba(48,48,48, 0.8); + -arrow-border-color: rgba(255,255,255,0.5); + -arrow-border-radius: 6px; + -arrow-background-color: rgba(22,22,22,0.9); -arrow-border-width: 2px; -arrow-base: 30px; -arrow-rise: 15px; } .popup-menu { - color: #E4E4E4; - font-size: 12px; + font: 10px sans-serif; + color: rgba(255,255,255,0.9); min-width: 200px; } +.popup-sub-menu { + background-color: #606060; +} + /* The remaining popup-menu sizing is all done in ems, so that if you * override .popup-menu.font-size, everything else will scale with it. */ .popup-menu-content { - padding: .5em 0px; + padding: 1em 0em; + padding-left: 4px; + padding-right: 4px; } .popup-menu-item { - padding: .5em 1.25em; + font: 12px sans-serif; + font-weight: bold; + padding: .4em 1.75em; + spacing: 1em; } .popup-menu-item:active { - border: 1px solid #6F9F40; - border-radius: 2px; - background-gradient-direction: vertical; - background-gradient-start: #6A8B4B; - background-gradient-end: #4E6D2F; - -st-shadow: 1px 1px 2px 2px rgba(33,33,33,0.6); + background-color: #999; + border-radius: 4px; + color: #fff; } .popup-image-menu-item { - spacing: .75em; +} + +.popup-alternating-menu-item:alternate { + font-weight: bold; } .popup-separator-menu-item { -gradient-height: 1px; - -gradient-start: rgba(213,218,213,0); - -gradient-end: rgba(213,218,213,2); + -gradient-start: rgba(255,255,255,0.0); + -gradient-end: rgba(255,255,255,1.0); -margin-horizontal: 1.5em; height: 1em; } +.popup-slider-menu-item { + height: 1em; + min-width: 15em; + -slider-height: 0.3em; + -slider-background-color: #444; + -slider-border-color: #5f5f5f; + -slider-border-width: 1px; + -slider-handle-radius: 0.5em; +} + +.popup-device-menu-item { + spacing: .5em; +} + +.popup-menu-icon { + icon-size: 1.14em; +} + +/* Switches (to be used in menus) */ +.toggle-switch { + width: 4.5em; + height: 1.5em; +} + +.toggle-switch-us { + background-image: url("toggle-off-us.svg"); +} +.toggle-switch-us:checked { + background-image: url("toggle-on-us.svg"); +} + +.toggle-switch-intl { + background-image: url("toggle-off-intl.svg"); +} +.toggle-switch-intl:checked { + background-image: url("toggle-on-intl.svg"); +} + /* Panel */ #panel { - border-radius: 0px 0px 4px 4px; - color: #E8E8E8; - font-size: 12px; background-gradient-direction: vertical; - background-gradient-start: rgba(70, 70, 70, 0.8); - background-gradient-end: rgba(57, 57, 57, 0.8); - -st-shadow: 2px 2px 6px 6px rgba(22,22,22,0.4); + background-gradient-start: #f1f1f1; + background-gradient-end: #cdcdcd; + border: 1px solid rgba(0,0,0,0.2); + border-top: 0px; + border-left: 0px; + border-right: 0px; + color: rgba(22,22,22,0.8); + font-size: 10.5pt; + box-shadow: 0px 0px 6px 4px rgba(0,0,0,0.6); + height: 1.86em; } #panelLeft, #panelCenter, #panelRight { @@ -176,15 +213,23 @@ StTooltip { #panelRight { padding-left: 4px; -} - -.panel-button:pressed { - color: #444; - border-radius: 0px 0px 4px 4px; + } #appMenu { spacing: 4px; + color: rgba(66,66,66,0.9); + +} + +.panel-button #appMenuIcon { + app-icon-bottom-clip: 1px; +} + +.panel-button:active #appMenuIcon, +.panel-button:checked #appMenuIcon, +.panel-button:focus #appMenuIcon { + app-icon-bottom-clip: 2px; } .app-menu-icon { @@ -194,500 +239,404 @@ StTooltip { .panel-button { padding: 0px 12px; - border-radius: 3px; - border-radius-bottomleft: 0px; - border-radius-bottomright: 0px; - font: 12px Sans-Serf; - font-weight: bold; - transition-duration: 300; + text-shadow: rgba(255,255,255,0.7) 0px 1px 0px; } -.panel-button:active, .panel-button:checked, .panel-button:pressed { - border: 1px solid #333; +.panel-button:active, +.panel-button:checked, +.panel-button:focus { + border: 1px solid rgba(86,147,201,0.8); background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D0D3D0; -} - -#panelActivities { - border-radius-topleft: 4px; -} - -#panelStatus { - border-radius-topright: 4px; -} - -#panelStatusMenu { - spacing: 4px; + background-gradient-start: #C6DAEB; + background-gradient-end: #86A7C2; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.4); + border-bottom: 0px; + border-top: 0px; + padding: 0px 11px 0px 11px; } -#statusTray { - spacing: 16px; -} +#statusTray > .panel-button:active, +#statusTray > .panel-button:checked, +#statusTray > .panel-button:focus { -#statusTray:compact { - spacing: 8px; } -/* Overview */ - -.overview { - background-color: rgba(213, 218, 213, 0.9); -} +.panel-button:active > .system-status-icon, +.panel-button:checked > .system-status-icon, +.panel-button:focus > .system-status-icon { -.info-bar { - color: #fff; - font-size: 14px; - spacing: 20px; } -.info-bar-link-button { - background-color: #2d2d2d; - padding: 2px 14px; - border-radius: 10px; - border: 1px solid #181818; +#panelActivities { + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; } -.info-bar-link-button:hover { - border: 1px solid #666666; +#panelStatus { + border-radius-topright: 0px; } -.new-workspace-area { - background-color: rgba(240, 235, 226, 0.0); +#panelStatusMenu { + spacing: 4px; } -.new-workspace-area-internal { - background-image: url("move-window-on-new.svg"); - background-gradient-direction: horizontal; - background-gradient-end: rgba(213, 218, 213, 0.9); - background-gradient-start: rgba(144, 156, 144, 0.6); - -st-shadow: 2px 2px 14px 6px rgba(33,33,33,0.4); - +#legacyTray { + spacing: 14px; + padding-left: 14px; } -.new-workspace-area:hover { - background-gradient-direction: horizontal; - background-gradient-end: rgba(240, 235, 226, 0.0); - background-gradient-start: rgba(240, 235, 226, 0.8); +#legacyTray:compact { + spacing: 8px; } -.left-workspaces-shadow { - background-image: url("ws-switch-arrow-left.svg"); - background-gradient-direction: horizontal; - background-gradient-end: rgba(240, 235, 226, 0.0); - background-gradient-start: rgba(240, 235, 226, 0.6); - -st-shadow: 2px 2px 6px 8px rgba(33,33,33,0.4); +.system-status-icon { + icon-size: 1.14em; } -.right-workspaces-shadow { - background-image: url("ws-switch-arrow-right.svg"); - background-gradient-direction: horizontal; - background-gradient-end: rgba(240, 235, 226, 0.0); - background-gradient-start: rgba(240, 235, 226, 0.4); - -st-shadow: 2px 2px 6px 8px rgba(33,33,33,0.4); -} +/* Overview */ -.workspaces { - color: #3C3B37; +#overview { + spacing: 12px; + background-color: rgba(160,160,160,0.7); } -.workspaces.single { +.workspaces-view { + color: white; spacing: 25px; } -.workspaces.mosaic { - spacing: 15px; +.workspace-controls { + visible-width: 32px; /* Amount visible before hovering */ } -.workspaces-bar { - height: 48px; +.workspace-thumbnails-background { + background-gradient-direction: vertical; + background-gradient-start: #f1f1f1; + background-gradient-end: #cdcdcd; + border: 1px solid rgba(0,0,0,0.2); + border-right: 0px; + border-radius: 9px 0px 0px 9px; + padding: 8px; + box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.6); } -.workspaces-bar { - spacing: 5px; +.workspace-thumbnails-background:rtl { + border-right: 1px; + border-left: 0px; + border-radius: 0px 9px 9px 0px; } -.workspace-indicator { - width: 24px; - height: 16px; - background: rgba(146, 155, 146, 0.2); - border-spacing: 16px; - border: 1px solid rgba(100,100,100,0.8); +.workspace-thumbnails { + spacing: 7px; } -.workspace-indicator.active { - background-gradient-direction: vertical; - background-gradient-start: rgba(155, 166, 145, 0.5); - background-gradient-end: rgba(94, 127, 62, 0.7); +.workspace-thumbnail-indicator { + outline: 3px solid #86A7C2; } .window-caption { - background: rgba(213,218,213,0.8); - border: 1px solid rgba(112,112,112,0.8); - border-radius: 3px; - font-size: 12px; + background-gradient-direction: vertical; + background-gradient-start: #f1f1f1; + background-gradient-end: #cdcdcd; + border: 1px solid rgba(0,0,0,0.2); + border-radius: 4px; + color: #222; + font-size: 9pt; padding: 2px 8px; -shell-caption-spacing: 4px; - -st-shadow: 2px 2px 4px 2px rgba(33,33,33,0.6); + box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.6); } .window-close { background-image: url("close-window.svg"); height: 24px; width: 24px; - -st-shadow: -2px 2px 6px rgba(0,0,0,0.5); + -st-background-image-shadow: -2px 2px 6px rgba(0,0,0,0.5); -shell-close-overlap: 16px; } -.single-view-controls { - padding: 0px 15px; -} - -.workspace-controls { - width: 24px; - height: 19px; -} - -.workspace-controls.add { - background-image: url("add-workspace.svg"); - background-size: 20px; -} - -.workspace-controls.remove { - background-image: url("remove-workspace.svg"); - background-size: 20px; -} +/* Dash */ -.workspace-controls.switch-single { - background-image: url("single-view.svg"); - background-size: 20px; -} +#dash { + color: #5f5f5f; + padding: 6px 0px; + background-gradient-direction: vertical; + background-gradient-start: #f1f1f1; + background-gradient-end: #cdcdcd; + border: 1px solid rgba(0,0,0,0.2); + border-left: 0px; + border-radius: 0px 8px 8px 0px; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.5); -.workspace-controls.switch-mosaic { - background-image: url("mosaic-view.svg"); - background-size: 20px; } -.workspace-controls.switch-single:checked { - background-image: url("single-view-active.svg"); +#dash:rtl { + border-left: 1px; + border-right: 0px; + border-radius: 9px 0px 0px 9px; } -.workspace-controls.switch-mosaic:checked { - background-image: url("mosaic-view-active.svg"); +#dash:empty { + height: 100px; + width: 60px; } -#SwitchScroll { - height: 15px; +.dash-placeholder { + background-image: url("dash-placeholder.svg"); + height: 27px; } -#SwitchScroll #hhandle { - border-radius: 0px; +#viewSelector { + spacing: 16px; } -/* Dash */ - -#dash { - color: #5f5f5f; - font-size: 12px; - padding: 0px 14px; +#viewSelectorTabBar { + padding: 16px; } -#dashSections { - spacing: 12px; +#searchArea { + padding: 0px 24px; } #searchEntry { - padding: 4px; + padding: 4px 8px; border-radius: 3px; color: #3C3B37; - border: 1px solid #686F68; - background-color: rgba(255, 255, 255, 0.7); - caret-color: #fff; + border: 1px solid #555; + background-color: rgba(255, 255, 255, 0.9); + caret-color: rgb(128, 128, 128); caret-size: 1px; + font: 12px sans-serif; height: 16px; - transition-duration: 300; + width: 250px; + box-shadow: 0px 0px 4px 2px rgba(33,33,33,0.2); } #searchEntry:focus { - color: #3C3B37; - border: 1px solid #5E7F3E; - background-color: rgba(255, 255, 255, 0.8); - caret-color: #545454; - -st-shadow: 0px 0px 6px 6px rgba(255,255,255,0.8); - transition-duration: 200; + color: rgba(33,33,33,0.7); + border: 1px solid #6C9CC4; + background-color: rgba(255, 255, 255, 0.9); } #searchEntry:hover { - color: #3C3B37; - border: 1.5px solid #5E7F3E; - background-color: rgba(255, 255, 255, 0.8); + border: 1px solid #6C9CC4; + background-color: rgba(255, 255, 255, 0.9); caret-color: #545454; - transition-duration: 500; -} - -.dash-section { - spacing: 8px; -} - -.section-header { - color: #3C3B37; - font-size: 12px; -} - -.section-header-inner { - spacing: 4px; } -.section-text-content { - padding: 4px 0px; +.search-entry-icon { + icon-size: 1em; + color: #222; } -.dash-section-content { - color: #3C3B37; - spacing: 8px; +.view-tab-title { + color: rgba(44,44,44,0.7); + font: 14px sans-serif; + font-weight: bold; + padding: 0px 12px; + height: 24px; } -.more-link { -} +.view-tab-title:selected { + color: rgba(255,255,255,0.9); + font: 14px sans-serif; + font-weight: bold; + height: 24px; + padding: 0px 12px; -.more-link-expander { - background-image: url("section-more.svg"); - width: 9px; - height: 9px; } - -.more-link-expander.open { - background-image: url("section-more-open.svg"); - width: 9px; - height: 9px; +.view-tab-title:hover { + color: rgba(189,210,228,1.0); + padding: 0px 12px; } -.dash-pane { - border-radius: 3px; - border: 1px solid #686F68; - color: #ffffff; - padding: 30px 10px 10px 20px; - background-color: #D5DAD5; - -st-shadow: 2px 2px 6px 6px rgba(22,22,22,0.4); +.view-tab-boxpointer { + -arrow-border-radius: 9px; + -arrow-background-color: rgba(55,55,55,0.5); + -arrow-border-width: 2px; + -arrow-border-color: rgba(66,66,66,0.6); + -arrow-base: 30px; + -arrow-rise: 15px; } -.dash-search-section-header { - padding: 6px 4px; - spacing: 4px; +#searchResults { + padding: 20px 10px 10px 10px; } -.dash-search-section-results { - color: #3C3B37; +#searchResultsContent { + padding: 0 10px; + spacing: 8px; } -.dash-search-section-list-results { +.search-statustext, +.search-section-header { + font: 12px sans-serif; + font-weight: bold; + padding: 4px 12px; spacing: 4px; + color: rgba(66,66,66,0.8); } -.dash-search-result-content { - padding: 3px; -} - -.dash-search-result-content:selected { - padding: 2px; - border: 1px solid #5c5c5c; - border-radius: 2px; - background-color: #1e1e1e; +.search-section { + background-color: rgba(255,255,255,0.4); + border: 1px solid rgba(0,0,0,0.3); + border-radius: 4px; } -.dash-results-container { - spacing: 4px; +.search-section-results { + background-color: rgba(255,255,255,0.0); + color: rgba(66,66,66,0.8); + border-radius: 0px 0px 4px 4px; + border: 1px solid rgba(0,0,0,0.3); + padding: 6px; + border-left: 0px; + border-right: 0px; + border-bottom: 0px; } -/* GenericDisplay */ - -.generic-display-container { +.search-section-list-results { spacing: 4px; } -.generic-display-item { - height: 50px; - color: #333; - font-size: 12px; +.results-container { spacing: 4px; } -.generic-display-container:selected { - background-color: #fff; -} - -.generic-display-item-text { - spacing: 4px; -} +.dash-search-button { + border: 1px solid rgba(44,44,44,0.5); + background-gradient-direction: vertical; + background-gradient-start: #C6DAEB; + background-gradient-end: #86A7C2; +/* border: 1px solid #808080;*/ + border-radius: 4px; + height: 32px; + width: 200px; + box-shadow: 0px 0px 4px 2px rgba(33,33,33,0.3); -.generic-display-item-description { - font-size: 12px; - color: #777; } -.generic-display-details { - font-size: 12px; - color: #fff; +.dash-search-button:selected, +.dash-search-button:hover { + border: 1px solid rgba(44,44,44,0.5); + background-gradient-direction: vertical; + background-gradient-start: #E5F0F9; + background-gradient-end: #86A7C2; + box-shadow: 0px 0px 4px 2px rgba(33,33,33,0.3); } -.generic-display-details-name { - font-weight: bold; +.dash-search-button-label { + color: #222; + font-size: 12pt; } /* Apps */ -.overview-pane { - width: 440px; -} - -#dashAppWell { - spacing: 8px; +.icon-grid { + spacing: 36px; -shell-grid-item-size: 70px; } .all-app { - border: 1px solid #8E8E8E; - border-radius: 3px; - color: #3C3B37; - background-color: rgba(213,218,213,0.8); - -st-shadow: 2px 2px 6px 6px rgba(22,22,22,0.4); -} - -.app-section-divider-container { - padding-top: 10px; - padding-bottom: 10px; + padding: 16px 25px 16px 16px; + spacing: 20px; } -.app-section-divider { - height: 2px; - background-image: url("separator-white.png"); +.all-app .icon-grid { + -shell-grid-item-size: 118px; } -.all-app-controls-panel { - height: 30px; +.all-app .overview-icon { + icon-size: 96px; } -.all-app-scroll-view { - padding-right: 10px; - padding-left: 10px; - padding-bottom: 10px; +.app-filter { + font: 14px sans-serif; + font-weight: bold; + height: 40px; + color: rgba(44,44,44,0.7); + width: 200px; + padding-left: 8px; } -.app-well-app { - border: 1px solid #878787; - border-radius: 4px; - padding: 8px; - width: 70px; - height: 70px; - font-size: 9px; - text-align: center; - background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D5D9D5; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); +.app-filter:hover { + color: rgba(189,210,228,1.0); + padding-left: 8px; } -.app-well-app.running { - border: 1px solid #5E7F3E; - background-gradient-direction: vertical; - background-gradient-start: #D0D9C6; - background-gradient-end: #7B9166; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); +.app-filter:selected { + color: #fff; + background-image: url("filter-selected.svg"); + background-position: 190px 10px; } -.app-well-app.selected { - border: 1px solid #5E7F3E; - background-gradient-direction: vertical; - background-gradient-start: #EAEDE7; - background-gradient-end: #7B9166; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); +.dash-item-container > .app-well-app { + padding: 4px 8px; } -.app-well-app:hover { - background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #EFEFEF; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); - transition-duration: 400; +.remove-favorite-icon { + color: #a0a0a0; } -.app-well-app:active { - border: 1px solid #ACA08E; - background-gradient-direction: vertical; - background-gradient-start: #D0C3B3; - background-gradient-end: #A79780; +.remove-favorite-icon:hover { + color: white; + icon-shadow: black 0px 2px 2px; } -.app-well-menu { - font-size: 12px; +.app-well-app > .overview-icon, +.remove-favorite > .overview-icon, +.search-result-content > .overview-icon { + color: rgba(22,22,22,0.9); font-weight: bold; + font: 10px sans-serif; + padding: 4px; + text-align: center; } -/* Places */ - -.places-section { - spacing-columns: 6px; - spacing-rows: 6px; -} - -.places-item-box { - spacing: 6px; -} - -.places-item { - border: 1px solid #878787; - border-radius: 4px; - padding: 4px; - padding-left: 4px; - padding-right: 4px; - transition-duration: 300; +.app-well-app.running > .overview-icon { + border: 1px solid rgba(33,33,33,0.4); background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D5D9D5; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); + background-gradient-start: #C6DAEB; + background-gradient-end: #86A7C2; + border-radius: 4px; + color: rgba(22,22,22,1.0); + text-shadow: white 0px 1px 0px; + padding: 3px; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.4); } -.places-item:hover { - border: 1px solid #878787; +.app-well-app:selected > .overview-icon, +.search-result-content:selected > .overview-icon { + border: 1px solid rgba(33,33,33,0.4); background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #EFEFEF; - -st-shadow: 0px 0px 0px 2px rgba(55,55,55,0.1); - transition-duration: 100; + background-gradient-start: #E5F0F9; + background-gradient-end: #86A7C2; + padding: 3px; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.4); } -/* Recent items */ - -.recent-docs-item-box { - spacing: 6px; +.app-well-app:hover > .overview-icon, +.remove-favorite:hover > .overview-icon, +.search-result-content:hover > .overview-icon { + border: 1px solid rgba(33,33,33,0.4); + background-gradient-direction: vertical; + background-gradient-start: #E5F0F9; + background-gradient-end: #86A7C2; + border-radius: 4px; + padding: 3px; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.4); } -.recent-docs-item { - border: 1px solid #878787; - border-radius: 4px; - padding: 2px; - padding-left: 4px; - padding-right: 4px; - transition-duration: 100; - color: #3C3B37; +.app-well-app:active > .overview-icon { + border: 1px solid rgba(33,33,33,0.4); background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D5D9D5; - -st-shadow: 0px 0px 0px 1px rgba(55,55,55,0.1); + background-gradient-start: #E5F0F9; + background-gradient-end: #86A7C2; + padding: 3px; + box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.4); } -.recent-docs-item:hover { - border: 1px solid #878787; - border-radius: 4px; - padding: 2px; - padding-left: 4px; - padding-right: 4px; - transition-duration: 100; - color: #3C3B37; - background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #EFEFEF; - -st-shadow: 0px 0px 0px 1px rgba(55,55,55,0.1); +.app-well-menu { + font-size: 9pt; } /* LookingGlass */ @@ -813,14 +762,29 @@ StTooltip { /* Calendar popup */ -#calendarPopup { - border-radius: 3px; - background: rgba(58,58,58,0.8); - color: white; - -st-shadow: 2px 2px 6px 5px rgba(22,22,22,0.5); +#calendarArea { + /* this is the width of the entire popup */ + width: 600px; } -#calendarPopup .calendar { +.calendar-vertical-separator { + -stipple-width: 1px; + -stipple-color: #999; + width: 1.5em; +} + +#calendarPopup { + font: 12px sans-serif; + border: 1px solid rgba(0,0,0,0.2); + border-radius: 0px 0px 8px 8px; + border-top: 0px; + border-left: 0px; + border-right: 0px; + color: rgba(66,66,66,0.7); + -st-shadow: 0px 0px 6px 4px rgba(0,0,0,0.6); +} + +#calendarPopup .calendar { padding: 10px; } @@ -829,63 +793,203 @@ StTooltip { spacing-columns: 3px; } -.calendar-change-month { +.calendar-month-label { + color: #666666; + font-size: 7.5pt; padding: 2px; } -.calendar-change-month:hover { - background: #314a6c; - border-radius: 5px; +.calendar-change-month-back { + width: 20px; + height: 20px; + background-image: url("calendar-arrow-left.svg"); + border-radius: 4px; +} +.calendar-change-month-back:hover { + background-color: #999999; +} +.calendar-change-month-back:active { + background-color: #aaaaaa; } -.calendar-change-month:active { - background: #213050; - border-radius: 5px; +.calendar-change-month-forward { + width: 20px; + height: 20px; + background-image: url("calendar-arrow-right.svg"); + border-radius: 4px; +} +.calendar-change-month-forward:hover { + background-color: #999999; +} +.calendar-change-month-forward:active { + background-color: #aaaaaa; +} + +.datemenu-date-label { + padding: .4em 1.75em; + font-size: 10.5pt; + color: #ffffff; +} + +.calendar-day-base { + font-size: 7.5pt; + text-align: center; + width: 24px; + height: 24px; +} + +.calendar-day-base:hover { + background: #777777; +} + +.calendar-day-base:active { + background: #555555; +} + +.calendar-day-heading { + color: #666666; +} + +.calendar-week-number { + color: #666666; + font-weight: bold; } +/* Hack used in lieu of border-collapse - see calendar.js */ .calendar-day { - padding: 1px 2px; + border: 1px solid #333333; + color: #cccccc; + border-top-width: 0; + border-left-width: 0; + border-radius: 4px; +} +.calendar-day-top { + border-top-width: 1px; +} +.calendar-day-left { + border-left-width: 1px; +} + +.calendar-work-day { +} + +.calendar-nonwork-day { + background-color: rgba(128, 128, 128, .1); } .calendar-today { + color: #ffffff; font-weight: bold; - background: #5E7F3E; - color: #fff; - border-radius: 5px; + background-color: #999; + border-radius: 4px; } .calendar-other-month-day { - color: #cccccc; + color: #333333; +} + +.calendar-day-with-events { + font-weight: bold; +} + +.events-header-vbox { + spacing: 10px; +} + +.events-header { + height: 40px; +} + +.events-header-hbox { + spacing: 8px; + padding: 0.3em; +} + +.events-day-header { + font-size: 9pt; + color: rgba(153, 153, 153, 1.0); +} + +.events-day-dayname { + font-size: 12px; + color: rgba(153, 153, 153, 1.0); + text-align: left; +} + +.events-day-time { + font-size: 9pt; + font-weight: bold; + color: #fff; + text-align: right; +} + +.events-day-task { + font-size: 9pt; + color: rgba(153, 153, 153, 1.0); +} + +.events-day-name-box { + width: 20px; +} + +.events-time-box { + width: 70px; +} + +.events-event-box { +} + +.url-highlighter { + link-color: #ccccff; } /* Message Tray */ #message-tray { - padding-top: 10px; - border-radius: 4px 4px 0px 0px; - height: 28px; background-gradient-direction: vertical; - background-gradient-start: rgba(57, 57, 57, 0.8); - background-gradient-end: rgba(70, 70, 70, 0.8); - -st-shadow: 2px 2px 5px 6px rgba(22,22,22,0.4); + background-gradient-start: rgba(241,241,241,0.7); + background-gradient-end: rgba(214,214,214,0.7); + box-shadow: 0px 0px 6px 4px rgba(0,0,0,0.6); + border: 1px solid rgba(0,0,0,0.3); + border-radius: 8px 8px 0px 0px; + border-bottom: 0px; + border-left: 0px; + border-right: 0px; + color: rgba(10,65,68,0.8); + height: 36px; } #notification { - font-size: 12px; - border: 1px solid #6B6B6B; - border-radius: 3px 3px 0px 0px; - background: rgba(213,218,213,0.8); - color: #3C3B37; - width: 420px; - padding: 2px 10px 10px 12px; - spacing-rows: 12px; - spacing-columns: 12px; - max-width: 40em; - -st-shadow: 2px 2px 6px 5px rgba(22,22,22,0.5); + background-color: rgba(11,11,11,0.7); + font-size: 12pt; + border: 1px solid rgba(255,255,255,0.8); + border-bottom: 0px; + border-top: 0px; + color: rgba(255,255,255,0.9); + padding: 8px 8px 4px 8px; + spacing-rows: 10px; + spacing-columns: 10px; + width: 34em; +} + +.multi-line-notification { + padding-bottom: 8px; +} + +.summary-notification-boxpointer { + -arrow-border-radius: 4px; + -arrow-background-color: rgba(0,0,0,0.9); + -arrow-border-width: 1px; + -arrow-border-color: rgba(255,255,255,0.7); + -arrow-base: 30px; + -arrow-rise: 15px; } -#summary-notification-bin #notification { - /* message-tray.height + notification.padding-bottom */ - padding-bottom: 38px; +.summary-notification-boxpointer #notification { + border: 1px solid rgba(255,255,255,0.8); + border-radius: 4px; + border-bottom: 0px; + background: rgba(22,22,22,0.7) !important; + padding-bottom: 12px; } #notification-scrollview { @@ -896,79 +1000,106 @@ StTooltip { height: 1em; } +#notification-scrollview > StScrollBar { + padding-left: 6px; +} + #notification-body { - spacing: 4px; - background-color: #fff; - border-radius: 2px; - border: 1px solid #808080; - padding: 12px 12px 12px 12px; + spacing: 5px; } #notification-actions { - spacing: 8px; + spacing: 5px; } .notification-button { - border-radius: 3px; - padding: 5px; - color: #3C3B37; - border: 1px solid #8C8C8C; background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D5D9D5; - -st-shadow: 0px 0px 0px 1px rgba(55,55,55,0.1); + background-gradient-start: #E3EBF2; + background-gradient-end: #8EA3B7; + border-radius: 2px; + border: 1px solid #555; + -st-shadow: 0px 1px 3px 2px rgba(33,33,33,0.3); + font-weight: bold; + padding: 2px 14px; } .notification-button:hover { - border: 1px solid #8C8C8C; + border: 1px solid #555; background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #E5E5E5; - -st-shadow: 0px 0px 0px 1px rgba(55,55,55,0.1); + background-gradient-start: #E3EBF2; + background-gradient-end: #8EA3B7; + -st-shadow: 0px 1px 3px 2px rgba(33,33,33,0.3); + colour: #222; } .notification-button:active { - background: #808080; + border: 1px solid #555; + background-color: #333; } .notification-icon-button { - border-radius: 3px; + border: 1px rgba(0,0,0,0.0); + border-radius: 5px; padding: 5px; } + .notification-icon-button:hover { - background: #A59780; - color: #000; + background: rgba(192,192,192,0.7); } .notification-icon-button:active { - background: #A59780; + background: rgba(128,128,128,0.7); +} + +.notification-icon-button > StIcon { + icon-size: 36px; } .chat-received { - padding: 4px; - border: 1px solid #5E7F3E; + background-gradient-direction: vertical; + background-gradient-start: #E7E9EC; + background-gradient-end: #CBD5E1; + border: 1px solid #6E8297; border-radius: 3px; - color: #222222; - font-size: 10px; - background-color: #D5DAD5; + color: #202020; + padding-left: 4px; + border-radius: 4px; } .chat-sent { + border: 1px solid #78A2A8; + border-radius: 2px; + color: #202020; padding: 4px; - border: 1px solid #81BC48; - border-radius: 3px; + background-gradient-direction: vertical; + background-gradient-start: #CBE3E6; + background-gradient-end: #9ED8E0; + padding-left: 4px; +} + +.chat-meta-message { + padding-left: 4px; + border-radius: 4px; + font-size: 10.5pt; color: #000; - font-size: 10px; - background-color: #EAECEA; - } -.chat-response { - padding: 4px 4px 4px 4px; - border: 1px solid #5E7F3E; - border-radius: 3px; +#notification StEntry { + padding: 4px; + border-radius: 4px; + border: 1px solid #888; + color: #333; background-color: #fff; - color: #000; + caret-color: #ffffff; + caret-size: 1px; +} + +#notification StEntry:focus { + border: 1px solid #888; + color: #333; + background-color: #fff; + caret-color: #545454; + -st-shadow: 0px 0px 6px 2px rgba(255,255,255,0.9); } /* The spacing and padding on the summary is tricky; we want to keep @@ -980,36 +1111,32 @@ StTooltip { * icons in it, and so you wouldn't be able to hover over it to * activate it. * - * The padding-right on the non-rightmost icons is noticeable and - * slightly annoying. If StBoxLayout implemented the ":last-child" - * pseudo-class we could fix that... + * Also, the spacing between a summary-source's icon and title is + * actually specified as padding-left in source-title, because we + * want the spacing to collapse along with the title. */ #summary-mode { - spacing: 4px; - padding: 2px 2px 0px 4px; + padding: 2px 0px 0px 4px; + height: 36px; } -.summary-source-button { - padding: 1px 3px 0px 2px; +.summary-source { + color: #666; } -.summary-source-button:hover { - border: 1px 1px 0px 1px solid #6B6B6B; - border-radius: 3px 3px 0px 3px; - background-gradient-direction: vertical; - background-gradient-start: #FBFCFB; - background-gradient-end: #D5D9D5; - -st-shadow: 0px 0px 0px 1px rgba(55,55,55,0.1); +.summary-source-button { + padding-left: 3px; + padding-right: 3px; } -.summary-source { - spacing: 4px; +.summary-source-button:last-child { + padding-right: 12px; } .source-title { - font: 12px sans-serif; + font-size: 9pt; font-weight: bold; - color: #202020; + padding-left: 4px; } .calendar-calendarweek { @@ -1023,13 +1150,13 @@ StTooltip { } .switcher-list { - background: rgba(213,218,213,0.7); - border-radius: 3px; - border: 1px solid #9C9C9C; - padding: 18px; - -st-shadow: 2px 2px 2px 2px rgba(33,33,33,0.4); - font: 12px sans-serif; - color: #3C3B37; + border: 1px solid rgba(0,0,0,0.2); + background: rgba(214,214,214,1.0); + border-radius: 4px; + padding: 20px; + font-size: 9pt; + color: rgba(44,44,44,0.8); + box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.6); } .switcher-list-item-container { @@ -1040,7 +1167,9 @@ StTooltip { background-gradient-direction: horizontal; background-gradient-start: rgba(51, 51, 51, 1.0); background-gradient-end: rgba(51, 51, 51, 0); - border-radius: 8px; + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; width: 60px; } @@ -1048,13 +1177,35 @@ StTooltip { background-gradient-direction: horizontal; background-gradient-start: rgba(51, 51, 51, 0); background-gradient-end: rgba(51, 51, 51, 1.0); - border-radius: 8px; + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; width: 60px; } .switcher-list .item-box { padding: 8px; - border-radius: 4px; + border-radius: 8px; +} + +.switcher-list .item-box:outlined { + background-gradient-direction: vertical; + background-gradient-start: #C6DAEB; + background-gradient-end: #86A7C2; + border-radius: 4px 4px 4px 4px; + border: 1px solid rgba(255,255,255,0.8); + color: rgba(255,255,255,0.7); + -st-shadow: 0px 0px 2px 1px rgba(33,33,33,0.4); +} + +.switcher-list .item-box:selected { + background-gradient-direction: vertical; + background-gradient-start: #C6DAEB; + background-gradient-end: #86A7C2; + border-radius: 4px 4px 4px 4px; + border: 1px solid rgba(0,0,0,0.2); + color: rgba(255,255,255,0.7); + -st-shadow: 0px 0px 2px 1px rgba(33,33,33,0.4); } .switcher-list .thumbnail-box { @@ -1066,23 +1217,6 @@ StTooltip { width: 256px; } -.switcher-list .outlined-item-box { - padding: 6px; - border: 2px solid rgba(152,141,126,1.0); - border-radius: 4px; -} - -.switcher-list .selected-item-box { - padding: 8px; - border-radius: 3px; - border: 1px solid #5E7F3E; - background-gradient-direction: vertical; - background-gradient-start: #D0D9C6; - background-gradient-end: #7B9166; - -st-shadow: 1px 1px 2px 2px rgba(33,33,33,0.4); - transition-duration: 300; -} - .switcher-list .separator { width: 1px; background: rgba(255,255,255,0.33); @@ -1091,7 +1225,7 @@ StTooltip { .ripple-box { width: 52px; height: 52px; - background-image: url("corner-ripple.svg"); + background-image: url("corner-ripple.png"); } .switcher-arrow { @@ -1110,47 +1244,100 @@ StTooltip { } .workspace-switcher-container { - background: rgba(0,0,0,0.8); - border: 1px solid rgba(128,128,128,0.40); - border-radius: 8px; - padding: 12px; + border: 1px solid rgba(0,0,0,0.2); + background: rgba(214,214,214,1.0); + border-radius: 4px; + box-shadow: 0px 0px 6px 3px rgba(33,33,33,0.4); + padding: 20px; } .workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; + background: rgba(44,44,44,0.5); + border-radius: 4px; padding: 4px; - spacing: 4.5px; + spacing: 8px; } -.ws-switcher-active-left { +.ws-switcher-active-up { height: 100px; - border: 0px; - background: rgba(193,179,160,0.5); - background-image: url("ws-switch-arrow-left.svg"); + background-color: #C6DAEB; + border-radius: 4px 4px 4px 4px; + border: 1px solid rgba(0,0,0,0.2); + color: rgba(255,255,255,0.7); + box-shadow: 0px 0px 2px 1px rgba(33,33,33,0.4); + background-image: url("ws-switch-arrow-up.svg"); border-radius: 4px; } -.ws-switcher-active-right { - background-image: url("ws-switch-arrow-right.svg"); - background-gradient-direction: horizontal; - background-gradient-end: #fff; - background-gradient-start: #F0EBE2; +.ws-switcher-active-down { + height: 100px; + background-color: #C6DAEB; + border-radius: 4px 4px 4px 4px; + border: 1px solid rgba(0,0,0,0.2); + color: rgba(255,255,255,0.7); + -st-shadow: 0px 0px 2px 1px rgba(33,33,33,0.4); + background-image: url("ws-switch-arrow-down.svg"); + border-radius: 4px; } .ws-switcher-box { height: 96px; - border: 2px solid rgba(85,85,85,0.5); background: transparent; border-radius: 4px; } +/* Modal Dialogs */ +.modal-dialog { + font-size: 12pt; + border-radius: 24px; + background-color: rgba(0.0, 0.0, 0.0, 0.9); + border: 2px solid #868686; + color: #ffffff; + + padding-right: 42px; + padding-left: 42px; + padding-bottom: 30px; + padding-top: 30px; +} + +.modal-dialog-button { + border: 1px solid #8b8b8b; + border-radius: 18px; + font-size: 10.5pt; + + margin-left: 10px; + margin-right: 10px; + + padding-left: 32px; + padding-right: 32px; + padding-top: 8px; + padding-bottom: 8px; + + background-gradient-direction: vertical; + background-gradient-start: #29323b; + background-gradient-end: #121a24; +} + +.modal-dialog-button:active, +.modal-dialog-button:pressed { + border-color: #a5a5a5; + background-gradient-start: #121a24; + background-gradient-end: #29323b; +} + +.modal-dialog-button:focus { + border: 2px solid #a5a5a5; + + padding-left: 31px; + padding-right: 31px; + padding-top: 7px; + padding-bottom: 7px; +} + /* Run Dialog */ .run-dialog-label { - padding: 8px 8px 8px 8px; - font: 12px sans-serif; - color: black; + font-size: 9pt; + color: #444; } .run-dialog-error-icon { @@ -1160,30 +1347,160 @@ StTooltip { } .run-dialog-error-label { - font: 12px sans-serif; - color: white; + font-size: 9pt; + color: #000; } .run-dialog-entry { - padding: 4px 4px 4px 4px; - font: 12px sans-serif; + font-size: 10.5pt; width: 320px; - color: black; - background: #fff; - border: 1px solid #5E7F3E; - border-radius: 3px; + color: #000; + background: rgba(255,255,255,1.0); + border: 1px solid rgba(0,0,0,0.3); + border-radius: 4px; + padding: 2px; } .run-dialog { - border: 1px solid #5A5E5A; - padding: 8px 8px 8px 8px; - border-radius: 3px; - background: rgba(213,218,213,0.8); - -st-shadow: 2px 2px 6px 5px rgba(22,22,22,0.4); + padding: 8px; + border-radius: 4px; + background-gradient-direction: vertical; + background-gradient-start: #f1f1f1; + background-gradient-end: #cdcdcd; + border: 1px solid rgba(0,0,0,0.2); + box-shadow: 0px 0px 6px 4px rgba(0,0,0,0.6); } .lightbox { - background-color: rgba(0, 0, 0, 0.4); + background-color: rgba(160,160,160,0.0); +} + +/* End Session Dialog */ +.end-session-dialog-subject { + font-size: 12pt; + font-weight: bold; + color: #666666; + padding-top: 10px; + padding-left: 17px; + padding-bottom: 30px; +} + +.end-session-dialog-description { + font-size: 10pt; + color: white; + padding-left: 17px; + padding-right: 40px; + width: 16em; +} + +.end-session-dialog-logout-icon { + border: 2px solid #8b8b8b; + border-radius: 5px; + width: 32px; + height: 32px; +} + +.end-session-dialog-shutdown-icon { + width: 32px; + height: 32px; +} + +.end-session-dialog-app-list { + font-size: 10pt; + max-height: 200px; + padding-top: 42px; + padding-bottom: 42px; + padding-left: 17px; + padding-right: 32px; +} + +.end-session-dialog-app-list-item { + padding-right: 1em; +} + +.end-session-dialog-app-list-item-icon { + padding-right: 17px; +} + +.end-session-dialog-app-list-item-name { + font-size: 10pt; +} + +.end-session-dialog-app-list-item-description { + font-size: 8pt; + color: #444444; +} + +/* PolicyKit Authentication Dialog */ +.polkit-dialog { + /* this is the width of the entire modal popup */ + width: 500px; +} + +.polkit-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.polkit-dialog-message-layout { + spacing: 16px; +} + +.polkit-dialog-headline { + font-size: 12pt; + font-weight: bold; + color: #666666; +} + +.polkit-dialog-description { + font-size: 10pt; + color: white; +} + +.polkit-dialog-user-layout { + padding-left: 10px; + spacing: 10px; +} + +.polkit-dialog-user-layout:rtl { + padding-left: 0px; + padding-right: 10px; +} + +.polkit-dialog-user-root-label { + color: #ff0000; +} + +.polkit-dialog-password-label:ltr { + padding-right: 0.5em; +} + +.polkit-dialog-password-label:rtl { + padding-left: 0.5em; +} + +.polkit-dialog-password-entry { + background-color: white; + color: black; + border-radius: 5px; +} + +.polkit-dialog-error-label { + font-size: 10pt; + color: #ffff00; + padding-bottom: 8px; +} + +.polkit-dialog-info-label { + font-size: 10pt; + padding-bottom: 8px; +} + +/* intentionally left transparent to avoid dialog changing size */ +.polkit-dialog-null-label { + font-size: 10pt; + color: rgba(0,0,0,0); + padding-bottom: 8px; } /* Magnifier */ diff --git a/gnome-shell/theme/mosaic-view-active.svg b/gnome-shell/theme/mosaic-view-active.svg deleted file mode 100644 index 7b75464..0000000 --- a/gnome-shell/theme/mosaic-view-active.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/mosaic-view.svg b/gnome-shell/theme/mosaic-view.svg deleted file mode 100644 index 05edb3e..0000000 --- a/gnome-shell/theme/mosaic-view.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/move-window-on-new.svg b/gnome-shell/theme/move-window-on-new.svg deleted file mode 100644 index b1f2a10..0000000 --- a/gnome-shell/theme/move-window-on-new.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/remove-workspace.svg b/gnome-shell/theme/remove-workspace.svg deleted file mode 100644 index d102bf3..0000000 --- a/gnome-shell/theme/remove-workspace.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/section-more-open.svg b/gnome-shell/theme/section-more-open.svg deleted file mode 100644 index e69481e..0000000 --- a/gnome-shell/theme/section-more-open.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - diff --git a/gnome-shell/theme/section-more.svg b/gnome-shell/theme/section-more.svg deleted file mode 100644 index 29d42fc..0000000 --- a/gnome-shell/theme/section-more.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - diff --git a/gnome-shell/theme/separator-white.png b/gnome-shell/theme/separator-white.png deleted file mode 100644 index bd846a4..0000000 Binary files a/gnome-shell/theme/separator-white.png and /dev/null differ diff --git a/gnome-shell/theme/single-view-active.svg b/gnome-shell/theme/single-view-active.svg deleted file mode 100644 index 4bbdf1b..0000000 --- a/gnome-shell/theme/single-view-active.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/gnome-shell/theme/single-view.svg b/gnome-shell/theme/single-view.svg deleted file mode 100644 index 72812b1..0000000 --- a/gnome-shell/theme/single-view.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/gnome-shell/theme/toggle-off-intl.svg b/gnome-shell/theme/toggle-off-intl.svg new file mode 100644 index 0000000..dce734c --- /dev/null +++ b/gnome-shell/theme/toggle-off-intl.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/toggle-off-us.svg b/gnome-shell/theme/toggle-off-us.svg new file mode 100644 index 0000000..0629c1c --- /dev/null +++ b/gnome-shell/theme/toggle-off-us.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/toggle-on-intl.svg b/gnome-shell/theme/toggle-on-intl.svg new file mode 100644 index 0000000..daafb33 --- /dev/null +++ b/gnome-shell/theme/toggle-on-intl.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/toggle-on-us.svg b/gnome-shell/theme/toggle-on-us.svg new file mode 100644 index 0000000..2ad2191 --- /dev/null +++ b/gnome-shell/theme/toggle-on-us.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/ws-switch-arrow-down.svg b/gnome-shell/theme/ws-switch-arrow-down.svg new file mode 100644 index 0000000..e3593d4 --- /dev/null +++ b/gnome-shell/theme/ws-switch-arrow-down.svg @@ -0,0 +1,86 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnome-shell/theme/ws-switch-arrow-left.svg b/gnome-shell/theme/ws-switch-arrow-left.svg deleted file mode 100644 index a4ee331..0000000 --- a/gnome-shell/theme/ws-switch-arrow-left.svg +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/ws-switch-arrow-right.svg b/gnome-shell/theme/ws-switch-arrow-right.svg deleted file mode 100644 index 6da5cf6..0000000 --- a/gnome-shell/theme/ws-switch-arrow-right.svg +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gnome-shell/theme/ws-switch-arrow-up.svg b/gnome-shell/theme/ws-switch-arrow-up.svg new file mode 100644 index 0000000..b79dee9 --- /dev/null +++ b/gnome-shell/theme/ws-switch-arrow-up.svg @@ -0,0 +1,86 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + From vmiklos at frugalware.org Fri Apr 15 13:19:43 2011 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 15 Apr 2011 13:19:43 +0200 (CEST) Subject: [Frugalware-git] pacman-tools: repoman: owner for stable/current is now repo Message-ID: <20110415111943.9F68A1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=9cc4c790bb0f01165d08e6b9fea7f1393fdd7e24 commit 9cc4c790bb0f01165d08e6b9fea7f1393fdd7e24 Author: Miklos Vajna Date: Fri Apr 15 13:19:32 2011 +0200 repoman: owner for stable/current is now repo diff --git a/repoman.d/current b/repoman.d/current index aeaf3e9..9993f51 100644 --- a/repoman.d/current +++ b/repoman.d/current @@ -19,6 +19,6 @@ current_servers=( # the rest is only for developers who upload packages # if the server requires sudo usage, the name of the user to execute the commands as -current_sudo="vmiklos" +current_sudo="repo" # name of the package database current_fdb="frugalware-current.fdb" diff --git a/repoman.d/stable b/repoman.d/stable index 757cad8..41babfd 100644 --- a/repoman.d/stable +++ b/repoman.d/stable @@ -19,6 +19,6 @@ stable_servers=( # the rest is only for developers who upload packages # if the server requires sudo usage, the name of the user to execute the commands as -stable_sudo="vmiklos" +stable_sudo="repo" # name of the package database stable_fdb="frugalware.fdb" diff --git a/repoman.txt b/repoman.txt index 429624e..e8f4aa7 100644 --- a/repoman.txt +++ b/repoman.txt @@ -86,7 +86,7 @@ $ git config branch.master.rebase true ---- Here you should substitute with the nick of the repo owner, currently -vmiklos. +'repo'. === Updating the repo @@ -197,7 +197,7 @@ $ repoman -k push Will be interactive only in case there is some unrecorded change. -Usually I (vmiklos) use the following: +It's recommended to do the following: ---- $ repoman rec diff --git a/tools/mirrors.py b/tools/mirrors.py index 2576761..13bb11e 100644 --- a/tools/mirrors.py +++ b/tools/mirrors.py @@ -70,7 +70,7 @@ sock.write(""") # the rest is only for developers who upload packages # if the server requires sudo usage, the name of the user to execute the commands as -%s_sudo="vmiklos" +%s_sudo="repo" # name of the package database %s_fdb="%s.fdb" """ % (out, out, repo)) From devil505linux at gmail.com Fri Apr 15 22:45:54 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 15 Apr 2011 22:45:54 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating wallpapers for XFCE Message-ID: <20110415204554.5C8A61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=c4c67b074478b78dc95c2276bfc43abd2a746b03 commit c4c67b074478b78dc95c2276bfc43abd2a746b03 Author: Devil505 Date: Fri Apr 15 21:57:47 2011 +0200 * updating wallpapers for XFCE diff --git a/xfce-frugalware/frugalware.png b/xfce-frugalware/frugalware.png index c4ac9cf..13a8e64 100644 Binary files a/xfce-frugalware/frugalware.png and b/xfce-frugalware/frugalware.png differ diff --git a/xfce-frugalware/frugalware_wide.png b/xfce-frugalware/frugalware_wide.png index 96477e7..8aef04a 100644 Binary files a/xfce-frugalware/frugalware_wide.png and b/xfce-frugalware/frugalware_wide.png differ From devil505linux at gmail.com Fri Apr 15 22:45:54 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 15 Apr 2011 22:45:54 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating wallpapers for GNOME Message-ID: <20110415204554.840001358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=2b3f77103476f9896833bc195c3fededd09ba219 commit 2b3f77103476f9896833bc195c3fededd09ba219 Author: Devil505 Date: Fri Apr 15 22:41:38 2011 +0200 * updating wallpapers for GNOME diff --git a/gnome-frugalware/wallpaper/frugalware.png b/gnome-frugalware/wallpaper/frugalware.png index c4ac9cf..13a8e64 100644 Binary files a/gnome-frugalware/wallpaper/frugalware.png and b/gnome-frugalware/wallpaper/frugalware.png differ diff --git a/gnome-frugalware/wallpaper/frugalware_wide.png b/gnome-frugalware/wallpaper/frugalware_wide.png index 96477e7..8aef04a 100644 Binary files a/gnome-frugalware/wallpaper/frugalware_wide.png and b/gnome-frugalware/wallpaper/frugalware_wide.png differ From devil505linux at gmail.com Fri Apr 15 22:45:54 2011 From: devil505linux at gmail.com (Devil505) Date: Fri, 15 Apr 2011 22:45:54 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating wallpapers for LXDE Message-ID: <20110415204554.929E4135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=43214bf8b9ef36aee5a5baee4bbf1893728c3d2f commit 43214bf8b9ef36aee5a5baee4bbf1893728c3d2f Author: Devil505 Date: Fri Apr 15 22:43:25 2011 +0200 * updating wallpapers for LXDE diff --git a/lxde-frugalware/frugalware.png b/lxde-frugalware/frugalware.png index c4ac9cf..13a8e64 100644 Binary files a/lxde-frugalware/frugalware.png and b/lxde-frugalware/frugalware.png differ diff --git a/lxde-frugalware/frugalware_wide.png b/lxde-frugalware/frugalware_wide.png index 96477e7..8aef04a 100644 Binary files a/lxde-frugalware/frugalware_wide.png and b/lxde-frugalware/frugalware_wide.png differ From achevaux at gmail.com Fri Apr 15 23:39:58 2011 From: achevaux at gmail.com (centuri0) Date: Fri, 15 Apr 2011 23:39:58 +0200 (CEST) Subject: [Frugalware-git] artwork: * Updating wallpaper stuff for KDE (what a mess in here...) Message-ID: <20110415213958.C45251358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=065d088d118746b8dfee1f358bec102c8399c315 commit 065d088d118746b8dfee1f358bec102c8399c315 Author: centuri0 Date: Fri Apr 15 23:38:03 2011 +0200 * Updating wallpaper stuff for KDE (what a mess in here...) diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/1280x800.jpg b/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/1280x800.jpg deleted file mode 100755 index 57b2001..0000000 Binary files a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/1280x800.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware/1280x800.jpg b/kde-frugalware/artwork/theme/kdm/Frugalware/1280x800.jpg new file mode 100644 index 0000000..2617049 Binary files /dev/null and b/kde-frugalware/artwork/theme/kdm/Frugalware/1280x800.jpg differ diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/nexon-kdm.xml b/kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/nexon-kdm.xml rename to kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/KdmGreeterTheme.desktop b/kde-frugalware/artwork/theme/kdm/Frugalware/KdmGreeterTheme.desktop similarity index 65% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/KdmGreeterTheme.desktop rename to kde-frugalware/artwork/theme/kdm/Frugalware/KdmGreeterTheme.desktop index 51eb64f..c1da6f6 100755 --- a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/KdmGreeterTheme.desktop +++ b/kde-frugalware/artwork/theme/kdm/Frugalware/KdmGreeterTheme.desktop @@ -2,8 +2,8 @@ # it as such [KdmGreeterTheme] -Greeter=nexon-kdm.xml -Name=Frugalware-Nexon +Greeter=Frugalware-kdm.xml +Name=Frugalware Author=Frugalware Devel Team -Copyright=GPL 2010 | http://frugalware.org +Copyright=GPL 2011 | http://frugalware.org Screenshot=screenshot.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/caps.png b/kde-frugalware/artwork/theme/kdm/Frugalware/caps.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/caps.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/caps.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/icon-kde.png b/kde-frugalware/artwork/theme/kdm/Frugalware/icon-kde.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/icon-kde.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/icon-kde.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/pw-entry-li.png b/kde-frugalware/artwork/theme/kdm/Frugalware/pw-entry-li.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/pw-entry-li.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/pw-entry-li.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/pw-entry.png b/kde-frugalware/artwork/theme/kdm/Frugalware/pw-entry.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/pw-entry.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/pw-entry.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/screenshot.png b/kde-frugalware/artwork/theme/kdm/Frugalware/screenshot.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/screenshot.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/screenshot.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/session_button-li.png b/kde-frugalware/artwork/theme/kdm/Frugalware/session_button-li.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/session_button-li.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/session_button-li.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/session_button.png b/kde-frugalware/artwork/theme/kdm/Frugalware/session_button.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/session_button.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/session_button.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/system_button-li.png b/kde-frugalware/artwork/theme/kdm/Frugalware/system_button-li.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/system_button-li.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/system_button-li.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/system_button.png b/kde-frugalware/artwork/theme/kdm/Frugalware/system_button.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/system_button.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/system_button.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/user-entry-li.png b/kde-frugalware/artwork/theme/kdm/Frugalware/user-entry-li.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/user-entry-li.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/user-entry-li.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/user-entry.png b/kde-frugalware/artwork/theme/kdm/Frugalware/user-entry.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/user-entry.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/user-entry.png diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/win-login.png b/kde-frugalware/artwork/theme/kdm/Frugalware/win-login.png similarity index 100% rename from kde-frugalware/artwork/theme/kdm/Frugalware-Nexon/win-login.png rename to kde-frugalware/artwork/theme/kdm/Frugalware/win-login.png diff --git a/kde-frugalware/artwork/theme/kdm/pics/shutdown.jpg b/kde-frugalware/artwork/theme/kdm/pics/shutdown.jpg index 0b43cf4..be634b5 100644 Binary files a/kde-frugalware/artwork/theme/kdm/pics/shutdown.jpg and b/kde-frugalware/artwork/theme/kdm/pics/shutdown.jpg differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1680x1050/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1680x1050/background.png deleted file mode 100644 index e8fcf41..0000000 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1680x1050/background.png and /dev/null differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1920x1200/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1920x1200/background.png deleted file mode 100644 index d2cc746..0000000 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1920x1200/background.png and /dev/null differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/600x400/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/600x400/background.png deleted file mode 100644 index dd5d1cd..0000000 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/600x400/background.png and /dev/null differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/800x600/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/800x600/background.png deleted file mode 100644 index e151111..0000000 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/800x600/background.png and /dev/null differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/Theme.rc b/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/Theme.rc deleted file mode 100644 index 1bfcf07..0000000 --- a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/Theme.rc +++ /dev/null @@ -1,8 +0,0 @@ -[KSplash Theme: Frugalware-Nexon] -Name = Frugalware-Nexon -Description = KDE Splash Screen For Nexon with Faenza icons -Version = 1.0 -Author = Frugalware Devel Team -Copyright = GPL 2010 | http://frugalware.org -Homepage = frugalware.org -Engine = KSplashX diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1024x768/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1024x768/background.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1280x1024/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1280x1024/background.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/background.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/description.txt b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/description.txt similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/description.txt rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/description.txt diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon1.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon1.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon1.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon1.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon1_anim.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon1_anim.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon1_anim.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon1_anim.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon2.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon2.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon2.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon2.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon2_anim.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon2_anim.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon2_anim.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon2_anim.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon3.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon3.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon3.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon3.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon3_anim.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon3_anim.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon3_anim.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon3_anim.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon4.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon4.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon4.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon4.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon4_anim.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon4_anim.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon4_anim.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon4_anim.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon5.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon5.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon5.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon5.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon5_anim.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon5_anim.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/icon5_anim.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/icon5_anim.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/rectangle.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/rectangle.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/1600x1200/rectangle.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/rectangle.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/1680x1050/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1680x1050/background.png new file mode 100644 index 0000000..8638ad0 Binary files /dev/null and b/kde-frugalware/artwork/theme/ksplash/Frugalware/1680x1050/background.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/1920x1200/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1920x1200/background.png new file mode 100644 index 0000000..6e94713 Binary files /dev/null and b/kde-frugalware/artwork/theme/ksplash/Frugalware/1920x1200/background.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/Preview.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png similarity index 100% rename from kde-frugalware/artwork/theme/ksplash/Frugalware-Nexon/Preview.png rename to kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc b/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc new file mode 100644 index 0000000..b198247 --- /dev/null +++ b/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc @@ -0,0 +1,8 @@ +[KSplash Theme: Frugalware] +Name = Frugalware +Description = KDE Splash Screen For Frugalware with Faenza icons +Version = 1.0 +Author = Frugalware Devel Team +Copyright = GPL 2011 | http://frugalware.org +Homepage = frugalware.org +Engine = KSplashX diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1024x768.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1024x768.jpg deleted file mode 100644 index 85832dd..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1024x768.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x1024.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x1024.jpg deleted file mode 100644 index abd0560..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x1024.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x800.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x800.jpg deleted file mode 100644 index 57b2001..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1280x800.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1440x900.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1440x900.jpg deleted file mode 100644 index ab416bc..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1440x900.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.jpg deleted file mode 100644 index 040e01c..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.jpg deleted file mode 100644 index cdb10a6..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.png b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1080.png differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1200.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1200.jpg deleted file mode 100644 index 9e4b4e8..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1920x1200.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.jpg b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.jpg deleted file mode 100644 index 080eb3c..0000000 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.jpg and /dev/null differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.png b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.png new file mode 100644 index 0000000..13a8e64 Binary files /dev/null and b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/2560x1600.png differ diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/screenshot.png b/kde-frugalware/artwork/wallpaper/Frugalware/contents/screenshot.png index 007b09c..1a95765 100644 Binary files a/kde-frugalware/artwork/wallpaper/Frugalware/contents/screenshot.png and b/kde-frugalware/artwork/wallpaper/Frugalware/contents/screenshot.png differ From achevaux at gmail.com Fri Apr 15 23:45:39 2011 From: achevaux at gmail.com (centuri0) Date: Fri, 15 Apr 2011 23:45:39 +0200 (CEST) Subject: [Frugalware-git] artwork: * uptading config file Message-ID: <20110415214539.E927E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=16bfdce9b860897f66d39eba763319c52795b582 commit 16bfdce9b860897f66d39eba763319c52795b582 Author: centuri0 Date: Fri Apr 15 23:43:17 2011 +0200 * uptading config file diff --git a/kde-frugalware/config/kdmrc b/kde-frugalware/config/kdmrc index 34f3139..710e611 100644 --- a/kde-frugalware/config/kdmrc +++ b/kde-frugalware/config/kdmrc @@ -51,7 +51,7 @@ SelectedUsers=@users ShowUsers=Selected SortUsers=true StdFont=DejaVu Sans,13,-1,5,50,0,0,0,0,0 -Theme=/usr/share/apps/kdm/themes/Frugalware-Nexon +Theme=/usr/share/apps/kdm/themes/Frugalware UseBackground=true UseTheme=true UserCompletion=false From bouleetbil at frogdev.info Sat Apr 16 07:33:08 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 07:33:08 +0200 (CEST) Subject: [Frugalware-git] gnometesting: glib2-2.28.6-1-x86_64 Message-ID: <20110416053308.03A971358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=9ce2495c459b65129ef0ae30a2ba0b664e44ab66 commit 9ce2495c459b65129ef0ae30a2ba0b664e44ab66 Author: bouleetbil Date: Sat Apr 16 07:32:31 2011 +0200 glib2-2.28.6-1-x86_64 *Version bump diff --git a/source/base/glib2/FrugalBuild b/source/base/glib2/FrugalBuild index 377d66d..27155f0 100644 --- a/source/base/glib2/FrugalBuild +++ b/source/base/glib2/FrugalBuild @@ -4,7 +4,7 @@ USE_DOC=${USE_DOC:-"y"} pkgname=glib2 -pkgver=2.28.5 +pkgver=2.28.6 pkgrel=1 pkgdesc="Common C routines used by GTK+2 and other libraries" url="http://www.gtk.org/" @@ -21,7 +21,7 @@ source=($source \ glib2.sh \ glib2.csh \ 71_gio_launch_handler.patch) -sha1sums=('6cfc1a4e5ed069f0282b90de7635a5704cf7c04c' \ +sha1sums=('51996339c823cf36ba28c774c4afad933d5f5744' \ 'bfe05590a6498259f1045a591fd886a8572f271a' \ '6db09da816d69aab7a5cbf3460ee082bef200891' \ '794b92b0088043adcf67e8bf3c34b0bddc59eb13') From bouleetbil at frogdev.info Sat Apr 16 07:45:38 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 07:45:38 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+3-3.0.9-1-x86_64 Message-ID: <20110416054538.B38291358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c1f69d6214dfe303c02f73befa19bfc8c6d4cb70 commit c1f69d6214dfe303c02f73befa19bfc8c6d4cb70 Author: bouleetbil Date: Sat Apr 16 07:44:53 2011 +0200 gtk+3-3.0.9-1-x86_64 *Version bump diff --git a/source/xlib/gtk+3/FrugalBuild b/source/xlib/gtk+3/FrugalBuild index 38432e9..12f650f 100644 --- a/source/xlib/gtk+3/FrugalBuild +++ b/source/xlib/gtk+3/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gtk+3 _F_gnome_name=gtk+ -pkgver=3.0.8 +pkgver=3.0.9 pkgrel=1 pkgdesc="The GTK+ Toolkit (3.x series)" depends=('libxext' 'libxfixes' 'cairo' 'libgcc' 'libjpeg' 'libtiff' 'libcups' \ @@ -18,7 +18,7 @@ Finclude gnome url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" source=($source im-cedilla.conf) -sha1sums=('763827465edfa8ffa5b4e445b1e59a01b305cdd0' \ +sha1sums=('b231bf1402e8868201321323941a089ad2866258' \ 'f8a64241bcc873c1f1110e16306e48577a41852b') if [ "$_F_gnome_git" != "n" ]; then From bouleetbil at frogdev.info Sat Apr 16 08:11:30 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:11:30 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gedit-plugins-3.0.1-1-x86_64 Message-ID: <20110416061130.37F171358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=3bad5de471bf05f824e112fd00da36ac396e8e52 commit 3bad5de471bf05f824e112fd00da36ac396e8e52 Author: bouleetbil Date: Sat Apr 16 08:10:57 2011 +0200 gedit-plugins-3.0.1-1-x86_64 *Version bump diff --git a/source/gnome-extra/gedit-plugins/FrugalBuild b/source/gnome-extra/gedit-plugins/FrugalBuild index 112c425..584ffeb 100644 --- a/source/gnome-extra/gedit-plugins/FrugalBuild +++ b/source/gnome-extra/gedit-plugins/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: bouleetbil pkgname=gedit-plugins -pkgver=3.0.0 +pkgver=3.0.1 pkgrel=1 pkgdesc="Plugins for gedit" -depends=('gedit>=3.0.0' 'gucharmap') +depends=('gedit>=3.0.1' 'gucharmap') makedepends=('intltool' 'gnome-doc-utils>=0.16.0' 'gtk-doc') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_desktop="y" _F_gnome_glib="y" Finclude gnome gnome-scriptlet -sha1sums=('69da081749e34da5af343535c44aeb5c797f9de1') +sha1sums=('90f53c7f42e0e76b1d5e686b3af20a269c2c1b6c') From bouleetbil at frogdev.info Sat Apr 16 08:26:45 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:26:45 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-vfs-2.24.4-5-x86_64 Message-ID: <20110416062645.311521358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=e97278e9d4435a2c81883f5995eeeaf76e0d981d commit e97278e9d4435a2c81883f5995eeeaf76e0d981d Author: bouleetbil Date: Sat Apr 16 08:26:12 2011 +0200 gnome-vfs-2.24.4-5-x86_64 *disable useless hal support diff --git a/source/gnome/gnome-vfs/FrugalBuild b/source/gnome/gnome-vfs/FrugalBuild index d4246ef..7fe5e57 100644 --- a/source/gnome/gnome-vfs/FrugalBuild +++ b/source/gnome/gnome-vfs/FrugalBuild @@ -4,10 +4,10 @@ pkgname=gnome-vfs pkgver=2.24.4 -pkgrel=4 +pkgrel=5 pkgdesc="GNOME Virtual File System" url="http://www.gnome.org/" -depends=('gconf>=2.28.0' 'bzip2' 'hal>=0.5.8.1' 'dbus-glib>=0.74-2' 'gnome-mime-data' 'gamin>=0.1.9-2' \ +depends=('gconf>=2.28.0' 'bzip2' 'dbus-glib>=0.74-2' 'gnome-mime-data' 'gamin>=0.1.9-2' \ 'avahi-glib>=0.6.17' 'xfsprogs-acl' 'libkrb5' 'db>=4.7.25' 'pmount' 'openssl>=1.0.0' \ 'libxml2>=2.7.8') makedepends=('intltool' 'krb5' 'samba') @@ -41,9 +41,7 @@ build() { #intltoolize -c -f || Fdie # Disabled gtk-doc for now (2.22) coz it fails Fmake --disable-schemas-install --disable-gtk-doc --disable-cdda \ - --with-hal-mount=/usr/bin/pmount-hal \ - --with-hal-umount=/usr/bin/pumount \ - --enable-hal --enable-avahi --enable-ipv6 + --enable-hal --enable-avahi --enable-ipv6 --disable-hal Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 Fbuild_gnome_scriptlet } From bouleetbil at frogdev.info Sat Apr 16 08:29:20 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:29:20 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-utils-3.0.0-2-x86_64 Message-ID: <20110416062920.872301358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0ded68d85b07aa5922f31212951b3885498c71f9 commit 0ded68d85b07aa5922f31212951b3885498c71f9 Author: bouleetbil Date: Sat Apr 16 08:28:45 2011 +0200 gnome-utils-3.0.0-2-x86_64 *disable useless hal support diff --git a/source/gnome/gnome-utils/FrugalBuild b/source/gnome/gnome-utils/FrugalBuild index 82e0da0..4ad4035 100644 --- a/source/gnome/gnome-utils/FrugalBuild +++ b/source/gnome/gnome-utils/FrugalBuild @@ -3,11 +3,11 @@ pkgname=gnome-utils pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME utilities" url="http://www.gnome.org/" depends=('libxml2>=2.7.8' 'gtk+3' 'e2fsprogs' 'rarian' 'gsettings-desktop-schemas' \ - 'desktop-file-utils' 'hal>=0.5.8.1-4' 'libgtop>=2.28.1' \ + 'desktop-file-utils' 'libgtop>=2.28.1' \ 'dbus-glib>=0.71' 'avahi-glib>=0.6.17' 'libcanberra-gtk') makedepends=('intltool' 'gnome-doc-utils>=0.16.0' 'gtk-doc') groups=('gnome') From bouleetbil at frogdev.info Sat Apr 16 08:31:45 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:31:45 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-keyring-3.0.0-2-x86_64 Message-ID: <20110416063145.1ACC21358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=173fea6d6e9f75587f5caff60a3b39b5c2997ef8 commit 173fea6d6e9f75587f5caff60a3b39b5c2997ef8 Author: bouleetbil Date: Sat Apr 16 08:31:12 2011 +0200 gnome-keyring-3.0.0-2-x86_64 *disable useless hal support diff --git a/source/gnome/gnome-keyring/FrugalBuild b/source/gnome/gnome-keyring/FrugalBuild index 28bf032..e277877 100644 --- a/source/gnome/gnome-keyring/FrugalBuild +++ b/source/gnome/gnome-keyring/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnome-keyring pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Password and keyring managing daemon for GNOME" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'gtk+3' 'dbus-glib>=0.76-1' 'hal' 'libtasn1>=1.4' 'gconf' 'pam' 'libgnome-keyring>=3.0.0') +depends=('libxml2>=2.7.8' 'gtk+3' 'dbus-glib>=0.76-1' 'libtasn1>=1.4' 'gconf' 'pam' 'libgnome-keyring>=3.0.0') makedepends=('intltool' 'gtk-doc>=1.9') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Sat Apr 16 08:37:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:37:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-power-manager-3.0.0-2-x86_64 Message-ID: <20110416063722.737A41358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=97d556ec281523215d49fd7a11ec5dee5b494abc commit 97d556ec281523215d49fd7a11ec5dee5b494abc Author: bouleetbil Date: Sat Apr 16 08:36:49 2011 +0200 gnome-power-manager-3.0.0-2-x86_64 *disable useless hal support diff --git a/source/gnome/gnome-power-manager/FrugalBuild b/source/gnome/gnome-power-manager/FrugalBuild index 5c80322..d30a4e7 100644 --- a/source/gnome/gnome-power-manager/FrugalBuild +++ b/source/gnome/gnome-power-manager/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnome-power-manager pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME Power Management tool" url="http://www.gnome.org/" -depends=('libxml2>=2.7.8' 'libnotify>=0.7.0' 'hal>=0.5.11' 'dbus-glib>=0.80' 'xextproto' 'libgnome>=2.30.0' \ +depends=('libxml2>=2.7.8' 'libnotify>=0.7.0' 'dbus-glib>=0.80' 'xextproto' 'libgnome>=2.30.0' \ 'libglade' 'libwnck>=2.90.0' 'gnome-keyring>=3.0.0' 'gstreamer' 'gnome-control-center>=2.90.0' \ 'upower' 'udisks' 'gnome-policykit' 'libcanberra-gtk' 'unique' 'pm-utils') makedepends=('intltool' 'gnome-doc-utils') From bouleetbil at frogdev.info Sat Apr 16 08:48:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:48:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gtk+2-engines-murrine *back to main Message-ID: <20110416064802.20CBF1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4c12ad7f0d8578934ee86182be4850262f662598 commit 4c12ad7f0d8578934ee86182be4850262f662598 Author: bouleetbil Date: Sat Apr 16 08:38:00 2011 +0200 gtk+2-engines-murrine *back to main diff --git a/source/gnome-extra/gtk+2-engines-murrine/FrugalBuild b/source/gnome/gtk+2-engines-murrine/FrugalBuild similarity index 99% rename from source/gnome-extra/gtk+2-engines-murrine/FrugalBuild rename to source/gnome/gtk+2-engines-murrine/FrugalBuild index a22078f..fde551c 100644 --- a/source/gnome-extra/gtk+2-engines-murrine/FrugalBuild +++ b/source/gnome/gtk+2-engines-murrine/FrugalBuild @@ -5,12 +5,12 @@ pkgname=gtk+2-engines-murrine pkgver=0.98.1.1 _F_gnome_name="murrine" Finclude gnome -pkgrel=3 +pkgrel=4 dlurl="http://www.gnome-look.org/CONTENT/content-files/" pkgdesc="Murrine is a fast and modern looking GTK+2 engine." depends=('libxml2>=2.7.8' 'gtk+2>=2.22.1' 'gtk+2-engines' 'gnome-icon-theme') makedepends=('intltool') -groups=('gnome-extra') +groups=('gnome') archs=('i686' 'x86_64' 'ppc') source=($source \ 'http://cimi.netsons.org/media/download_gallery/MurrineThemePack.tar.bz2' \ From bouleetbil at frogdev.info Sat Apr 16 08:48:02 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 08:48:02 +0200 (CEST) Subject: [Frugalware-git] gnometesting: brasero-3.0.0-2-x86_64 Message-ID: <20110416064802.36F7A1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d45ebb6a2f769462c80f89a84da158c7eb8f75b5 commit d45ebb6a2f769462c80f89a84da158c7eb8f75b5 Author: bouleetbil Date: Sat Apr 16 08:47:26 2011 +0200 brasero-3.0.0-2-x86_64 *disable useless hal support diff --git a/source/gnome/brasero/FrugalBuild b/source/gnome/brasero/FrugalBuild index 75d857a..3e520f9 100644 --- a/source/gnome/brasero/FrugalBuild +++ b/source/gnome/brasero/FrugalBuild @@ -3,13 +3,13 @@ pkgname=brasero pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="A CD/DVD Burning application for the GNOME desktop." url="http://www.gnome.org/projects/brasero/" makedepends=('intltool' 'gnome-doc-utils') depends=('gtk+3>=3.0.8' 'libisofs' 'libburn' \ 'gstreamer' 'gst-plugins-base' 'gst-plugins-good' \ - 'hal>=0.5.11' 'libxml2' 'totem>=3.0.0' 'perl-xml-parser' 'dbus-glib>=0.80' \ + 'libxml2' 'totem>=3.0.0' 'perl-xml-parser' 'dbus-glib>=0.80' \ 'libbeagle' 'popt' 'libdvdcss' 'libcanberra-gtk') makedepends=('gnome-doc-utils' 'intltool' 'gobject-introspection') groups=('gnome') From achevaux at gmail.com Sat Apr 16 09:06:19 2011 From: achevaux at gmail.com (centuri0) Date: Sat, 16 Apr 2011 09:06:19 +0200 (CEST) Subject: [Frugalware-git] artwork: * Updating wallpalers in KDE (4x3) Message-ID: <20110416070619.91AFA1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=b797b124d1bb4cf67f34f17f29bd2bbc96de0e14 commit b797b124d1bb4cf67f34f17f29bd2bbc96de0e14 Author: centuri0 Date: Sat Apr 16 09:05:44 2011 +0200 * Updating wallpalers in KDE (4x3) diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png index 6542821..3c9dd95 100644 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png and b/kde-frugalware/artwork/theme/ksplash/Frugalware/1024x768/background.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png index 537d1b2..941e3a9 100644 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png and b/kde-frugalware/artwork/theme/ksplash/Frugalware/1280x1024/background.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png index 1b48d92..0f70c28 100644 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png and b/kde-frugalware/artwork/theme/ksplash/Frugalware/1600x1200/background.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png b/kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png index 099ce05..0227ba3 100644 Binary files a/kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png and b/kde-frugalware/artwork/theme/ksplash/Frugalware/Preview.png differ diff --git a/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc b/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc index b198247..2ab9da9 100644 --- a/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc +++ b/kde-frugalware/artwork/theme/ksplash/Frugalware/Theme.rc @@ -1,7 +1,7 @@ [KSplash Theme: Frugalware] Name = Frugalware Description = KDE Splash Screen For Frugalware with Faenza icons -Version = 1.0 +Version = 1.1 Author = Frugalware Devel Team Copyright = GPL 2011 | http://frugalware.org Homepage = frugalware.org diff --git a/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.png b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.png new file mode 100644 index 0000000..0f70c28 Binary files /dev/null and b/kde-frugalware/artwork/wallpaper/Frugalware/contents/images/1600x1200.png differ From devil505linux at gmail.com Sat Apr 16 10:07:01 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:01 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating xdm theme with new wallpaper Message-ID: <20110416080701.EB0BB1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=ed561bf219183c0a394ea53abc86738c059a4097 commit ed561bf219183c0a394ea53abc86738c059a4097 Author: Devil505 Date: Sat Apr 16 09:39:00 2011 +0200 * updating xdm theme with new wallpaper diff --git a/xdm-frugalware/background.png b/xdm-frugalware/background.png index 2f501e6..0f70c28 100644 Binary files a/xdm-frugalware/background.png and b/xdm-frugalware/background.png differ From devil505linux at gmail.com Sat Apr 16 10:07:01 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:01 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating wallpapers * added a second widescreen version (for 16/9) * added xml file for the second widescreen version in gnome-frugalware Message-ID: <20110416080701.CFD121358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=8442296dd67644a51f8ebabbd631978b0f173ea0 commit 8442296dd67644a51f8ebabbd631978b0f173ea0 Author: Devil505 Date: Sat Apr 16 09:36:40 2011 +0200 * updating wallpapers * added a second widescreen version (for 16/9) * added xml file for the second widescreen version in gnome-frugalware diff --git a/gnome-frugalware/wallpaper/frugalware.png b/gnome-frugalware/wallpaper/frugalware.png index 13a8e64..0f70c28 100644 Binary files a/gnome-frugalware/wallpaper/frugalware.png and b/gnome-frugalware/wallpaper/frugalware.png differ diff --git a/gnome-frugalware/wallpaper/frugalware_wide.png b/gnome-frugalware/wallpaper/frugalware_wide.png index 8aef04a..13a8e64 100644 Binary files a/gnome-frugalware/wallpaper/frugalware_wide.png and b/gnome-frugalware/wallpaper/frugalware_wide.png differ diff --git a/gnome-frugalware/wallpaper/frugalware_wide2.png b/gnome-frugalware/wallpaper/frugalware_wide2.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/gnome-frugalware/wallpaper/frugalware_wide2.png differ diff --git a/gnome-frugalware/wallpaper/gnome-frugalware_wide2.xml b/gnome-frugalware/wallpaper/gnome-frugalware_wide2.xml new file mode 100644 index 0000000..4d3495c --- /dev/null +++ b/gnome-frugalware/wallpaper/gnome-frugalware_wide2.xml @@ -0,0 +1,9 @@ + + + + + Frugalware (widescreen 16/9) + /usr/share/pixmaps/backgrounds/gnome/frugalware/frugalware_wide2.png + stretched + + diff --git a/lxde-frugalware/frugalware.png b/lxde-frugalware/frugalware.png index 13a8e64..0f70c28 100644 Binary files a/lxde-frugalware/frugalware.png and b/lxde-frugalware/frugalware.png differ diff --git a/lxde-frugalware/frugalware_wide.png b/lxde-frugalware/frugalware_wide.png index 8aef04a..13a8e64 100644 Binary files a/lxde-frugalware/frugalware_wide.png and b/lxde-frugalware/frugalware_wide.png differ diff --git a/lxde-frugalware/frugalware_wide2.png b/lxde-frugalware/frugalware_wide2.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/lxde-frugalware/frugalware_wide2.png differ diff --git a/xfce-frugalware/frugalware.png b/xfce-frugalware/frugalware.png index 13a8e64..0f70c28 100644 Binary files a/xfce-frugalware/frugalware.png and b/xfce-frugalware/frugalware.png differ diff --git a/xfce-frugalware/frugalware_wide.png b/xfce-frugalware/frugalware_wide.png index 8aef04a..13a8e64 100644 Binary files a/xfce-frugalware/frugalware_wide.png and b/xfce-frugalware/frugalware_wide.png differ diff --git a/xfce-frugalware/frugalware_wide2.png b/xfce-frugalware/frugalware_wide2.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/xfce-frugalware/frugalware_wide2.png differ From devil505linux at gmail.com Sat Apr 16 10:07:02 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:02 +0200 (CEST) Subject: [Frugalware-git] artwork: * fixing wallpaper version Message-ID: <20110416080702.05B00135844A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=ce5a217cfc90120f713a5e845ce24cbd4cec5cba commit ce5a217cfc90120f713a5e845ce24cbd4cec5cba Author: Devil505 Date: Sat Apr 16 09:40:32 2011 +0200 * fixing wallpaper version diff --git a/xdm-frugalware/background.png b/xdm-frugalware/background.png index 0f70c28..13a8e64 100644 Binary files a/xdm-frugalware/background.png and b/xdm-frugalware/background.png differ From devil505linux at gmail.com Sat Apr 16 10:07:02 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:02 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating wallpapers for fluxbox Message-ID: <20110416080702.4B3D7135844B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=c9f4e5f0a6c902face6b0c40b8ec6879152ba616 commit c9f4e5f0a6c902face6b0c40b8ec6879152ba616 Author: Devil505 Date: Sat Apr 16 09:41:41 2011 +0200 * updating wallpapers for fluxbox diff --git a/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware.png b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware.png index c4ac9cf..0f70c28 100644 Binary files a/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware.png and b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware.png differ diff --git a/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide.png b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide.png index 96477e7..13a8e64 100644 Binary files a/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide.png and b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide.png differ diff --git a/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide2.png b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide2.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/fluxbox-frugalware/skel/.fluxbox/backgrounds/frugalware_wide2.png differ From devil505linux at gmail.com Sat Apr 16 10:07:02 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:02 +0200 (CEST) Subject: [Frugalware-git] artwork: * updating slim theme with new wallpaper Message-ID: <20110416080702.5712B1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=06e7598455425954dd716925da2be3f567146b02 commit 06e7598455425954dd716925da2be3f567146b02 Author: Devil505 Date: Sat Apr 16 09:48:32 2011 +0200 * updating slim theme with new wallpaper diff --git a/slim-theme/frugalware/background.png b/slim-theme/frugalware/background.png index 96477e7..13a8e64 100644 Binary files a/slim-theme/frugalware/background.png and b/slim-theme/frugalware/background.png differ From devil505linux at gmail.com Sat Apr 16 10:07:02 2011 From: devil505linux at gmail.com (Devil505) Date: Sat, 16 Apr 2011 10:07:02 +0200 (CEST) Subject: [Frugalware-git] artwork: * initial import of all official wallpapers * added a DESCRIPTION file Message-ID: <20110416080702.82BCA1358449@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=1d8f30f765087a189b2e58f21aaf530f85c61e08 commit 1d8f30f765087a189b2e58f21aaf530f85c61e08 Author: Devil505 Date: Sat Apr 16 10:02:22 2011 +0200 * initial import of all official wallpapers * added a DESCRIPTION file diff --git a/wallpapers/0.1.jpg b/wallpapers/0.1.jpg new file mode 100644 index 0000000..02ef914 Binary files /dev/null and b/wallpapers/0.1.jpg differ diff --git a/wallpapers/0.2.jpg b/wallpapers/0.2.jpg new file mode 100644 index 0000000..1d4f202 Binary files /dev/null and b/wallpapers/0.2.jpg differ diff --git a/wallpapers/0.3.jpg b/wallpapers/0.3.jpg new file mode 100644 index 0000000..b23f07b Binary files /dev/null and b/wallpapers/0.3.jpg differ diff --git a/wallpapers/0.4.jpg b/wallpapers/0.4.jpg new file mode 100644 index 0000000..9be4d4d Binary files /dev/null and b/wallpapers/0.4.jpg differ diff --git a/wallpapers/0.5.jpg b/wallpapers/0.5.jpg new file mode 100644 index 0000000..530f82b Binary files /dev/null and b/wallpapers/0.5.jpg differ diff --git a/wallpapers/0.6.jpg b/wallpapers/0.6.jpg new file mode 100644 index 0000000..1d8c732 Binary files /dev/null and b/wallpapers/0.6.jpg differ diff --git a/wallpapers/0.7.jpg b/wallpapers/0.7.jpg new file mode 100644 index 0000000..db587a8 Binary files /dev/null and b/wallpapers/0.7.jpg differ diff --git a/wallpapers/1.0.jpg b/wallpapers/1.0.jpg new file mode 100644 index 0000000..f413e65 Binary files /dev/null and b/wallpapers/1.0.jpg differ diff --git a/wallpapers/1.0wide.jpg b/wallpapers/1.0wide.jpg new file mode 100644 index 0000000..8ebe317 Binary files /dev/null and b/wallpapers/1.0wide.jpg differ diff --git a/wallpapers/1.1.jpg b/wallpapers/1.1.jpg new file mode 100644 index 0000000..8fbed42 Binary files /dev/null and b/wallpapers/1.1.jpg differ diff --git a/wallpapers/1.1wide.jpg b/wallpapers/1.1wide.jpg new file mode 100644 index 0000000..5ed02cf Binary files /dev/null and b/wallpapers/1.1wide.jpg differ diff --git a/wallpapers/1.2.jpg b/wallpapers/1.2.jpg new file mode 100644 index 0000000..5df7072 Binary files /dev/null and b/wallpapers/1.2.jpg differ diff --git a/wallpapers/1.2wide.jpg b/wallpapers/1.2wide.jpg new file mode 100644 index 0000000..0a11d9e Binary files /dev/null and b/wallpapers/1.2wide.jpg differ diff --git a/wallpapers/1.3.png b/wallpapers/1.3.png new file mode 100644 index 0000000..46f88fe Binary files /dev/null and b/wallpapers/1.3.png differ diff --git a/wallpapers/1.3wide.png b/wallpapers/1.3wide.png new file mode 100644 index 0000000..76ce793 Binary files /dev/null and b/wallpapers/1.3wide.png differ diff --git a/wallpapers/1.4.png b/wallpapers/1.4.png new file mode 100644 index 0000000..c4ac9cf Binary files /dev/null and b/wallpapers/1.4.png differ diff --git a/wallpapers/1.4wide.png b/wallpapers/1.4wide.png new file mode 100644 index 0000000..96477e7 Binary files /dev/null and b/wallpapers/1.4wide.png differ diff --git a/wallpapers/1.5.png b/wallpapers/1.5.png new file mode 100644 index 0000000..0f70c28 Binary files /dev/null and b/wallpapers/1.5.png differ diff --git a/wallpapers/1.5wide.png b/wallpapers/1.5wide.png new file mode 100644 index 0000000..13a8e64 Binary files /dev/null and b/wallpapers/1.5wide.png differ diff --git a/wallpapers/1.5wide2.png b/wallpapers/1.5wide2.png new file mode 100644 index 0000000..8aef04a Binary files /dev/null and b/wallpapers/1.5wide2.png differ diff --git a/wallpapers/DESCRIPTION b/wallpapers/DESCRIPTION new file mode 100644 index 0000000..1f7964f --- /dev/null +++ b/wallpapers/DESCRIPTION @@ -0,0 +1,22 @@ +Filename Author Resolution +0.1.jpg 4:3 +0.2.jpg Sipka, D??niel (MSD) 4:3 +0.3.jpg Gondor, Viktor (Nadfoka) 4:3 +0.4.jpg Gondor, Viktor (Nadfoka) 4:3 +0.5.jpg Gondor, Viktor (Nadfoka) 4:3 +0.6.jpg Gondor, Viktor (Nadfoka) 4:3 +0.7.jpg Buzzotta, Richy (raozuzu) 4:3 +1.0.jpg Tomas, L??o (l??o) 4:3 +1.0wide.jpg Tomas, L??o (l??o) 16:9 +1.1.jpg Chevaux, Antoine (centuri0) 4:3 +1.1wide.jpg Chevaux, Antoine (centuri0) 16:9 +1.2.jpg Jou??t, Tristan (WebEagle) 4:3 +1.2wide.jpg Jou??t, Tristan (WebEagle) 16:9 +1.3.png Jou??t, Tristan (WebEagle) 4:3 +1.3wide.png Jou??t, Tristan (WebEagle) 16:9 +1.4.png Barbu, Leonard (Leo) 4:3 +1.4wide.png Barbu, Leonard (Leo) 16:9 +1.5.png Barbu, Leonard (Leo) 4:3 +1.5wide.png Barbu, Leonard (Leo) 16:10 +1.5wide2.png Barbu, Leonard (Leo) 16:9 + From bouleetbil at frogdev.info Sat Apr 16 10:36:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:36:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: gnome-vfs-2.24.4-6-x86_64 *don't pull hal with pmount Message-ID: <20110416083611.CE7E81358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c30555dd4639b54331e85d54cd1256b53114cbc5 commit c30555dd4639b54331e85d54cd1256b53114cbc5 Author: bouleetbil Date: Sat Apr 16 10:35:23 2011 +0200 gnome-vfs-2.24.4-6-x86_64 *don't pull hal with pmount diff --git a/source/gnome/gnome-vfs/FrugalBuild b/source/gnome/gnome-vfs/FrugalBuild index 7fe5e57..d1f3f72 100644 --- a/source/gnome/gnome-vfs/FrugalBuild +++ b/source/gnome/gnome-vfs/FrugalBuild @@ -4,11 +4,11 @@ pkgname=gnome-vfs pkgver=2.24.4 -pkgrel=5 +pkgrel=6 pkgdesc="GNOME Virtual File System" url="http://www.gnome.org/" depends=('gconf>=2.28.0' 'bzip2' 'dbus-glib>=0.74-2' 'gnome-mime-data' 'gamin>=0.1.9-2' \ - 'avahi-glib>=0.6.17' 'xfsprogs-acl' 'libkrb5' 'db>=4.7.25' 'pmount' 'openssl>=1.0.0' \ + 'avahi-glib>=0.6.17' 'xfsprogs-acl' 'libkrb5' 'db>=4.7.25' 'openssl>=1.0.0' \ 'libxml2>=2.7.8') makedepends=('intltool' 'krb5' 'samba') rodepends=('gvfs') From bouleetbil at frogdev.info Sat Apr 16 10:38:59 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:38:59 +0200 (CEST) Subject: [Frugalware-git] gnometesting: cheese-3.0.0-2-x86_64 Message-ID: <20110416083859.A051E1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=77cd28099461c34ae209caea8f14da66358faa25 commit 77cd28099461c34ae209caea8f14da66358faa25 Author: bouleetbil Date: Sat Apr 16 10:38:25 2011 +0200 cheese-3.0.0-2-x86_64 *disable useless hal support diff --git a/source/gnome/cheese/FrugalBuild b/source/gnome/cheese/FrugalBuild index 718523b..1ed6f2a 100644 --- a/source/gnome/cheese/FrugalBuild +++ b/source/gnome/cheese/FrugalBuild @@ -3,11 +3,11 @@ pkgname=cheese pkgver=3.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Cheese is a Photobooth-inspired GNOME application for taking pictures and videos from a webcam." url="http://www.gnome.org/projects/cheese" depends=('librsvg>=2.26.0-2' 'gst-plugins-good>=0.10.16-3' 'gst-plugins-base>=0.10.24-1' 'gst-plugins-base-pango' \ - 'xf86vidmodeproto' 'evolution-data-server>=3.0.0' 'dbus' 'hal' 'gnome-video-effects' \ + 'xf86vidmodeproto' 'evolution-data-server>=3.0.0' 'dbus' 'gnome-video-effects' \ 'gst-plugins-good-video4linux2' 'db>=4.7.25-2' 'gnome-desktop>=2.91.0' \ 'gst-plugins-bad-mpeg2enc' 'gst-plugins-base-ogg' 'gst-plugins-base-theora' 'gst-plugins-base-vorbis' 'gst-plugins-good-gconf' \ 'libgudev' 'libcanberra-gtk' 'clutter-gst' 'libgee' 'clutter-gtk' 'mx') From bouleetbil at frogdev.info Sat Apr 16 10:40:50 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:40:50 +0200 (CEST) Subject: [Frugalware-git] gnometesting: totem-pl-parser-2.32.4-2-x86_64 Message-ID: <20110416084050.23E361358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c1f01947953f147025adc2c3ef3dd449ca3371f7 commit c1f01947953f147025adc2c3ef3dd449ca3371f7 Author: bouleetbil Date: Sat Apr 16 10:40:18 2011 +0200 totem-pl-parser-2.32.4-2-x86_64 *disable useless hal support diff --git a/source/gnome/totem-pl-parser/FrugalBuild b/source/gnome/totem-pl-parser/FrugalBuild index 0d801fa..1fca6d6 100644 --- a/source/gnome/totem-pl-parser/FrugalBuild +++ b/source/gnome/totem-pl-parser/FrugalBuild @@ -3,10 +3,10 @@ pkgname=totem-pl-parser pkgver=2.32.4 -pkgrel=1 +pkgrel=2 url="http://www.gnome.org/" pkgdesc="Simple GObject-based library to parse a host of playlist formats, as well as save those" -depends=('evolution-data-server>=2.90.0' 'hal' 'gmime' 'libxml2>=2.7.8') +depends=('evolution-data-server>=2.90.0' 'gmime' 'libxml2>=2.7.8') makedepends=('intltool' 'gnome-doc-utils' 'gobject-introspection') groups=('gnome') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Sat Apr 16 10:45:11 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:45:11 +0200 (CEST) Subject: [Frugalware-git] gnometesting: libgdata-0.8.1-1-x86_64 Message-ID: <20110416084511.CAEA61358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8637a8cd160a4eb5e23b5471a9f9e0bcebf67633 commit 8637a8cd160a4eb5e23b5471a9f9e0bcebf67633 Author: bouleetbil Date: Sat Apr 16 10:44:39 2011 +0200 libgdata-0.8.1-1-x86_64 *Version bump diff --git a/source/gnome/libgdata/FrugalBuild b/source/gnome/libgdata/FrugalBuild index e1151d7..6633ac8 100644 --- a/source/gnome/libgdata/FrugalBuild +++ b/source/gnome/libgdata/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=libgdata -pkgver=0.8.0 -pkgrel=5 +pkgver=0.8.1 +pkgrel=1 pkgdesc="libgdata is a GLib-based library for accessing online service APIs using the GData protocol" depends=('libxml2>=2.7.8' 'libsoup-gnome>=2.30.0' 'sqlite3' 'libproxy>=0.4.0') makedepends=('intltool' 'gobject-introspection>=0.9.0') @@ -11,6 +11,6 @@ groups=('gnome') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude gnome -sha1sums=('3d0beebfb248d8d684762492755c3e195220f929') +sha1sums=('e0526fafeda6ef5d92afbdea08f715a07942ac84') # optimization OK From bouleetbil at frogdev.info Sat Apr 16 10:47:22 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:47:22 +0200 (CEST) Subject: [Frugalware-git] gnometesting: epiphany-extensions-3.0.0-1-x86_64 Message-ID: <20110416084722.B736D1358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=642cbe9da17724715a1db50d43169d10bd47fa76 commit 642cbe9da17724715a1db50d43169d10bd47fa76 Author: bouleetbil Date: Sat Apr 16 10:46:50 2011 +0200 epiphany-extensions-3.0.0-1-x86_64 *Version bump diff --git a/source/gnome-extra/epiphany-extensions/FrugalBuild b/source/gnome-extra/epiphany-extensions/FrugalBuild index 3a328bd..705247f 100644 --- a/source/gnome-extra/epiphany-extensions/FrugalBuild +++ b/source/gnome-extra/epiphany-extensions/FrugalBuild @@ -1,19 +1,18 @@ # Compiling Time: 0.60 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: bouleetbil pkgname=epiphany-extensions -pkgver=2.32.0 +pkgver=3.0.0 pkgrel=1 pkgdesc="Extensions for epiphany web browser" url="http://www.gnome.org/projects/epiphany/extensions" -depends=('opensp' 'pcre' 'epiphany>=2.30.6-3') +depends=('opensp' 'pcre' 'epiphany>=3.0.0') makedepends=('perl-xml-parser' 'gnome-doc-utils>=0.16.0' 'intltool') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet license="GPL2" groups=('gnome-extra') archs=('x86_64' 'i686' 'ppc') -Fconfopts="$Fconfopts --with-extensions=really-all" -sha1sums=('20541ea312d1860886a8d377f26779a9bbc99ca6') +sha1sums=('0603cb954532265fa2f3b9765109a79216c91199') # optimization OK From bouleetbil at frogdev.info Sat Apr 16 10:56:37 2011 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 16 Apr 2011 10:56:37 +0200 (CEST) Subject: [Frugalware-git] gnometesting: cairo-compmgr-0.3.0-3-x86_64 *rebuild with latest vala *closed #4467 Message-ID: <20110416085637.11BF31358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=20574ba880d003e63e5f56a4b355a922238eedd3 commit 20574ba880d003e63e5f56a4b355a922238eedd3 Author: bouleetbil Date: Sat Apr 16 10:55:32 2011 +0200 cairo-compmgr-0.3.0-3-x86_64 *rebuild with latest vala *closed #4467 diff --git a/source/x11-extra/cairo-compmgr/FrugalBuild b/source/x11-extra/cairo-compmgr/FrugalBuild index 35c33b6..2b8885c 100644 --- a/source/x11-extra/cairo-compmgr/FrugalBuild +++ b/source/x11-extra/cairo-compmgr/FrugalBuild @@ -3,11 +3,11 @@ pkgname=cairo-compmgr pkgver=0.3.0 -pkgrel=2 +pkgrel=3 pkgdesc="Composite manager based on cairo, for use with alternative window managers." url="http://cairo-compmgr.tuxfamily.org" makedepends=('gtk-doc' 'intltool' 'gconf') -depends=('gtk+2' 'vala') +depends=('gtk+2' 'vala>=0.12') groups=('x11-extra') archs=('i686' 'x86_64') up2date="Flasttar http://download.tuxfamily.org/ccm/cairo-compmgr" @@ -16,7 +16,7 @@ source=(http://download.tuxfamily.org/ccm/cairo-compmgr/$pkgname-$pkgver.tar.gz $pkgname-vala-version.patch) sha1sums=('583a0e240883dfcdeb431f1eef22db8339e7fcfa' \ 'de36383ae1930ad6d0dd2ce59fc9c243dcd91ecd' \ - 'b9040300ef6394c6b7e3c3a9b24fa039d13ed24d') + '8f6f470912670dbe5a1e6b9b41b62a9128c091e4') build() { Fpatchall diff --git a/source/x11-extra/cairo-compmgr/cairo-compmgr-vala-version.patch b/source/x11-extra/cairo-compmgr/cairo-compmgr-vala-version.patch index 97481fb..2ed7ad6 100644 --- a/source/x11-extra/cairo-compmgr/cairo-compmgr-vala-version.patch +++ b/source/x11-extra/cairo-compmgr/cairo-compmgr-vala-version.patch @@ -6,7 +6,7 @@ diff -aur a/configure.ac b/configure.ac pixman-1 >= $PIXMAN_REQUIRED, gtk+-2.0 >= $GTK_REQUIRED - vala-1.0 >= $VALA_REQUIRED]) -+ vala-0.10 >= $VALA_REQUIRED]) ++ libvala-0.12 >= $VALA_REQUIRED]) AC_SUBST(CAIRO_COMPMGR_CFLAGS) AC_SUBST(CAIRO_COMPMGR_LIBS) @@ -18,5 +18,5 @@ diff -aur a/vapi/cairo-compmgr.deps b/vapi/cairo-compmgr.deps gtk+-2.0 gconf-2.0 -vala-1.0 -+vala-0.10 ++libvala-0.12 x11 From achevaux at gmail.com Sat Apr 16 13:17:56 2011 From: achevaux at gmail.com (centuri0) Date: Sat, 16 Apr 2011 13:17:56 +0200 (CEST) Subject: [Frugalware-git] artwork: * New kdm theme for 1.5 Message-ID: <20110416111756.E72551358448@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=326537110731b7c7cdfa1c3beaac6d90f6a88dcc commit 326537110731b7c7cdfa1c3beaac6d90f6a88dcc Author: centuri0 Date: Sat Apr 16 13:16:58 2011 +0200 * New kdm theme for 1.5 diff --git a/kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml b/kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml index aa1f0b2..f270790 100755 --- a/kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml +++ b/kde-frugalware/artwork/theme/kdm/Frugalware/Frugalware-kdm.xml @@ -3,8 +3,8 @@