[Frugalware-git] xorg74: dzen-0.8.5-2-i686 *rebuild with libxpm>=3.5.7-2

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=e404f6823c431489f6afcac1377126d10f460a8b

commit e404f6823c431489f6afcac1377126d10f460a8b
Author: bouleetbil 
Date:   Thu Jun 18 09:09:56 2009 +0200

dzen-0.8.5-2-i686
*rebuild with libxpm>=3.5.7-2

diff --git a/source/x11-extra/dzen/FrugalBuild 
b/source/x11-extra/dzen/FrugalBuild
index be6748f..32d6271 100644
--- a/source/x11-extra/dzen/FrugalBuild
+++ b/source/x11-extra/dzen/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=dzen
pkgver=0.8.5
-pkgrel=1
+pkgrel=2
pkgdesc="A general purpose messaging, notification and menuing program for X11."
url="http://gotmor.googlepages.com/dzen";
-depends=('glibc' 'libxpm' 'libxinerama')
+depends=('glibc' 'libxpm>=3.5.7-2' 'libxinerama')
groups=('x11-extra')
archs=('i686' 'x86_64')
_F_archive_name=$pkgname-svn
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: fbpager-0.1.4-5-i686 *rebuild with new xorg *added gcc43 patch

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=5b7aeee46f5ea5a04be82d64ee4c587f07c56a4f

commit 5b7aeee46f5ea5a04be82d64ee4c587f07c56a4f
Author: bouleetbil 
Date:   Thu Jun 18 10:04:21 2009 +0200

fbpager-0.1.4-5-i686
*rebuild with new xorg
*added gcc43 patch

diff --git a/source/x11-extra/fbpager/FrugalBuild 
b/source/x11-extra/fbpager/FrugalBuild
index 72f4daa..f387c41 100644
--- a/source/x11-extra/fbpager/FrugalBuild
+++ b/source/x11-extra/fbpager/FrugalBuild
@@ -4,18 +4,19 @@

pkgname=fbpager
pkgver=0.1.4
-pkgrel=4
+pkgrel=5
pkgdesc="FBpager is a pager application for fluxbox"
url="http://www.fluxbox.org/fbpager/";
-makedepends=('mesa')
-depends=('libsm' 'libxrender' 'libstdc++')
+makedepends=('mesa>=7.4.2-5')
+depends=('libsm>=1.1.0' 'libxrender' 'libstdc++')
rodepends=('fluxbox')
groups=('x11-extra')
archs=('i686' 'x86_64')
-up2date="lynx -dump http://fluxbox.sourceforge.net/fbpager/ |Flasttar"
-source=(http://www.fluxbox.org/download/$pkgname-$pkgver.tar.gz 
g++-4.1_namespace.patch)
+up2date="lynx -dump http://fluxbox.sourceforge.net/fbpager/ |Flasttar"
+source=(http://www.fluxbox.org/download/$pkgname-$pkgver.tar.gz 
g++-4.1_namespace.patch gcc43.diff)
sha1sums=('73415dd7911f24e338b2b1bfc43f4aeb53daa5b2' \
-  '0182937480fd7c0511217736c3e43ab129eaa01d')
+  '0182937480fd7c0511217736c3e43ab129eaa01d' \
+  'ed643a86e48e41ebd72566b1088cb140fc7fcdf6')
unset MAKEFLAGS

# optimization OK
diff --git a/source/x11-extra/fbpager/gcc43.diff 
b/source/x11-extra/fbpager/gcc43.diff
new file mode 100644
index 000..2ff0834
--- /dev/null
+++ b/source/x11-extra/fbpager/gcc43.diff
@@ -0,0 +1,64 @@
+--- src/FbTk/StringUtil.cc.orig2008-06-14 17:36:06.0 +
 src/FbTk/StringUtil.cc 2008-06-14 17:39:56.0 +
+@@ -23,6 +23,9 @@
+
+ #include "StringUtil.hh"
+
++
++#include 
++#include 
+ #include 
+ #include 
+ #include 
+@@ -37,6 +40,26 @@
+
+ namespace StringUtil {
+
++
++/*
++ * structs needed for std::transform()
++ * See: http://gcc.gnu.org/onlinedocs/libstdc++/22_locale/howto.html#7
++ */
++struct ToUpper {
++  ToUpper(std::locale const& l) : loc(l) {;}
++  char operator() (char c) const  { return std::toupper(c,loc); }
++ private:
++  std::locale const& loc;
++};
++
++struct ToLower {
++  ToLower(std::locale const& l) : loc(l) {;}
++  char operator() (char c) const  { return std::tolower(c,loc); }
++private:
++  std::locale const& loc;
++};
++
++
+ /**
+Takes a pointer to string *s as an argument,
+creates a new string n, copies s to n and
+@@ -160,14 +183,20 @@
+ }
+
+ std::string toLower(const std::string &conv) {
++
++ToLower __tolower(std::locale::classic());
++
+ std::string ret = conv;
+-std::transform(ret.begin(), ret.end(), ret.begin(), tolower);
++std::transform(ret.begin(), ret.end(), ret.begin(), __tolower);
+ return ret;
+ }
+
+ std::string toUpper(const std::string &conv) {
++
++ToUpper __toupper(std::locale::classic());
++
+ std::string ret = conv;
+-std::transform(ret.begin(), ret.end(), ret.begin(), toupper);
++std::transform(ret.begin(), ret.end(), ret.begin(), __toupper);
+ return ret;
+ }
+
+
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: pidgin-musictracker-0.4.18-2-i686

2009-06-18 Thread Priyank
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=8044e1e6b3ecd93f97a15dd4d7446603bbd0ba91

commit 8044e1e6b3ecd93f97a15dd4d7446603bbd0ba91
Author: Priyank 
Date:   Thu Jun 18 13:43:47 2009 +0530

pidgin-musictracker-0.4.18-2-i686

* Rebuild with pidgin-2.5.6-2 and other libs

diff --git a/source/xapps-extra/pidgin-musictracker/FrugalBuild 
b/source/xapps-extra/pidgin-musictracker/FrugalBuild
index bbb7871..1b58178 100644
--- a/source/xapps-extra/pidgin-musictracker/FrugalBuild
+++ b/source/xapps-extra/pidgin-musictracker/FrugalBuild
@@ -3,9 +3,10 @@

pkgname=pidgin-musictracker
pkgver=0.4.18
-pkgrel=1
+pkgrel=2
pkgdesc="A plugin for Pidgin which displays the music track currently playing."
-depends=('gtk+2' 'glibc' 'libxau' 'libxdmcp' 'freetype2' 'dbus-glib' 'pcre' 
'libxext' 'libxdamage' 'pidgin')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'libxau' 'libxdmcp' 'freetype2' 'dbus-glib' 
\
+   'pcre' 'libxext>=1.0.5-3' 'libxdamage>=1.1.1-3' 'pidgin>=2.5.6-2')
options=('scriptlet')
_F_googlecode_ext=".tar.bz2"
Finclude googlecode
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: transset-20050711-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=69cf683b784d11810450fd0b182e043ba0179b24

commit 69cf683b784d11810450fd0b182e043ba0179b24
Author: bouleetbil 
Date:   Thu Jun 18 10:09:53 2009 +0200

transset-20050711-2-i686
*rebuild with new xorg

diff --git a/source/x11-extra/transset/FrugalBuild 
b/source/x11-extra/transset/FrugalBuild
index bfa2ab1..9d6a055 100644
--- a/source/x11-extra/transset/FrugalBuild
+++ b/source/x11-extra/transset/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=transset
pkgver=20050711
-pkgrel=1
+pkgrel=2
pkgdesc="Translucency settings tool for X.org"
url="http://www.freedesktop.org/Software/xapps";
-depends=('xorg-server' 'xcompmgr' 'libxdamage' 'libxfixes' 'libxcomposite')
+depends=('xorg-server>=1.6.1' 'xcompmgr' 'libxdamage' 'libxfixes' 
'libxcomposite')
groups=('x11-extra')
archs=('i686' 'x86_64')
up2date=$pkgver
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: telepathy-butterfly-0.3.4-1-i686 *version bump

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a9aae5e53030dbdb23749b91e06a354d768a2480

commit a9aae5e53030dbdb23749b91e06a354d768a2480
Author: bouleetbil 
Date:   Thu Jun 18 10:15:18 2009 +0200

telepathy-butterfly-0.3.4-1-i686
*version bump

diff --git a/source/lib-extra/telepathy-butterfly/FrugalBuild 
b/source/lib-extra/telepathy-butterfly/FrugalBuild
index ae43b63..db96513 100644
--- a/source/lib-extra/telepathy-butterfly/FrugalBuild
+++ b/source/lib-extra/telepathy-butterfly/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: bouleetbil 

pkgname=telepathy-butterfly
-pkgver=0.3.3
+pkgver=0.3.4
pkgrel=1
pkgdesc="An MSN connection manager for Telepathy"
url="http://telepathy.freedesktop.org/releases/$pkgname";
@@ -11,7 +11,7 @@ 
source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar
depends=('telepathy-python' 'pymsn')
groups=('lib-extra')
archs=('i686' 'x86_64' 'ppc')
-sha1sums=('94362905e011cc422e4a241ca0e09ccaae1a7934')
+sha1sums=('9a5b35aaeb662fe45f5594b0c5b2482bb8511d27')

build() {
Fcd
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: me-tv-0.9.3-1-i686 *version bump

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=528b64e83b0995cb0266e937f97c8ffb783b7472

commit 528b64e83b0995cb0266e937f97c8ffb783b7472
Author: bouleetbil 
Date:   Thu Jun 18 10:34:26 2009 +0200

me-tv-0.9.3-1-i686
*version bump

diff --git a/source/gnome-extra/me-tv/FrugalBuild 
b/source/gnome-extra/me-tv/FrugalBuild
index 1802511..414e09c 100644
--- a/source/gnome-extra/me-tv/FrugalBuild
+++ b/source/gnome-extra/me-tv/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: bouleetbil 

pkgname=me-tv
-pkgver=0.9.2
+pkgver=0.9.3
pkgrel=1
pkgdesc="Me TV is a digital television (DVB) viewer for GNOME."
url="http://me-tv.sourceforge.net/";
@@ -18,6 +18,6 @@ archs=('i686' 'x86_64')
options=('scriptlet')
_F_gnome_desktop="y"
Finclude gnome-scriptlet
-sha1sums=('df84e8465b2cba7d166113ac82b989b1b7369aff')
+sha1sums=('0d04f6beb014cb29227b8202f6dd7230ad562ae0')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnote-0.5.0-1-i686 *version bump

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=2a397f638a493c8378e3226d36ab4b0d141f1aba

commit 2a397f638a493c8378e3226d36ab4b0d141f1aba
Author: bouleetbil 
Date:   Thu Jun 18 10:57:42 2009 +0200

gnote-0.5.0-1-i686
*version bump

diff --git a/source/gnome-extra/gnote/FrugalBuild 
b/source/gnome-extra/gnote/FrugalBuild
index 40e9e8e..0f4d7ec 100644
--- a/source/gnome-extra/gnote/FrugalBuild
+++ b/source/gnome-extra/gnote/FrugalBuild
@@ -2,8 +2,8 @@
# Maintainer: bouleetbil 

pkgname=gnote
-pkgver=0.4.0
-pkgrel=2
+pkgver=0.5.0
+pkgrel=1
pkgdesc="Gnote is a port of Tomboy to C++"
groups=('gnome-extra')
depends=('glibmm' 'gtk+2>=2.16.2-2' 'gtkmm' 'libxml++' 'gconf>=2.26.2-2' 
'gtkspell' 'libpanelappletmm>=2.26.0-2' 'libboost-mt')
@@ -15,4 +15,4 @@ _F_gnome_desktop="y"
_F_gnome_devel="y"
_F_gnome_iconcache="y"
Finclude gnome gnome-scriptlet
-sha1sums=('9c997d0020e42ab1be58d28574551ccfbaea696f')
+sha1sums=('2c24d832caa484e217da4912c60f90b57dfab0b3')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gossip-0.30-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=da8fdbf3ca840ec3ac3f537ae757a1f0927e9a6e

commit da8fdbf3ca840ec3ac3f537ae757a1f0927e9a6e
Author: bouleetbil 
Date:   Thu Jun 18 11:31:11 2009 +0200

gossip-0.30-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gossip/FrugalBuild 
b/source/gnome-extra/gossip/FrugalBuild
index 90038df..d300db0 100644
--- a/source/gnome-extra/gossip/FrugalBuild
+++ b/source/gnome-extra/gossip/FrugalBuild
@@ -3,13 +3,14 @@

pkgname=gossip
pkgver=0.30
-pkgrel=1
+pkgrel=2
pkgdesc="Gossip is an instant messaging client for GNOME"
depends=('aspell' 'iso-codes' 'openssl' 'libglade' 'loudmouth' \
-   'libidn' 'libnotify' 'libgnomeui' 'popt' 'esd' 'pango' 'gail' \
-   'atk' 'freetype2' 'libxau' 'libxdmcp' 'gnome-vfs' 'libsm' \
+   'libidn' 'libnotify' 'popt' 'esd' 'pango>=1.24.2-2' \
+   'gail>=2.16.2-2' 'libgnomeui>=2.24.1-2' \
+   'atk' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'gnome-vfs' 'libsm' \
'libxscrnsaver' 'libjpeg' 'libxdamage' 'libxinerama' 'libart_lgpl' \
-   'libxi' 'libxrandr' 'libxcursor' 'loudmouth' 'gnome-vfs')
+   'libxi>=1.2.1' 'libxrandr' 'libxcursor' 'loudmouth' 'gnome-vfs')
makedepends=('perl-xml-parser' 'gnome-doc-utils')
options=('scriptlet')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: almanah-0.6.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=1652346502f36a4718d685fe5245170a77de7a0b

commit 1652346502f36a4718d685fe5245170a77de7a0b
Author: bouleetbil 
Date:   Thu Jun 18 11:41:17 2009 +0200

almanah-0.6.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/almanah/FrugalBuild 
b/source/gnome-extra/almanah/FrugalBuild
index b1a1877..a75cd9a 100644
--- a/source/gnome-extra/almanah/FrugalBuild
+++ b/source/gnome-extra/almanah/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=almanah
pkgver=0.6.1
-pkgrel=1
+pkgrel=2
pkgdesc="Diary is a small GTK+ application to allow you to keep a diary of your 
life."
url="http://tecnocode.co.uk/projects/diary";
-depends=('evolution-data-server' 'libglade' 'sqlite3' 'e2fsprogs' 'libgnome' 
'popt' 'nspr' 'openssl' 'libtasn1' 'libgcrypt' 'seahorse' 'gtkspell' 'atk' 
'pango' 'libxau' 'libxdmcp' 'freetype2' 'libgcc' 'libxdamage' 'libxinerama' 
'libxi' 'libxrandr' 'libxcursor')
+depends=('evolution-data-server>=2.26.2-2' 'libglade' 'sqlite3' 'e2fsprogs' 
'libgnome' 'popt' 'nspr' 'openssl' 'libtasn1' 'libgcrypt' 'seahorse' 'gtkspell' 
'atk' 'pango>=1.24.2-2' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'libgcc' 
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
makedepends=('intltool')
options=('scriptlet')
_F_gnome_schemas=('/etc/gconf/schemas/almanah.schemas')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: assogiate-0.2.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=476cc4c7b71c9ae58526e6ebb60f8fc3febeb8b3

commit 476cc4c7b71c9ae58526e6ebb60f8fc3febeb8b3
Author: bouleetbil 
Date:   Thu Jun 18 11:50:00 2009 +0200

assogiate-0.2.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/assogiate/FrugalBuild 
b/source/gnome-extra/assogiate/FrugalBuild
index 22ded15..43dea31 100644
--- a/source/gnome-extra/assogiate/FrugalBuild
+++ b/source/gnome-extra/assogiate/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=assogiate
pkgver=0.2.1
-pkgrel=1
+pkgrel=2
pkgdesc="assoGiate is an editor of the file types database for GNOME"
url="http://www.kdau.com/projects/assogiate";
-depends=('gtkmm' 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'libxml++' \
+depends=('gtkmm' 'atk' 'pango>=1.24.2-2' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'libxml++' \
'gnome-vfsmm' 'openssl' 'libstdc++' 'libxdamage' 'libxinerama' \
'libxi' 'libxrandr' 'libxcursor')
makedepends=('gnome-doc-utils' 'intltool')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter - various issues

2009-06-18 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=ef6f4a7a02a3be1bfbbfc51d6c940683a99198f2

commit ef6f4a7a02a3be1bfbbfc51d6c940683a99198f2
Author: Russell Dickenson (phayz) 
Date:   Thu Jun 18 20:51:13 2009 +1000

Newsletter - various issues

* switched off executable flag on many issues
* corrected spelling errors (issues 1, 2 & 3)

modified:   issue1.html
modified:   issue18.html
modified:   issue2.html
modified:   issue20.html
modified:   issue21.html
modified:   issue23.html
modified:   issue24.html
modified:   issue25.html
modified:   issue28.html
modified:   issue29.html
modified:   issue3.html
modified:   issue30.html
modified:   issue32.html
modified:   issue33.html
modified:   issue34.html
modified:   issue35.html
modified:   issue36.html
modified:   issue37.html
modified:   issue38.html

diff --git a/frugalware/weeklynews/issue1.html 
b/frugalware/weeklynews/issue1.html
index 70025e0..645582a 100644
--- a/frugalware/weeklynews/issue1.html
+++ b/frugalware/weeklynews/issue1.html
@@ -27,7 +27,7 @@


KDE 3.5.6
-   KDE is another desktop environemnt available in Frugalware. 0.6 
will ship with the 3.5.6 release, which fixes many bugs from the version 
included in Frugalware 0.5. Also, thanks to crazy, the default theme for KDE in 
Frugalware 0.6 is awesome!
+   KDE is another desktop environment available in Frugalware. 0.6 
will ship with the 3.5.6 release, which fixes many bugs from the version 
included in Frugalware 0.5. Also, thanks to crazy, the default theme for KDE in 
Frugalware 0.6 is awesome!


XFCE 4.4
@@ -51,7 +51,7 @@


Firefox 2.0
-   0.6 includes the latest and greatest release of the Firefox 
browser, with lots of new features, improvments and fixes.
+   0.6 includes the latest and greatest release of the Firefox 
browser, with lots of new features, improvements and fixes.


Python 2.5
diff --git a/frugalware/weeklynews/issue18.html 
b/frugalware/weeklynews/issue18.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue2.html 
b/frugalware/weeklynews/issue2.html
index 0afb3a1..9057a77 100644
--- a/frugalware/weeklynews/issue2.html
+++ b/frugalware/weeklynews/issue2.html
@@ -26,7 +26,7 @@


Progress with Upstart
-   Alex has made a lot of good process with integrating Upstart 
into Frugalware, and he has acheived a 19 second boot time on his machine! You 
can see some details on his progress on his http://www.alex-smith.me.uk/?p=59";>blog.
+   Alex has made a lot of good process with integrating Upstart 
into Frugalware, and he has achieved a 19 second boot time on his machine! You 
can see some details on his progress on his http://www.alex-smith.me.uk/?p=59";>blog.



diff --git a/frugalware/weeklynews/issue20.html 
b/frugalware/weeklynews/issue20.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue21.html 
b/frugalware/weeklynews/issue21.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue23.html 
b/frugalware/weeklynews/issue23.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue24.html 
b/frugalware/weeklynews/issue24.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue25.html 
b/frugalware/weeklynews/issue25.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue28.html 
b/frugalware/weeklynews/issue28.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue29.html 
b/frugalware/weeklynews/issue29.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue3.html 
b/frugalware/weeklynews/issue3.html
index 6e93806..5478d74 100644
--- a/frugalware/weeklynews/issue3.html
+++ b/frugalware/weeklynews/issue3.html
@@ -35,7 +35,7 @@


OpenOffice.org 2.2 in current
-   The brand new OpenOffice.org 2.2 release was uploaded to 
current last week, with a new 'kerning' feature which improves the appearance 
of proportial fonts, and the ability to create bookmarks in PDF files.
+   The brand new OpenOffice.org 2.2 release was uploaded to 
current last week, with a new 'kerning' feature which improves the appearance 
of proportional fonts, and the ability to create bookmarks in PDF files.


Pacman-G2 changes
@@ -71,7 +71,7 @@


Hiding specific desktop icons in XFCE.
-   Some of you might not like to see Filesystem (mounted drives) 
icons or device icons or even the Home icon on your desktops. Heres how you can 
hide them:
+   Some of you might not like to see Filesystem (mounted drives) 
icons or device icons or even the Home icon on your desktops. Here's how you 
can hide them:

Create a file named 'xfdesktoprc' in /home/your_user_name/.config/xfce4/desktop
and add the following lines to it:
diff --git a/frugalware/weeklynews/issue30.html 
b/frugalware/weeklynews/issue30.html
old mode 100755
new mode 100644
diff --git a/frugalware/weeklynews/issue32.html 
b/f

[Frugalware-git] homepage-ng: Newsletter issue 15 - corrected spelling error

2009-06-18 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=52a14c9427e0dc122ba188a94fb59667ae24f1a6

commit 52a14c9427e0dc122ba188a94fb59667ae24f1a6
Author: Russell Dickenson (phayz) 
Date:   Thu Jun 18 21:35:32 2009 +1000

Newsletter issue 15 - corrected spelling error

modified:   issue15.html

diff --git a/frugalware/weeklynews/issue15.html 
b/frugalware/weeklynews/issue15.html
index 9c9a968..e9fc456 100644
--- a/frugalware/weeklynews/issue15.html
+++ b/frugalware/weeklynews/issue15.html
@@ -48,7 +48,7 @@
Answer

When you see the graphical GRUB menu, press [Esc] and confirm that you want 
to exit from the graphical menu.  You'll now see the standard text-only GRUB 
menu. 
-Highlight your prefered GRUB entry and press [E] (for 
'Edit').
+Highlight your preferred GRUB entry and press [E] (for 
'Edit').
Press [E] again and you're dropped into a basic editor.
Press [End] to move the cursor to the end of the line.
Press [3], then [Enter] to end editing the GRUB entry.
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issues 17, 18, 19 & 20 - various spelling errors

2009-06-18 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=fadedd87edd4fa7a1b27e302e7ab87aed07cdd1c

commit fadedd87edd4fa7a1b27e302e7ab87aed07cdd1c
Author: Russell Dickenson (phayz) 
Date:   Thu Jun 18 21:45:22 2009 +1000

Newsletter issues 17, 18, 19 & 20 - various spelling errors

modified:   issue17.html
modified:   issue18.html
modified:   issue19.html
modified:   issue20.html

diff --git a/frugalware/weeklynews/issue17.html 
b/frugalware/weeklynews/issue17.html
index e909172..bf59578 100644
--- a/frugalware/weeklynews/issue17.html
+++ b/frugalware/weeklynews/issue17.html
@@ -33,7 +33,7 @@


Kalgan is nearly here!
-Frugalware 0.8 - code-named "Kalgan" - is scheduled to be released 
on 11 March 2008.  If you're "geek" enough you'll set up a cron job to download 
the ISO(s) as soon they are sync-ed to your prefered mirror.
+Frugalware 0.8 - code-named "Kalgan" - is scheduled to be released 
on 11 March 2008.  If you're "geek" enough you'll set up a cron job to download 
the ISO(s) as soon they are sync-ed to your preferred mirror.


Memory donation - if I recall correctly :)
diff --git a/frugalware/weeklynews/issue18.html 
b/frugalware/weeklynews/issue18.html
index 4644704..7a5426f 100644
--- a/frugalware/weeklynews/issue18.html
+++ b/frugalware/weeklynews/issue18.html
@@ -21,7 +21,7 @@
Party time! Kalgan is released.
(Another) memory donation - I'm sure about this one :)
Money, money, money!
-Tip - Troubleshooting the launch of GUI appplications
+Tip - Troubleshooting the launch of GUI applications
(Lots of) security announcements


diff --git a/frugalware/weeklynews/issue19.html 
b/frugalware/weeklynews/issue19.html
index 5b80de3..68b1e65 100644
--- a/frugalware/weeklynews/issue19.html
+++ b/frugalware/weeklynews/issue19.html
@@ -53,7 +53,7 @@


Bitlbee, Skype and VMiklos - a great combination
-VMiklos recently packaged version 0.4.0 of his Bitlbee plugin for 
Skype.  For those who don't already know, Bitlbee is an IRC gateway to other 
common IM networks - e.g. ICQ, Yahoo, Google Chat.  Thanks to VMiklos, those 
who need to keep in touch with Skype users can now do so easily from their 
prefered IRC client.
+VMiklos recently packaged version 0.4.0 of his Bitlbee plugin for 
Skype.  For those who don't already know, Bitlbee is an IRC gateway to other 
common IM networks - e.g. ICQ, Yahoo, Google Chat.  Thanks to VMiklos, those 
who need to keep in touch with Skype users can now do so easily from their 
preferred IRC client.


Package Updates
@@ -72,7 +72,7 @@


Pacman - what did I just install? - submitted by 'phayz'
-Sometimes you may quickly install several packages and their 
dependencies.  Afterward you think "Hmmm... what packages were just installed?" 
 To find out, refer to pacman-g2's log file - /var/log/pacman-g2.log
+Sometimes you may quickly install several packages and their 
dependencies.  Afterwards you think "Hmmm... what packages were just 
installed?"  To find out, refer to pacman-g2's log file - 
/var/log/pacman-g2.log


This section relies on your contributions! If have some tips and tricks that 
you would like to be shown in the newsletter, please post 
them on the forums in the Tips and Tricks section!
diff --git a/frugalware/weeklynews/issue20.html 
b/frugalware/weeklynews/issue20.html
index ed1cfd9..612b341 100644
--- a/frugalware/weeklynews/issue20.html
+++ b/frugalware/weeklynews/issue20.html
@@ -37,7 +37,7 @@
Devil505 and bouleetbil have quite recently become Frugalware developers 
through hard work.  jedifox has also been submitting package build scripts and 
may become a developer in the near future.  One common thing amongst all these 
people is that they live in France.  Therefore it's been suggested that a new 
slogan for Frugalware might be required to honour the country which has the 
most developers.  The slogan proposed is "Frugalware - let's make things 
French!".  Another option would be to have a slogan for each country - the 
Australian slogan proposed is "Frugalware - let's all have another beer!"

I'm an April Fool :(
-   On 1 April 2008, boobaa sent an email to the development mailing 
list announcing his resignation.  On the evening of that day, I read this 
message and immediately thought it was genuine.  I then logged on to the IRC 
channel and said I was sad at hearing of his resignation.  This caused many 
people to laugh, possibly while rolling on the floor.  In my defense all I can 
say is it was night when I read his message.  I didn't think to take 
into account the difference in time zones.  Anyway I'm looking forward to next 
year when I'll probably again be made a fool. :)
+   On 1 April 2008, boobaa sent an email to the development mailing 
list announcing his resignation.  On the evening of that day, I read this 
message and immediately thought it was genuine.  I then logged on to the IRC 
channel and said I was sad at hearing of his resignation.  This cau

[Frugalware-git] xorg74: cbrpager-0.9.19-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=00190c50db475c17f260f51b403a0a2c15ada320

commit 00190c50db475c17f260f51b403a0a2c15ada320
Author: bouleetbil 
Date:   Thu Jun 18 14:07:32 2009 +0200

cbrpager-0.9.19-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/cbrpager/FrugalBuild 
b/source/gnome-extra/cbrpager/FrugalBuild
index 179fd9e..ff4265e 100644
--- a/source/gnome-extra/cbrpager/FrugalBuild
+++ b/source/gnome-extra/cbrpager/FrugalBuild
@@ -3,13 +3,12 @@

pkgname=cbrpager
pkgver=0.9.19
-pkgrel=1
+pkgrel=2
pkgdesc="A no-nonsense, simple to use, small viewer for cbr and cbz (comic book 
archive) files."
-depends=('libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 'gail' 
'libart_lgpl' 'atk' 'freetype2' \
-   'libxau' 'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 
'libxi' 'libxrandr' 'libxcursor')
+depends=('libgnomeui>=2.24.1-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 
'gail>=2.16.2-2' 'libart_lgpl' 'atk' 'freetype2' \
+   'libxau>=1.0.4' 'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 
'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
makedepends=('imagemagick')
options=('scriptlet')
-_F_sourceforge_broken_up2date="1"
Finclude sourceforge
url="http://www.jcoppens.com/soft/$pkgname/index.en.php";
source=($source http://www.jcoppens.com/favicon.ico)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: contacts-eds-0.9-4-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=6d447b36b8e61498514cbed0bba7d16bfe1be739

commit 6d447b36b8e61498514cbed0bba7d16bfe1be739
Author: bouleetbil 
Date:   Thu Jun 18 14:27:54 2009 +0200

contacts-eds-0.9-4-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/contacts-eds/FrugalBuild 
b/source/gnome-extra/contacts-eds/FrugalBuild
index ed02a59..e693c79 100644
--- a/source/gnome-extra/contacts-eds/FrugalBuild
+++ b/source/gnome-extra/contacts-eds/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=contacts-eds
pkgver=0.9
-pkgrel=3
+pkgrel=4
pkgdesc="Contacts is a small, lightweight addressbook that uses libebook, part 
of EDS"
url="http://pimlico-project.org";
_F_archive_name=contacts
-depends=('atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 
'evolution-data-server>=2.24.1' \
+depends=('atk' 'pango>=1.24.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'evolution-data-server>=2.26.2-2' \
'libgnome' 'popt' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \
'libxcursor' 'nspr>=4.7.1' 'openssl' 'e2fsprogs')
makedepends=('perl-xml-parser' 'intltool')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: coverfinder-0.2.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=160d65d51df835d1ed0a952bc538bda17f41a1b7

commit 160d65d51df835d1ed0a952bc538bda17f41a1b7
Author: bouleetbil 
Date:   Thu Jun 18 14:34:01 2009 +0200

coverfinder-0.2.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/coverfinder/FrugalBuild 
b/source/gnome-extra/coverfinder/FrugalBuild
index 7e5ffe3..a1e05f3 100644
--- a/source/gnome-extra/coverfinder/FrugalBuild
+++ b/source/gnome-extra/coverfinder/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=coverfinder
pkgver=0.2.1
-pkgrel=1
+pkgrel=2
pkgdesc="This is a tool to find cover images via the Amazon Web Services API 
and to save them locally"
url="http://mookooh.org/coverfinder/";
rodepends=('gvfs')
-depends=('gtk+2' 'freetype2' 'libxau' 'libxdmcp' 'libxml2' 'libxdamage' 
'libxext')
+depends=('gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxml2' 
'libxdamage' 'libxext>=1.0.5-3')
options=('scriptlet')
groups=('gnome-extra')
archs=('i686' 'x86_64' 'ppc')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: cryptkeeper-0.9.4-2-i686 *rebuild with new xorg *added gcc43 patch

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=c5e354cdb44355ea5ec209068dfbf9e1f5305c67

commit c5e354cdb44355ea5ec209068dfbf9e1f5305c67
Author: bouleetbil 
Date:   Thu Jun 18 14:41:07 2009 +0200

cryptkeeper-0.9.4-2-i686
*rebuild with new xorg
*added gcc43 patch

diff --git a/source/gnome-extra/cryptkeeper/FrugalBuild 
b/source/gnome-extra/cryptkeeper/FrugalBuild
index 6aee95c..7fda355 100644
--- a/source/gnome-extra/cryptkeeper/FrugalBuild
+++ b/source/gnome-extra/cryptkeeper/FrugalBuild
@@ -3,19 +3,20 @@

pkgname=cryptkeeper
pkgver=0.9.4
-pkgrel=1
+pkgrel=2
pkgdesc="Cryptkeeper is a FreeDesktop.org (KDE, Gnome, XFce, etc.) system tray 
applet that manages EncFS encrypted folders."
url="http://tom.noflag.org.uk/cryptkeeper.html";
-depends=('atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'gconf' \
-   'libstdc++' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 
\
+depends=('atk' 'pango' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'gconf>=2.26.2-2' \
+   'libstdc++' 'libxdamage' 'libxinerama' 'libxi>=1.2.1' 'libxrandr' 
'libxcursor' \
'encfs' 'fuse' 'gtk+2')
groups=('gnome-extra')
archs=('i686' 'x86_64')
_F_gnome_desktop="y"
Finclude gnome-scriptlet
up2date="lynx -dump $url | Flasttar"
-source=(http://tom.noflag.org.uk/cryptkeeper/$pkgname-$pkgver.tar.gz)
-sha1sums=('967959e108fcec90e19f47dc8fff5b600533cca9')
+source=(http://tom.noflag.org.uk/cryptkeeper/$pkgname-$pkgver.tar.gz 
gcc43.diff)
+sha1sums=('967959e108fcec90e19f47dc8fff5b600533cca9' \
+  '40d0197f248bf0fba09209abe6e94537763d97c6')

build() {
Fbuild
diff --git a/source/gnome-extra/cryptkeeper/gcc43.diff 
b/source/gnome-extra/cryptkeeper/gcc43.diff
new file mode 100644
index 000..26802c1
--- /dev/null
+++ b/source/gnome-extra/cryptkeeper/gcc43.diff
@@ -0,0 +1,11 @@
+--- cryptkeeper-0.9.3/src/lsof.cpp 2008-11-12 14:55:01.0 +0100
 cryptkeeper-0.9.3.new/src/lsof.cpp 2008-11-12 14:55:31.0 +0100
+@@ -16,6 +16,7 @@
+  * along with this program; if not, write to the Free Software
+  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+  */
++#include 
+ #include 
+ #include 
+ #include 
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: desktop-data-manager-0.8.11-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=d5f95db87e7992c1e7baa5b0cfd244bdf5248002

commit d5f95db87e7992c1e7baa5b0cfd244bdf5248002
Author: bouleetbil 
Date:   Thu Jun 18 14:52:06 2009 +0200

desktop-data-manager-0.8.11-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/desktop-data-manager/FrugalBuild 
b/source/gnome-extra/desktop-data-manager/FrugalBuild
index 538eb63..4f7086d 100644
--- a/source/gnome-extra/desktop-data-manager/FrugalBuild
+++ b/source/gnome-extra/desktop-data-manager/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=desktop-data-manager
pkgver=0.8.11
-pkgrel=1
+pkgrel=2
pkgdesc="Desktop Data Manager is a Clipboard Manager for GNOME"
-depends=('gnome-sharp' 'gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 
'libxdamage' 'libxext' 'libxml2')
+depends=('gnome-sharp' 'gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'libxdamage' 'libxext>=1.0.5-3' 'libxml2')
groups=('gnome-extra')
options=('scriptlet')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: desktop-data-model-1.2.5-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=62d7f973b06d34b9151e81993e26dbed655b937b

commit 62d7f973b06d34b9151e81993e26dbed655b937b
Author: bouleetbil 
Date:   Thu Jun 18 15:06:16 2009 +0200

desktop-data-model-1.2.5-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/desktop-data-model/FrugalBuild 
b/source/gnome-extra/desktop-data-model/FrugalBuild
index e191d06..f7b6de4 100644
--- a/source/gnome-extra/desktop-data-model/FrugalBuild
+++ b/source/gnome-extra/desktop-data-model/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=desktop-data-model
pkgver=1.2.5
-pkgrel=1
+pkgrel=2
pkgdesc="desktop-data-model is a GNOME wrapper library."
depends=('pcre' 'sqlite3' 'loudmouth' 'libidn' 'libxscrnsaver' \
-   'gnome-desktop' 'libjpeg' 'gnome-keyring' 'libbonoboui' \
+   'gnome-desktop>=2.26.2-2' 'libjpeg' 'gnome-keyring>=2.26.1-2' 
'libbonoboui' \
'libsm' 'popt' 'gnome-vfs' 'openssl' 'esd' 'gail' \
-   'libart_lgpl' 'atk' 'pango' 'freetype2' 'libxau' \
+   'libart_lgpl' 'atk' 'pango>=1.24.2-2' 'freetype2' 'libxau>=1.0.4' \
'libxdmcp' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \
'libxcursor' 'empathy' 'libtelepathy' 'libxfixes')
makedepends=('perl-xml-parser' 'intltool')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: ghex-2.24.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=eea8dcd0c0a54f58a4320105c525984734589ae0

commit eea8dcd0c0a54f58a4320105c525984734589ae0
Author: bouleetbil 
Date:   Thu Jun 18 15:12:13 2009 +0200

ghex-2.24.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/ghex/FrugalBuild 
b/source/gnome-extra/ghex/FrugalBuild
index 31dc369..ce8a24b 100644
--- a/source/gnome-extra/ghex/FrugalBuild
+++ b/source/gnome-extra/ghex/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=ghex
pkgver=2.24.0
-pkgrel=1
+pkgrel=2
pkgdesc="GNOME binary editor"
url="http://www.gnome.org";
-depends=('libgnomeui' 'libsm' 'gnome-vfs' 'esd' 'libgnomeprintui' \
-   'gail' 'atk' 'cairo' 'freetype2' 'libxau' 'libxdmcp' 'libjpeg' \
+depends=('libgnomeui>=2.24.1-2' 'libsm' 'gnome-vfs' 'esd' 'libgnomeprintui' \
+   'gail' 'atk' 'cairo' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libjpeg' \
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \
'rarian' 'libxcursor')
makedepends=('perl-xml-parser' 'intltool' 'gnome-doc-utils')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnome-color-chooser-0.2.5-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=de64def092ccf7c64497b8ecc738bcbac2bc36fc

commit de64def092ccf7c64497b8ecc738bcbac2bc36fc
Author: bouleetbil 
Date:   Thu Jun 18 15:16:48 2009 +0200

gnome-color-chooser-0.2.5-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnome-color-chooser/FrugalBuild 
b/source/gnome-extra/gnome-color-chooser/FrugalBuild
index 47322f8..57f4cc7 100644
--- a/source/gnome-extra/gnome-color-chooser/FrugalBuild
+++ b/source/gnome-extra/gnome-color-chooser/FrugalBuild
@@ -3,13 +3,13 @@

pkgname=gnome-color-chooser
pkgver=0.2.5
-pkgrel=1
+pkgrel=2
pkgdesc="Customize your GNOME desktop!"
url="http://www.punk-ass-bitch.org/gnome-color-chooser";
archs=('i686' 'x86_64')
groups=('gnome-extra')
-depends=('libglademm' 'libgnomeui' 'pango' 'libstdc++' 'atk' 'libxau' 
'libxdmcp' 'zlib'  \
-   'gail' 'libart_lgpl' 'esd' 'gnome-vfs' 'libsm' 'popt' 
'libxinerama' 'libxi' 'libxcursor' \
+depends=('libglademm' 'libgnomeui>=2.24.1-2' 'pango>=1.24.2-2' 'libstdc++' 
'atk' 'libxau>=1.0.4' 'libxdmcp' 'zlib'  \
+   'gail>=2.16.2-2' 'libart_lgpl' 'esd' 'gnome-vfs' 'libsm' 'popt' 
'libxinerama' 'libxi' 'libxcursor' \
'libxdamage' 'openssl')
makedepends=('perl-xml-parser' 'intltool')
sha1sums=('045b5d8a99dad7dba80c5b98e8d6ea35b4e8ee21')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnome-do-0.8.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=a047e02a5c4c74915a631268019415d0e1954201

commit a047e02a5c4c74915a631268019415d0e1954201
Author: bouleetbil 
Date:   Thu Jun 18 15:33:39 2009 +0200

gnome-do-0.8.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnome-do/FrugalBuild 
b/source/gnome-extra/gnome-do/FrugalBuild
index 0d7152e..7eedb6f 100644
--- a/source/gnome-extra/gnome-do/FrugalBuild
+++ b/source/gnome-extra/gnome-do/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=gnome-do
pkgver=0.8.1
-pkgrel=1
+pkgrel=2
pkgdesc="A powerful, remote control for GNOME"
-depends=('gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxdamage' \
-   'libxext' 'libxml2' 'gnome-sharp' 'ndesk-dbus-glib' 
'gnome-keyring-sharp' \
+depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxdamage' \
+   'libxext>=1.0.5-3' 'libxml2' 'gnome-sharp' 'ndesk-dbus-glib' 
'gnome-keyring-sharp' \
'gnome-desktop-sharp>=2.24.0-1' 'mono-addins' 'notify-sharp')
makedepends=('perl-xml-parser' 'intltool')
groups=('gnome-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnome-hearts-0.3-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=23d63bbac6649398641a402628f13dfeae6b4eb2

commit 23d63bbac6649398641a402628f13dfeae6b4eb2
Author: bouleetbil 
Date:   Thu Jun 18 15:41:02 2009 +0200

gnome-hearts-0.3-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnome-hearts/FrugalBuild 
b/source/gnome-extra/gnome-hearts/FrugalBuild
index cecee2d..e62acc4 100644
--- a/source/gnome-extra/gnome-hearts/FrugalBuild
+++ b/source/gnome-extra/gnome-hearts/FrugalBuild
@@ -4,10 +4,10 @@

pkgname=gnome-hearts
pkgver=0.3
-pkgrel=1
+pkgrel=2
pkgdesc="Gnome hearts, a hearts card game clone for gnome"
url="http://www.gnome-hearts.org";
-depends=('libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 'gail' 
'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
+depends=('libgnomeui>=2.24.1-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 
'gail>=2.16.2-2' 'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 
'libxcursor')
makedepends=('perl-xml-parser' 'rarian' 'intltool')
options=('scriptlet')
groups=('gnome-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnome-phone-manager-0.60-4-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=58173b41c2aaa59c602cdf6274d5cec705e65de1

commit 58173b41c2aaa59c602cdf6274d5cec705e65de1
Author: bouleetbil 
Date:   Thu Jun 18 15:47:24 2009 +0200

gnome-phone-manager-0.60-4-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnome-phone-manager/FrugalBuild 
b/source/gnome-extra/gnome-phone-manager/FrugalBuild
index c6e613c..f2321b4 100644
--- a/source/gnome-extra/gnome-phone-manager/FrugalBuild
+++ b/source/gnome-extra/gnome-phone-manager/FrugalBuild
@@ -3,13 +3,13 @@

pkgname=gnome-phone-manager
pkgver=0.60
-pkgrel=3
+pkgrel=4
pkgdesc="Control aspects of your mobile phone in GNOME desktop"
url="http://www.gnome.org";
-depends=('gtk+' 'gstreamer' 'gnome-bluetooth' 'libbtctl' 'libusb' \
+depends=('gtk+2>=2.16.2-2' 'gstreamer' 'gnome-bluetooth' 'libbtctl' 'libusb' \
'libjpeg' 'libbonoboui' 'libsm' 'gail' 'libart_lgpl' 'libglade' \
-   'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' \
-   'evolution-data-server>=2.24.1' 'e2fsprogs' 'popt' 'nspr>=4.7.1' \
+   'atk' 'pango' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \
+   'evolution-data-server>=2.26.2-2' 'e2fsprogs' 'popt' 'nspr>=4.7.1' \
'gnome-vfs' 'openssl' 'esd' 'libbonobo' 'gnokii' \
'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'gtkspell')
makedepends=('perl-xml-parser' 'intltool')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnome-video-arcade-0.6.5-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=635ce4f4481fa04a23b521106227769c7baa4812

commit 635ce4f4481fa04a23b521106227769c7baa4812
Author: bouleetbil 
Date:   Thu Jun 18 15:52:48 2009 +0200

gnome-video-arcade-0.6.5-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnome-video-arcade/FrugalBuild 
b/source/gnome-extra/gnome-video-arcade/FrugalBuild
index 1b4d411..e28d2f9 100644
--- a/source/gnome-extra/gnome-video-arcade/FrugalBuild
+++ b/source/gnome-extra/gnome-video-arcade/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=gnome-video-arcade
pkgver=0.6.5
-pkgrel=1
+pkgrel=2
pkgdesc="GNOME Video Arcade is a simple xmame front-end for the GNOME Desktop 
Environment"
_F_sourceforge_dirname="gva"
Finclude sourceforge
-depends=('libglade' 'libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 
'gail' 'libart_lgpl' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'sqlite3' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libwnck' 
'xmame')
+depends=('libglade' 'libgnomeui>=2.24.1-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 
'pango' 'gail>=2.16.2-2' 'libart_lgpl' 'atk' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'sqlite3' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 'libxi' 
'libxrandr' 'libxcursor' 'libwnck' 'xmame')
makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
options=('scriptlet')
_F_gnome_schemas=('/etc/gconf/schemas/gnome-video-arcade.schemas')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gnubversion-0.5-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=4f025a93ad1fe296fda868a6fe581149dbb8a556

commit 4f025a93ad1fe296fda868a6fe581149dbb8a556
Author: bouleetbil 
Date:   Thu Jun 18 16:02:33 2009 +0200

gnubversion-0.5-3-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gnubversion/FrugalBuild 
b/source/gnome-extra/gnubversion/FrugalBuild
index d5a64d5..b104325 100644
--- a/source/gnome-extra/gnubversion/FrugalBuild
+++ b/source/gnome-extra/gnubversion/FrugalBuild
@@ -3,11 +3,10 @@

pkgname=gnubversion
pkgver=0.5
-pkgrel=2
+pkgrel=3
pkgdesc="GnubVersion is a GNOME interface to Subversion."
-depends=('subversion' 'libgnomeui' 'libsm' 'popt' 'esd' 'pango' 'gail' 
'libart_lgpl' 'libglade' 'nautilus' 'atk' 'freetype2' 'libxau' 'libxdmcp' 
'libjpeg' 'libxdamage' 'openssl' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
+depends=('subversion' 'libgnomeui>=2.24.1-2' 'libsm' 'popt' 'esd' 
'pango>=1.24.2-2' 'gail' 'libart_lgpl' 'libglade' 'nautilus' 'atk' 'freetype2' 
'libxau>=1.0.4' 'libxdmcp' 'libjpeg' 'libxdamage' 'openssl' 'libxinerama' 
'libxi' 'libxrandr' 'libxcursor')
options=('scriptlet')
-_F_sourceforge_broken_up2date=1
Finclude sourceforge
_F_gnome_desktop="y"
_F_gnome_iconcache="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: thunar-1.0.1-3-i686

2009-06-18 Thread Priyank
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=c95f698f23e5b65b8b6843024fe0652ef13265b7

commit c95f698f23e5b65b8b6843024fe0652ef13265b7
Author: Priyank 
Date:   Thu Jun 18 19:33:22 2009 +0530

thunar-1.0.1-3-i686

* Rebuild with xfconf-4.6.1-2

diff --git a/source/xfce4/thunar/FrugalBuild b/source/xfce4/thunar/FrugalBuild
index 0b361b4..b0e4147 100644
--- a/source/xfce4/thunar/FrugalBuild
+++ b/source/xfce4/thunar/FrugalBuild
@@ -1,15 +1,15 @@
-# Compiling Time: 0.77 SBU
+# Compiling Time: 0.61 SBU
# Maintainer: Priyank Gosalia 

pkgname=thunar
_F_xfce_name=Thunar
_F_archive_name=Thunar
pkgver=1.0.1
-pkgrel=2
+pkgrel=3
pkgdesc="Thunar is a modern file manager for Xfce4."
makedepends=('xfce4-dev-tools>=4.6.0'  'intltool')
depends=('libexo>=0.3.101-2' 'gtk+2>=2.16.2-2' 'gamin' 'libxfce4util>=4.6.1' \
-   'hicolor-icon-theme' 'hal>=0.5.11' 'dbus-glib>=0.80' 'xfconf>=4.6.1'
+   'hicolor-icon-theme' 'hal>=0.5.11' 'dbus-glib>=0.80' 'xfconf>=4.6.1-2' \
'libexif>=0.6.17' 'xfce4-panel>=4.6.1-2' 'glib2>=2.18.4')
groups=('xfce4' 'xfce4-core')
conflicts=('xffm')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: goobox-2.0.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=695f380921b9f6922f370c7b63b8854ce30d6658

commit 695f380921b9f6922f370c7b63b8854ce30d6658
Author: bouleetbil 
Date:   Thu Jun 18 16:08:49 2009 +0200

goobox-2.0.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/goobox/FrugalBuild 
b/source/gnome-extra/goobox/FrugalBuild
index 9662ac5..0adfc2b 100644
--- a/source/gnome-extra/goobox/FrugalBuild
+++ b/source/gnome-extra/goobox/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=goobox
pkgver=2.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="Goobox is an CD player and ripper for the GNOME 2 environment"
options=('scriptlet')
-depends=('libgnomeui' 'libsm' 'popt' 'esd' 'pango' 'gail' 'libart_lgpl' \
+depends=('libgnomeui>=2.24.1-2' 'libsm' 'popt' 'esd' 'pango>=1.24.2-2' 
'gail>=2.16.2-2' 'libart_lgpl' \
'gnome-vfs' 'libglade' 'gstreamer' 'libmusicbrainz' 'libnotify' \
-   'atk' 'freetype2' 'libxau' 'libxdmcp' 'libgcc' 'libjpeg' \
+   'atk' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libgcc' 'libjpeg' \
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \
'libxcursor' 'gst-plugins-base-gnomevfs' 'gst-plugins-good')
makedepends=('gnome-doc-utils' 'perl-xml-parser')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: grandr_applet-0.4.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=6644d07135b6fbc7708f73ee357df829ae531a01

commit 6644d07135b6fbc7708f73ee357df829ae531a01
Author: bouleetbil 
Date:   Thu Jun 18 16:14:02 2009 +0200

grandr_applet-0.4.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/grandr_applet/FrugalBuild 
b/source/gnome-extra/grandr_applet/FrugalBuild
index 73f7674..19637fe 100755
--- a/source/gnome-extra/grandr_applet/FrugalBuild
+++ b/source/gnome-extra/grandr_applet/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=grandr_applet
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="Grandr is a GNOME Panel Applet that allow you to select screen 
resolution and orientation from your GNOME Panel"
url="http://kdekorte.googlepages.com/grandr_applet";
-depends=('gnome-panel' 'libgnomeui' 'libsm' 'popt' 'pango' 'gail' 
'libart_lgpl' 'esd' 'gconf' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'libxrandr' 
'libglade' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxcursor')
+depends=('gnome-panel>=2.26.2-2' 'libgnomeui>=2.24.1-2' 'libsm' 'popt' 
'pango>=1.24.2-2' 'gail' 'libart_lgpl' 'esd' 'gconf>=2.26.2-2' 'atk' 
'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxrandr' 'libglade' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxcursor')
options=('scriptlet')
groups=('gnome-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: subtitleeditor-0.32.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=d445d936d588ba3635096d8ee218975e4695b530

commit d445d936d588ba3635096d8ee218975e4695b530
Author: bouleetbil 
Date:   Thu Jun 18 16:39:26 2009 +0200

subtitleeditor-0.32.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/subtitleeditor/FrugalBuild 
b/source/gnome-extra/subtitleeditor/FrugalBuild
index 23b0356..ff3a94c 100644
--- a/source/gnome-extra/subtitleeditor/FrugalBuild
+++ b/source/gnome-extra/subtitleeditor/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=subtitleeditor
pkgver=0.32.0
-pkgrel=1
+pkgrel=2
pkgdesc="Subtitle Editor is a GTK+2 tool to edit subtitles."
url="http://kitone.free.fr/subtitleeditor";
license="GPL"
makedepends=('intltool')
-depends=('freetype2' 'libxau' 'libxdmcp' 'libglademm' 'libxml++' 'enchant' 
'pcre' 'gst-plugins-base' 'libxdamage' 'libxext' 'gst-plugins-good')
+depends=('freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libglademm' 'libxml++' 
'enchant' 'pcre' 'gst-plugins-base' 'libxdamage' 'libxext' 
'gst-plugins-good>=0.10.14-2')
options=('scriptlet')
_F_gnome_iconcache="y"
_F_gnome_desktop="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: planner-0.14.4-2-i686 *rebuild with new xorg *added missing Fbuild_gnome_scriptlet

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=b59ffa975bbf3d3c9f89a63d579d84455d743069

commit b59ffa975bbf3d3c9f89a63d579d84455d743069
Author: bouleetbil 
Date:   Thu Jun 18 16:53:55 2009 +0200

planner-0.14.4-2-i686
*rebuild with new xorg
*added missing Fbuild_gnome_scriptlet

diff --git a/source/gnome-extra/planner/FrugalBuild 
b/source/gnome-extra/planner/FrugalBuild
index 72dd54b..b31688f 100644
--- a/source/gnome-extra/planner/FrugalBuild
+++ b/source/gnome-extra/planner/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=planner
pkgver=0.14.4
-pkgrel=1
+pkgrel=2
pkgdesc="Project manager for Gnome2"
-depends=('libjpeg' 'openssl' 'gtk+2' 'libgnomecanvas'  'libgnomeui' 'libsm' \
-   'esd' 'libglade' 'libgnomeprintui' 'gail' 'atk' 'cairo' 'freetype2' \
-   'libxau' 'libxdmcp' 'gnome-vfs' 'libxdamage' 'libxinerama' 'libxi' \
-   'libxrandr' 'libxcursor'  'gconf' 'libxml2' 'libxslt' 'pygtk')
+depends=('libjpeg' 'openssl' 'gtk+2>=2.16.2-2' 'libgnomecanvas'  'libgnomeui' 
'libsm' \
+   'esd' 'libglade>=2.6.4-2' 'libgnomeprintui>=2.18.2-3' 'gail' 'atk' 
'cairo' 'freetype2' \
+   'libxau>=1.0.4' 'libxdmcp' 'gnome-vfs' 'libxdamage' 'libxinerama' 
'libxi' \
+   'libxrandr' 'libxcursor'  'gconf' 'libxml2' 'libxslt' 'pygtk>=2.14.1-2')
makedepends=('pkgconfig' 'intltool' 'rarian')
groups=('gnome-extra')
archs=('i686' 'x86_64' 'ppc')
@@ -22,7 +22,9 @@ sha1sums=('43ba90bd18fcd271c0da31e66d2fa1294831cf28')

build()
{
-  unset MAKEFLAGS
-  Fbuild
+   unset MAKEFLAGS
+   Fbuild
+   Fbuild_gnome_scriptlet
}
+
# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: lock-keys-applet-1.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=0eaba3f5c63843f3284546de07de00057b15

commit 0eaba3f5c63843f3284546de07de00057b15
Author: bouleetbil 
Date:   Thu Jun 18 16:58:04 2009 +0200

lock-keys-applet-1.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/lock-keys-applet/FrugalBuild 
b/source/gnome-extra/lock-keys-applet/FrugalBuild
index 1797cda..ee9054d 100644
--- a/source/gnome-extra/lock-keys-applet/FrugalBuild
+++ b/source/gnome-extra/lock-keys-applet/FrugalBuild
@@ -3,14 +3,14 @@

pkgname=lock-keys-applet
pkgver=1.0
-pkgrel=1
+pkgrel=2
pkgdesc="An applet that shows the status of your Caps, Num and Scroll Lock keys"
url="http://www.wh-hms.uni-ulm.de/~mfcn/lock-keys-applet";
up2date="lynx -dump $url/packages/ | Flasttar"
source=($url/packages/$pkgname-$pkgver.tar.gz 
lock-keys-applet-1.0-gtk-disable-deprecated.patch)
-depends=('gnome-panel' 'libglade' 'libgnomeui' 'libjpeg' \
-   'libsm' 'popt' 'gail' 'libart_lgpl' 'atk' 'pango' \
-   'freetype2' 'libxau' 'libxdmcp' 'openssl' 'esd' \
+depends=('gnome-panel>=2.26.2-2' 'libglade' 'libgnomeui>=2.24.1-2' 'libjpeg' \
+   'libsm' 'popt' 'gail>=2.16.2-2' 'libart_lgpl' 'atk' 'pango' \
+   'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'openssl' 'esd' \
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
options=('scriptlet')
groups=('gnome-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: galeon-2.0.4-3-i686

2009-06-18 Thread Priyank
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8ff7fe8dab70d7e1b8115d1eca0ae5faea8e98cd

commit 8ff7fe8dab70d7e1b8115d1eca0ae5faea8e98cd
Author: Priyank 
Date:   Thu Jun 18 20:34:24 2009 +0530

galeon-2.0.4-3-i686

* Rebuild with gnome-desktop-2.26.2
* Closes #3820
* Added a patch to fix build with gcc44

diff --git a/source/gnome-extra/galeon/FrugalBuild 
b/source/gnome-extra/galeon/FrugalBuild
index 6ce1815..617460e 100644
--- a/source/gnome-extra/galeon/FrugalBuild
+++ b/source/gnome-extra/galeon/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=galeon
pkgver=2.0.4
-pkgrel=2
+pkgrel=3
pkgdesc="A GNOME web browser based on the gecko rendering engine"
-depends=('xulrunner=1.8.1.3' 'gnome-desktop>=2.24.2' 'dbus-glib>=0.78-2')
+depends=('xulrunner=1.8.1.3' 'gnome-desktop>=2.26.2' 'dbus-glib>=0.80')
makedepends=('intltool')
groups=('gnome-extra')
archs=('i686' 'x86_64')
@@ -16,7 +16,9 @@ _F_gnome_scrollkeeper="y"
_F_gnome_schemas=('/etc/gconf/schemas/galeon.schemas')
Finclude gnome-scriptlet
Fconfopts="${fconfop...@]} --without-debug --enable-nautilus-view=no 
--disable-werror --with-mozilla=xulrunner"
-sha1sums=('e24aed24c7af6ddd35cc4616de81082aa7bebe81')
+source=(${sour...@]} $pkgname-$pkgver-gcc44.patch)
+sha1sums=('e24aed24c7af6ddd35cc4616de81082aa7bebe81' \
+  'b0b46fadb2a7763ace2d176d9372b2c1c802f830')

# optimization OK

diff --git a/source/gnome-extra/galeon/galeon-2.0.4-gcc44.patch 
b/source/gnome-extra/galeon/galeon-2.0.4-gcc44.patch
new file mode 100644
index 000..2057d56
--- /dev/null
+++ b/source/gnome-extra/galeon/galeon-2.0.4-gcc44.patch
@@ -0,0 +1,12 @@
+diff -Naur galeon-2.0.4.old/mozilla/ProgressListener.cpp 
galeon-2.0.4/mozilla/ProgressListener.cpp
+--- galeon-2.0.4.old/mozilla/ProgressListener.cpp  2009-06-18 
20:21:18.0 +0530
 galeon-2.0.4/mozilla/ProgressListener.cpp  2009-06-18 20:23:45.0 
+0530
+@@ -745,7 +745,7 @@
+   GulCString helperId(helperDesc);
+
+   // Format :
+-  char *colon = strchr (helperId.get(), ':');
++  char *colon = (char*) strchr (helperId.get(), ':');
+   g_return_val_if_fail (colon, NS_ERROR_FAILURE);
+
+   const char *helperappid = colon+1;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gtvg-0.3-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=1c335dcc375f62a59bd1ce0703d9ec4d87d9da41

commit 1c335dcc375f62a59bd1ce0703d9ec4d87d9da41
Author: bouleetbil 
Date:   Thu Jun 18 17:03:30 2009 +0200

gtvg-0.3-3-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gtvg/FrugalBuild 
b/source/gnome-extra/gtvg/FrugalBuild
index 1345732..034b3c1 100644
--- a/source/gnome-extra/gtvg/FrugalBuild
+++ b/source/gnome-extra/gtvg/FrugalBuild
@@ -3,12 +3,11 @@

pkgname=gtvg
pkgver=0.3
-pkgrel=2
+pkgrel=3
pkgdesc="A simple TV program schedule viewer"
-depends=('gconf' 'libnotify' 'libgnomecanvas' 'pango' 'atk' 'freetype2' 
'libxau' 'libxdmcp' 'libsm' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 
'libxcursor')
+depends=('gconf>=2.26.2-2' 'libnotify' 'libgnomecanvas' 'pango' 'atk' 
'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libsm' 'libxdamage' 'libxinerama' 
'libxi' 'libxrandr' 'libxcursor')
makedepends=('perl-xml-parser')
options=('scriptlet')
-_F_sourceforge_broken_up2date=1
Finclude sourceforge
_F_gnome_schemas=('/etc/gconf/schemas/gtvg.schemas')
_F_gnome_desktop="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: rubrica-2.0.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=bb6cc7435f958019cb64646afba0a970b8c42320

commit bb6cc7435f958019cb64646afba0a970b8c42320
Author: bouleetbil 
Date:   Thu Jun 18 17:16:12 2009 +0200

rubrica-2.0.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/rubrica/FrugalBuild 
b/source/gnome-extra/rubrica/FrugalBuild
index 55337b6..fd25e41 100644
--- a/source/gnome-extra/rubrica/FrugalBuild
+++ b/source/gnome-extra/rubrica/FrugalBuild
@@ -5,12 +5,12 @@ pkgname=rubrica
_F_berlios_name=${pkgname}2
_F_berlios_dirname=$pkgname
pkgver=2.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="rubrica is an address book written using GTK+ and GNOME"
groups=('gnome-extra')
archs=('i686' 'x86_64')
-depends=('libglade' 'gconf' 'glibc' 'libnotify' \
-   'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' \
+depends=('libglade' 'gconf>=2.26.2-2' 'glibc' 'libnotify' \
+   'atk' 'pango' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \
'libxcursor')
makedepends=('perl-xml-parser')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: referencer-1.1.5-2-i686 *rebuild with new xorg *added gcc 4.4 patch

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=021af96996778da6be64e0d977f1a8ec4a0e2745

commit 021af96996778da6be64e0d977f1a8ec4a0e2745
Author: bouleetbil 
Date:   Thu Jun 18 17:28:51 2009 +0200

referencer-1.1.5-2-i686
*rebuild with new xorg
*added gcc 4.4 patch

diff --git a/source/gnome-extra/referencer/FrugalBuild 
b/source/gnome-extra/referencer/FrugalBuild
index 9b8d3ae..d6f5c51 100644
--- a/source/gnome-extra/referencer/FrugalBuild
+++ b/source/gnome-extra/referencer/FrugalBuild
@@ -3,14 +3,14 @@

pkgname=referencer
pkgver=1.1.5
-pkgrel=1
+pkgrel=2
pkgdesc="Referencer is a Gnome application to organise documents or references"
url="http://icculus.org/~jcspray/referencer/";
up2date="lynx -dump $url/downloads/ | Flasttar"
-source=($url/downloads/$pkgname-$pkgver.tar.gz)
+source=($url/downloads/$pkgname-$pkgver.tar.gz gcc44.diff)
options=('scriptlet')
-depends=('libgnomeuimm' 'libsm' 'popt' 'esd' 'gail' 'libart_lgpl' 'python' \
-   'atk' 'poppler-glib' 'freetype2' 'libxau' 'libxdmcp' 'libboost' \
+depends=('libgnomeuimm>=2.26.0-2' 'libsm' 'popt' 'esd' 'gail>=2.16.2-2' 
'libart_lgpl' 'python' \
+   'atk' 'poppler-glib' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libboost' \
'libxdamage' 'openssl' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
makedepends=('boost' 'perl-xml-parser' 'intltool')
_F_gnome_iconcache="y"
@@ -19,6 +19,7 @@ Finclude gnome-scriptlet
groups=('gnome-extra')
archs=('i686' 'x86_64')
Fconfopts="${fconfop...@]} --disable-update-mime-database"
-sha1sums=('87e95e0b668f23d115c395e1d57221d1ddeaf0b2')
+sha1sums=('87e95e0b668f23d115c395e1d57221d1ddeaf0b2' \
+  '8396f27e6985051fe495714df47a63ac930808ce')

# optimization OK
diff --git a/source/gnome-extra/referencer/gcc44.diff 
b/source/gnome-extra/referencer/gcc44.diff
new file mode 100644
index 000..ba83cef
--- /dev/null
+++ b/source/gnome-extra/referencer/gcc44.diff
@@ -0,0 +1,11 @@
+--- src/Plugin.h   2008-08-03 07:30:57.0 -0400
 src/Plugin.h.new   2009-02-05 15:36:12.462084664 -0500
+@@ -3,6 +3,7 @@
+ #define PLUGIN_H
+
+ #include 
++#include 
+
+ class PluginCapability
+ {
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gssmp-1.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=b3f278300bbbdcd583d172290b2294b806d3108c

commit b3f278300bbbdcd583d172290b2294b806d3108c
Author: bouleetbil 
Date:   Thu Jun 18 17:40:49 2009 +0200

gssmp-1.2-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gssmp/FrugalBuild 
b/source/gnome-extra/gssmp/FrugalBuild
index c885ad0..e935039 100644
--- a/source/gnome-extra/gssmp/FrugalBuild
+++ b/source/gnome-extra/gssmp/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=gssmp
pkgver=1.2
-pkgrel=1
+pkgrel=2
pkgdesc="GSSMP is a music player designed to work with GNOME"
-depends=('libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 'gail' 
'libart_lgpl' \
-   'atk' 'freetype2' 'libxau' 'libxdmcp' \
+depends=('libgnomeui>=2.24.0-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 
'pango>=1.24.2-2' 'gail>=2.16.2-2' 'libart_lgpl' \
+   'atk' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \
'gst-plugins-base-ogg' 'gst-plugins-ugly-mad' \
'libjpeg' 'openssl' \
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
@@ -17,4 +17,10 @@ _F_sourceforge_ext=".tar.bz2"
Finclude sourceforge
sha1sums=('1786f37f95aebbb3bf8bb76ae6595b3fac32c350')

+build() {
+   Fcd
+   Fautoreconf
+   Fbuild
+}
+
# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gtweakui-0.4.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=a2ee3ac2b9d727d9e609b3c6c52880dc1e06ed2c

commit a2ee3ac2b9d727d9e609b3c6c52880dc1e06ed2c
Author: bouleetbil 
Date:   Thu Jun 18 19:03:47 2009 +0200

gtweakui-0.4.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/gtweakui/FrugalBuild 
b/source/gnome-extra/gtweakui/FrugalBuild
index 92bcec0..c7b642c 100644
--- a/source/gnome-extra/gtweakui/FrugalBuild
+++ b/source/gnome-extra/gtweakui/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=gtweakui
pkgver=0.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="A collection of front ends to various gconf configurations."
-depends=('libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 'gail' 
'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
+depends=('libgnomeui>=2.24.0-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 
'gail>=2.16.2-2' 'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 
'libxcursor')
makedepends=('perl-xml-parser')
_F_sourceforge_ext=".tar.bz2"
_F_sourceforge_name="gTweakUI"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: pidgin-rhythmbox-2.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=e7115ca191cf93cfb08599f4d00bbc606b74386f

commit e7115ca191cf93cfb08599f4d00bbc606b74386f
Author: bouleetbil 
Date:   Thu Jun 18 19:08:44 2009 +0200

pidgin-rhythmbox-2.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/pidgin-rhythmbox/FrugalBuild 
b/source/gnome-extra/pidgin-rhythmbox/FrugalBuild
index db51fec..179531c 100644
--- a/source/gnome-extra/pidgin-rhythmbox/FrugalBuild
+++ b/source/gnome-extra/pidgin-rhythmbox/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=pidgin-rhythmbox
pkgver=2.0
-pkgrel=1
+pkgrel=2
pkgdesc="A plugin that will automatically update your Pidgin user info and 
status message with the currently playing music in Rhythmbox"
url="http://jon.oberheide.org/projects/pidgin-rhythmbox/";
rodepends=('rhythmbox')
-depends=('pidgin' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxdamage' 
'libxext')
+depends=('pidgin>=2.5.6-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxdamage' 'libxext>=1.0.5-3')
groups=('gnome-extra')
archs=('i686' 'x86_64')
up2date="lynx -dump $url | Flasttar"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: ia_ora-gnome-1.0.20-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=89389cb1b1d5e719cbf74fc06cfcfef69aa87afa

commit 89389cb1b1d5e719cbf74fc06cfcfef69aa87afa
Author: bouleetbil 
Date:   Thu Jun 18 19:11:34 2009 +0200

ia_ora-gnome-1.0.20-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/ia_ora-gnome/FrugalBuild 
b/source/gnome-extra/ia_ora-gnome/FrugalBuild
index 536535d..2a42636 100644
--- a/source/gnome-extra/ia_ora-gnome/FrugalBuild
+++ b/source/gnome-extra/ia_ora-gnome/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=ia_ora-gnome
pkgver=1.0.20
-pkgrel=1
+pkgrel=2
pkgdesc="Ia Ora set of gnome themes from Mandriva."
url="http://www.mandriva.com/";
-depends=('gtk+2' 'glibc' 'libxau' 'libxdmcp' 'freetype2' 'libxext' 
'libxdamage' 'libxml2')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 
'libxext' 'libxdamage' 'libxml2')
makedepends=('rpmunpack')
groups=('gnome-extra')
# since we pull in pango...
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: monkey-bubble-0.4.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=332f04cd843f42be20d157bc7aeeaacba4abd625

commit 332f04cd843f42be20d157bc7aeeaacba4abd625
Author: bouleetbil 
Date:   Thu Jun 18 19:15:22 2009 +0200

monkey-bubble-0.4.0-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/monkey-bubble/FrugalBuild 
b/source/gnome-extra/monkey-bubble/FrugalBuild
index 193a0bf..718c41c 100644
--- a/source/gnome-extra/monkey-bubble/FrugalBuild
+++ b/source/gnome-extra/monkey-bubble/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=monkey-bubble
pkgver=0.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="A Puzzle Bobble clone"
url="http://home.gna.org/monkeybubble";
-depends=('librsvg' 'libgnomeui' 'libsm' 'gnome-vfs' 'esd' 'pango' 'gail' 
'gstreamer' 'libglade' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
+depends=('librsvg>=2.26.0-2' 'libgnomeui>=2.24.1-2' 'libsm' 'gnome-vfs' 'esd' 
'pango' 'gail>=2.16.2-2' 'gstreamer' 'libglade' 'atk' 'freetype2' 
'libxau>=1.0.4' 'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 
'libxi' 'libxrandr' 'libxcursor')
makedepends=('perl-xml-parser' 'gnome-doc-utils')
options=('scriptlet')
_F_gnome_schemas=('/etc/gconf/schemas/monkey-bubble.schemas')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: news-notification-0.5rc2-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=e4006d0a46f80269dc8521d4d8e29e3ec869f56b

commit e4006d0a46f80269dc8521d4d8e29e3ec869f56b
Author: bouleetbil 
Date:   Thu Jun 18 19:19:01 2009 +0200

news-notification-0.5rc2-3-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/news-notification/FrugalBuild 
b/source/gnome-extra/news-notification/FrugalBuild
index 56ec200..80fdd6c 100644
--- a/source/gnome-extra/news-notification/FrugalBuild
+++ b/source/gnome-extra/news-notification/FrugalBuild
@@ -3,13 +3,13 @@

pkgname=news-notification
pkgver=0.5rc2
-pkgrel=2
+pkgrel=3
pkgdesc="News notification popup windows for Gnome."
_F_sourceforge_ext=".tgz"
_F_sourceforge_dirname="newsnotif"
_F_sourceforge_realname="$_F_sourceforge_dirname"
Finclude sourceforge
-depends=('libnotify' 'freetype2' 'libxau' 'libxdmcp' 'curl>=7.19.0' 'tidy' 
'libxdamage' 'libxext')
+depends=('libnotify' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'curl>=7.19.0' 
'tidy' 'libxdamage' 'libxext')
groups=('gnome-extra')
archs=('i686' 'x86_64')
source=($source $pkgname.png)
@@ -25,4 +25,4 @@ build()
Ficon $pkgname.png
}

-# optimization OK
\ No newline at end of file
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: pegsolitaire-0.0.3-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=d961a6d14b8716a8c49896917537622a7de6dbc8

commit d961a6d14b8716a8c49896917537622a7de6dbc8
Author: bouleetbil 
Date:   Thu Jun 18 19:23:09 2009 +0200

pegsolitaire-0.0.3-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/pegsolitaire/FrugalBuild 
b/source/gnome-extra/pegsolitaire/FrugalBuild
index 4c7d586..98dcce3 100644
--- a/source/gnome-extra/pegsolitaire/FrugalBuild
+++ b/source/gnome-extra/pegsolitaire/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=pegsolitaire
pkgver=0.0.3
-pkgrel=1
+pkgrel=2
pkgdesc="Peg Solitaire is a game similar to Hi-Q."
url="http://www.asselstine.com/pegsolitaire/";
-depends=('libgnomeui' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 'gail' 
'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau' 'libxdmcp' 'libjpeg' 
'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
+depends=('libgnomeui>=2.24.1-2' 'libsm' 'popt' 'gnome-vfs' 'esd' 'pango' 
'gail>=2.16.2-2' 'libart_lgpl' 'libglade' 'atk' 'freetype2' 'libxau>=1.0.4' 
'libxdmcp' 'libjpeg' 'openssl' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 
'libxcursor')
makedepends=('perl-xml-parser')
options=('scriptlet')
groups=('gnome-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: phat-0.4.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=f1c061ec944c5f4fec67095025a176418a928fdc

commit f1c061ec944c5f4fec67095025a176418a928fdc
Author: bouleetbil 
Date:   Thu Jun 18 20:48:42 2009 +0200

phat-0.4.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/phat/FrugalBuild 
b/source/gnome-extra/phat/FrugalBuild
index beb6171..3665b23 100644
--- a/source/gnome-extra/phat/FrugalBuild
+++ b/source/gnome-extra/phat/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=phat
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="A collection of GTK+ widgets geared toward pro-audio apps"
-depends=('libgnomecanvas' 'atk' 'pango' 'libxau' 'libxdmcp' 'libxinerama' 
'libxi' 'libxcursor' 'libxdamage' 'libxml2')
+depends=('libgnomecanvas' 'atk' 'pango>=1.24.2-2' 'libxau>=1.0.4' 'libxdmcp' 
'libxinerama' 'libxi>=1.2.1' 'libxcursor' 'libxdamage' 'libxml2')
Finclude berlios
groups=('gnome-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: bareftp-0.2.3-1-i686 *version bump

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=583f14538b3354f8bfcf32604ec6e1807761e077

commit 583f14538b3354f8bfcf32604ec6e1807761e077
Author: bouleetbil 
Date:   Thu Jun 18 20:56:52 2009 +0200

bareftp-0.2.3-1-i686
*version bump

diff --git a/source/gnome-extra/bareftp/FrugalBuild 
b/source/gnome-extra/bareftp/FrugalBuild
index 07f5d37..0082c81 100644
--- a/source/gnome-extra/bareftp/FrugalBuild
+++ b/source/gnome-extra/bareftp/FrugalBuild
@@ -2,11 +2,11 @@
# Maintainer: bouleetbil 

pkgname=bareftp
-pkgver=0.2.2
+pkgver=0.2.3
pkgrel=1
pkgdesc="bareFTP is a file transfer client supporting the FTP and SSH"
-url="http://www.bareftp.org/";
-up2date="lynx -dump $url/download.php | Flasttar"
+url="http://www.bareftp.org";
+up2date="Flasttar $url/download.php"
source=($url/release/$pkgname-$pkgver.tar.gz)
depends=('gnome-sharp' 'gnome-desktop-sharp')
makedepends=('intltool')
@@ -16,7 +16,7 @@ _F_gnome_desktop=y
_F_gnome_iconcache=y
_F_mono_aot=0
Finclude mono gnome-scriptlet
-sha1sums=('5360e0a3aa2a165c3c56f4c38d3bd274168f3782')
+sha1sums=('2a3527bd337da1ddeb2589aff4bbefa7eb7feefd')

build() {
unset MAKEFLAGS
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: simdock-1.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=4b26afb3151e9522fb51ee5d9f7a14d6bb0ed66b

commit 4b26afb3151e9522fb51ee5d9f7a14d6bb0ed66b
Author: bouleetbil 
Date:   Thu Jun 18 21:03:21 2009 +0200

simdock-1.2-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/simdock/FrugalBuild 
b/source/gnome-extra/simdock/FrugalBuild
index ad04a4f..1868dbd 100644
--- a/source/gnome-extra/simdock/FrugalBuild
+++ b/source/gnome-extra/simdock/FrugalBuild
@@ -4,13 +4,12 @@

pkgname=simdock
pkgver=1.2
-pkgrel=1
+pkgrel=2
pkgdesc="SimDock is a fast and customizable dockbar. It fits well in Gnome but 
works on most desktop environments without Compiz nor 3D acceleration."
_F_sourceforge_sep="_"
-_F_sourceforge_broken_up2date="1"
Finclude sourceforge
_F_cd_path="trunk"
-depends=('gconf' 'libwnck' 'atk' 'pango' 'libxau' 'libxdmcp' 'wxgtk'
+depends=('gconf>=2.26.2-2' 'libwnck>=2.26.1-2' 'atk' 'pango' 'libxau>=1.0.4' 
'libxdmcp' 'wxgtk>=2.8.9-2'
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libxxf86vm'
'libjpeg' 'libtiff' 'expat')
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: twitux-0.69-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=6f1ca051e30d9a5b8ccf097dd92cca97d4ebde3c

commit 6f1ca051e30d9a5b8ccf097dd92cca97d4ebde3c
Author: bouleetbil 
Date:   Thu Jun 18 21:07:01 2009 +0200

twitux-0.69-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/twitux/FrugalBuild 
b/source/gnome-extra/twitux/FrugalBuild
index edfcb61..feb8518 100644
--- a/source/gnome-extra/twitux/FrugalBuild
+++ b/source/gnome-extra/twitux/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=twitux
pkgver=0.69
-pkgrel=1
+pkgrel=2
pkgdesc="A Twitter client for the Gnome desktop."
_F_sourceforge_ext=".tar.bz2"
Finclude sourceforge
url="http://live.gnome.org/DanielMorales/Twitux";
-depends=('pango' 'glibc' 'gnome-keyring' 'libsexy' 'libsoup' 'libnotify' 'atk' 
'freetype2' 'libxau' 'libxdmcp' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 
'libxcursor' 'gconf' 'libcanberra-gtk')
+depends=('pango>=1.24.2-2' 'glibc' 'gnome-keyring' 'libsexy' 'libsoup' 
'libnotify' 'atk' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' 
'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'gconf' 'libcanberra-gtk')
makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
options=('scriptlet')
_F_gnome_desktop="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: vagalume-0.7.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=83f111e903ecd9c02a82d9379bbf320ee27f4d61

commit 83f111e903ecd9c02a82d9379bbf320ee27f4d61
Author: bouleetbil 
Date:   Thu Jun 18 21:21:13 2009 +0200

vagalume-0.7.1-2-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/vagalume/FrugalBuild 
b/source/gnome-extra/vagalume/FrugalBuild
index 1fac043..f714c46 100644
--- a/source/gnome-extra/vagalume/FrugalBuild
+++ b/source/gnome-extra/vagalume/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=vagalume
pkgver=0.7.1
-pkgrel=1
+pkgrel=2
pkgdesc="Vagalume is a Last.fm client for Gnome"
url="http://vagalume.igalia.com";
-depends=('gtk+2' 'freetype2' 'glibc' 'libxau' 'libxdmcp' 'gstreamer' 
'curl>=7.19.0' 'libxdamage' 'libxext' 'gst-plugins-ugly-mad' 'libgcrypt')
+depends=('gtk+2>=2.16.2-2' 'freetype2' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 
'gstreamer' 'curl>=7.19.0' 'libxdamage' 'libxext' 'gst-plugins-ugly-mad' 
'libgcrypt')
options=('scriptlet')
_F_gnome_iconcache="y"
_F_gnome_desktop="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: wp_tray-0.5.5-4-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=d90bcb8a9d3a1a1822d25f6b3e5eb92d35253564

commit d90bcb8a9d3a1a1822d25f6b3e5eb92d35253564
Author: bouleetbil 
Date:   Thu Jun 18 21:31:11 2009 +0200

wp_tray-0.5.5-4-i686
*rebuild with new xorg

diff --git a/source/gnome-extra/wp_tray/FrugalBuild 
b/source/gnome-extra/wp_tray/FrugalBuild
index d2830db..402c3d2 100644
--- a/source/gnome-extra/wp_tray/FrugalBuild
+++ b/source/gnome-extra/wp_tray/FrugalBuild
@@ -4,11 +4,11 @@

pkgname=wp_tray
pkgver=0.5.5
-pkgrel=3
+pkgrel=4
pkgdesc="Wallpaper Tray is a utility for the Gnome Desktop Panel."
url="http://planetearthworm.com/projects/wp_tray/";
-depends=('libboost-mt>=1.37.0' 'libgnomeuimm' 'gnome-panel' 'libjpeg' 'libsm' 
'popt' 'gail' 'libart_lgpl' \
-   'openssl' 'esd' 'libxml++' 'libnotify' 'atk' 'pango' 'freetype2' 
'libxau' 'libxdmcp' \
+depends=('libboost-mt>=1.37.0' 'libgnomeuimm' 'gnome-panel>=2.26.2-2' 
'libjpeg' 'libsm' 'popt' 'gail>=2.16.2-2' 'libart_lgpl' \
+   'openssl' 'esd' 'libxml++' 'libnotify' 'atk' 'pango' 'freetype2' 
'libxau>=1.0.4' 'libxdmcp' \
'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor')
makedepends=('perl-xml-parser' 'boost>=1.37.0')
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: coriander-2.0.0-3-i686

2009-06-18 Thread jercel
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5b718213a19c42515f5a4b4c538bb24fb9568e01

commit 5b718213a19c42515f5a4b4c538bb24fb9568e01
Author: jercel 
Date:   Thu Jun 18 21:53:13 2009 +0200

coriander-2.0.0-3-i686

* Version Bump
* Change m8r
* Fix update

diff --git a/source/gnome-extra/coriander/FrugalBuild 
b/source/gnome-extra/coriander/FrugalBuild
index 99a77e5..b4eb900 100644
--- a/source/gnome-extra/coriander/FrugalBuild
+++ b/source/gnome-extra/coriander/FrugalBuild
@@ -1,20 +1,16 @@
# Compiling Time: ~0.12 SBU
-# Maintainer: Christian Hamar alias krix 
+# Maintainer: jercel 

pkgname=coriander
-pkgver=2.0.0_rc6
-pkgrel=2
+pkgver=2.0.0
+pkgrel=3
+url="http://damien.douxchamps.net/ieee1394/coriander/";
pkgdesc="A library to control A/V devices using the 1394ta AV/C commands."
+_F_sourceforge_realname="coriander-2"
Finclude sourceforge
-url="http://damien.douxchamps.net/ieee1394/coriander/";
depends=('libgnomeui' 'libtheora' 'ffmpeg' 'libxv' 'sdl' 'libdc1394>=2.0.0' 
'libraw1394>=2.0' 'faad2' 'faac')
groups=('gnome-extra')
archs=('i686' 'x86_64')
-#source=($source \
-#  
http://ftp.frugalware.org/pub/other/sources/coriander/coriander-2.0.0-cvs.patch)
-up2date="lynx -dump 
http://sourceforge.net/project/showfiles.php?group_id=17605 |grep 
coriander-2[0-9.].*tar.gz |sed -n -e 's/.*r-\(.*\).t.*/\1/' -e 's/-/_/' -e '1 
p'"
-_F_cd_path="$pkgname-`echo $pkgver | sed 's/_/-/'`"
-options=('scriptlet')
-sha1sums=('e869057d120793b76bc37b16f8e6460cac925179')
+sha1sums=('8a71763b5d72fd70eec479da801526ce541755dc')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: btnx-config-0.4.9-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=e5cb8df770d90b2c47a973e349fed011bcb9a539

commit e5cb8df770d90b2c47a973e349fed011bcb9a539
Author: bouleetbil 
Date:   Thu Jun 18 22:01:55 2009 +0200

btnx-config-0.4.9-3-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/btnx-config/FrugalBuild 
b/source/xapps-extra/btnx-config/FrugalBuild
index c2d48e3..f8d16fe 100644
--- a/source/xapps-extra/btnx-config/FrugalBuild
+++ b/source/xapps-extra/btnx-config/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=btnx-config
pkgver=0.4.9
-pkgrel=2
+pkgrel=3
pkgdesc="Button Extension- a GNU/GPL mouse tool for GNU/Linux"
url="http://www.ollisalonen.com/btnx/";
-depends=('libglade' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxdamage' 
'libxext')
+depends=('libglade' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxdamage' 'libxext>=1.0.5-3')
options=('scriptlet')
groups=('xapps-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: consonance-0.4.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=aea3b7222e12dc1237602a583c0555ef57551803

commit aea3b7222e12dc1237602a583c0555ef57551803
Author: bouleetbil 
Date:   Thu Jun 18 22:05:19 2009 +0200

consonance-0.4.1-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/consonance/FrugalBuild 
b/source/xapps-extra/consonance/FrugalBuild
index 0a71ed6..f803028 100644
--- a/source/xapps-extra/consonance/FrugalBuild
+++ b/source/xapps-extra/consonance/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=consonance
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="A lightweight music manager"
-depends=('libmad' 'libao' 'libnotify' 'freetype2' 'libxau' 'libxdmcp' 
'libsndfile' 'libvorbis' 'taglib' 'libxdamage' 'libxext')
+depends=('libmad' 'libao' 'libnotify' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libsndfile' 'libvorbis' 'taglib' 'libxdamage' 'libxext>=1.0.5-3')
_F_sourceforge_prefix="$pkgname v"
Finclude sourceforge
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: ghemical-2.98-1-i686

2009-06-18 Thread jercel
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a89fa8f966b730408b7d5d1446c16d2b2551b1e

commit 8a89fa8f966b730408b7d5d1446c16d2b2551b1e
Author: jercel 
Date:   Thu Jun 18 22:13:50 2009 +0200

ghemical-2.98-1-i686

* Version Bump
* Change m8r

diff --git a/source/xapps-extra/ghemical/FrugalBuild 
b/source/xapps-extra/ghemical/FrugalBuild
index 27ba902..f25da4d 100644
--- a/source/xapps-extra/ghemical/FrugalBuild
+++ b/source/xapps-extra/ghemical/FrugalBuild
@@ -1,8 +1,8 @@
# Compiling Time: 0.46 SBU
-# Maintainer: Christian Hamar alias krix 
+# Maintainer: jercel 

pkgname=ghemical
-pkgver=2.95
+pkgver=2.98
pkgrel=1
pkgdesc="Libghemical is a software library which contains all of the 
computational chemistry functionality of the ghemical application."
url="http://www.uku.fi/~thassine/projects/ghemical/";
@@ -14,7 +14,7 @@ options=('scriptlet')
up2date="lynx -dump http://www.uku.fi/~thassine/projects/download/current/ | 
grep -v libghemical | Flasttar"
# http://www.uku.fi/~thassine/projects/download/archive/read_me.txt
source=(http://www.uku.fi/~thassine/projects/download/current/$pkgname-$pkgver.tar.gz)
-sha1sums=('ac9419292554103f2b9bc7be8dfc921906134351')
+sha1sums=('d4212aefe12b4d1f98ce6859e0f0d0a658c64a5d')

build() {
Fbuild --enable-threads --enable-openbabel
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: conspire-0.20-3-i686 *rebuild with new xorg *added gtk fix

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=1f1598a510076b367e8929b4ef8699636cfdac43

commit 1f1598a510076b367e8929b4ef8699636cfdac43
Author: bouleetbil 
Date:   Thu Jun 18 22:15:53 2009 +0200

conspire-0.20-3-i686
*rebuild with new xorg
*added gtk fix

diff --git a/source/xapps-extra/conspire/FrugalBuild 
b/source/xapps-extra/conspire/FrugalBuild
index 67f90d5..f0fe400 100644
--- a/source/xapps-extra/conspire/FrugalBuild
+++ b/source/xapps-extra/conspire/FrugalBuild
@@ -3,13 +3,14 @@

pkgname=conspire
pkgver=0.20
-pkgrel=2
+pkgrel=3
pkgdesc="A high quality IRC client which uses a multitude of interfaces."
url="http://www.nenolod.net/conspire/";
-depends=('libmowgli>=0.7.0' 'freetype2' 'libxau' 'libxdmcp' 'libsexy' 
'libnotify' 'libxdamage' 'libxext')
+depends=('libmowgli>=0.7.0' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libsexy' 
'libnotify' 'libxdamage' 'libxext>=1.0.5-3')
options=('scriptlet')
groups=('xapps-extra')
archs=('i686' 'x86_64')
up2date="lynx -dump $url | Flasttar"
-source=(http://distfiles.atheme.org/$pkgname-$pkgver.tbz2)
-sha1sums=('0c68cc683568ac28a24e6294619ff0c893a3451b')
+source=(http://distfiles.atheme.org/$pkgname-$pkgver.tbz2 gtk.diff)
+sha1sums=('0c68cc683568ac28a24e6294619ff0c893a3451b' \
+  '1f3144f5bf8ef675e7bc2acab11e4883c69e835f')
diff --git a/source/xapps-extra/conspire/gtk.diff 
b/source/xapps-extra/conspire/gtk.diff
new file mode 100644
index 000..0f952d8
--- /dev/null
+++ b/source/xapps-extra/conspire/gtk.diff
@@ -0,0 +1,12 @@
+--- a/src/fe-gtk/xtext.h   Mon Mar 24 06:54:42 2008 -0500
 b/src/fe-gtk/xtext.h   Tue Jul 22 18:47:41 2008 +0100
+@@ -255,6 +255,6 @@
+ xtext_buffer *gtk_xtext_buffer_new (GtkXText *xtext);
+ void gtk_xtext_buffer_free (xtext_buffer *buf);
+ void gtk_xtext_buffer_show (GtkXText *xtext, xtext_buffer *buf, int render);
+-GtkType gtk_xtext_get_type (void);
++GType gtk_xtext_get_type (void);
+
+ #endif
+
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: cwallpaper-0.3.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=28a3d3874c65ab18d12c391a54700f3043332b8f

commit 28a3d3874c65ab18d12c391a54700f3043332b8f
Author: bouleetbil 
Date:   Thu Jun 18 22:18:53 2009 +0200

cwallpaper-0.3.2-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/cwallpaper/FrugalBuild 
b/source/xapps-extra/cwallpaper/FrugalBuild
index ffc3985..25393fd 100644
--- a/source/xapps-extra/cwallpaper/FrugalBuild
+++ b/source/xapps-extra/cwallpaper/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=cwallpaper
pkgver=0.3.2
-pkgrel="1"
+pkgrel=2
pkgdesc="CWallpaper is a front end for fbsetbg, Esetroot, feh, and other 
wallpaper changers."
-depends=('gtk+2' 'freetype2' 'libxau' 'libxdmcp' 'libxdamage' 'libxext' 
'libxml2')
+depends=('gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' 
'libxext' 'libxml2')
_F_sourceforge_prefix="CWallpaper Version "
Finclude sourceforge
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: denemo-0.8.4-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=578b3a81769de08f77a73d340a66580c2200a086

commit 578b3a81769de08f77a73d340a66580c2200a086
Author: bouleetbil 
Date:   Thu Jun 18 22:23:10 2009 +0200

denemo-0.8.4-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/denemo/FrugalBuild 
b/source/xapps-extra/denemo/FrugalBuild
index bf51422..ffaabc2 100644
--- a/source/xapps-extra/denemo/FrugalBuild
+++ b/source/xapps-extra/denemo/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=denemo
pkgver=0.8.4
-pkgrel=1
+pkgrel=2
pkgdesc="GTK+ graphical music notation editor."
url="http://savannah.gnu.org/projects/$pkgname";
-depends=('gtk+2' 'libxau' 'libxdmcp' 'freetype2' 'guile' 'aubio' 'portaudio' 
'libxml2' 'libxdamage' 'libxext')
+depends=('gtk+2>=2.16.2-2' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'guile' 
'aubio' 'portaudio' 'libxml2' 'libxdamage' 'libxext')
options=('scriptlet')
groups=('xapps-extra')
archs=('i686' 'x86_64')
@@ -20,3 +20,5 @@ up2date="Flasttar 
http://mirrors.linhub.com/savannah/$pkgname/";
source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
sha1sums=('db88694da7fb50064ff8e13d72b40755b349e23d')

+
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: denemo-0.8.4-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=489724be5a38d8b6d41794fc62d5b4c01ec9dc56

commit 489724be5a38d8b6d41794fc62d5b4c01ec9dc56
Author: bouleetbil 
Date:   Thu Jun 18 22:23:55 2009 +0200

denemo-0.8.4-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/denemo/FrugalBuild 
b/source/xapps-extra/denemo/FrugalBuild
index ffaabc2..70f43a6 100644
--- a/source/xapps-extra/denemo/FrugalBuild
+++ b/source/xapps-extra/denemo/FrugalBuild
@@ -20,5 +20,4 @@ up2date="Flasttar 
http://mirrors.linhub.com/savannah/$pkgname/";
source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
sha1sums=('db88694da7fb50064ff8e13d72b40755b349e23d')

-
# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: emelfm2-0.4.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=dc27ac91ed31e9f58daff173aface28d29cc8e9d

commit dc27ac91ed31e9f58daff173aface28d29cc8e9d
Author: bouleetbil 
Date:   Thu Jun 18 22:29:10 2009 +0200

emelfm2-0.4.1-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/emelfm2/FrugalBuild 
b/source/xapps-extra/emelfm2/FrugalBuild
index 511276d..b656329 100644
--- a/source/xapps-extra/emelfm2/FrugalBuild
+++ b/source/xapps-extra/emelfm2/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=emelfm2
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="emelFM2 is a file manager that implements the popular two-pane design."
url="http://www.emelfm2.net/";
license="GPL2"
@@ -12,7 +12,7 @@ up2date="lynx -dump $url|grep -m 1 -o $pkgname.*tar.gz|grep 
-o '[0-9\.]\+[0-9]\+
source=(http://emelfm2.net/rel/$pkgname-$pkgver.tar.gz options.patch)
groups=('xapps-extra')
archs=('i686' 'x86_64')
-depends=('gtk+2>=2.10.2' 'freetype2' 'libxau' 'libxdmcp' 'gamin' 'libxdamage' 
'libxext' 'libxml2')
+depends=('gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'gamin' 
'libxdamage' 'libxext' 'libxml2')
options=('scriptlet')

build()
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: firebox-tools-0.5.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=cd56e164c0d0d7be9f77521cd44568a78d1c48c3

commit cd56e164c0d0d7be9f77521cd44568a78d1c48c3
Author: bouleetbil 
Date:   Thu Jun 18 22:31:36 2009 +0200

firebox-tools-0.5.0-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/firebox-tools/FrugalBuild 
b/source/xapps-extra/firebox-tools/FrugalBuild
index 53868f2..df2703d 100644
--- a/source/xapps-extra/firebox-tools/FrugalBuild
+++ b/source/xapps-extra/firebox-tools/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=firebox-tools
pkgver=0.5.0
-pkgrel=1
+pkgrel=2
pkgdesc="GUI tools for configuring firebox."
url="http://firebox.intuxication.org";
rodepends=('firebox')
-depends=('gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxml2' 
'libxdamage' 'libxext')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxml2' 'libxdamage' 'libxext')
groups=('xapps-extra')
archs=('i686' 'x86_64')
up2date="Flastarchive $url/?page=4 .tar.gz"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: fme-1.1.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=e1be323d5a2c35548492693849477aee70ab684a

commit e1be323d5a2c35548492693849477aee70ab684a
Author: bouleetbil 
Date:   Thu Jun 18 22:34:46 2009 +0200

fme-1.1.2-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/fme/FrugalBuild 
b/source/xapps-extra/fme/FrugalBuild
index 3eba217..718693e 100644
--- a/source/xapps-extra/fme/FrugalBuild
+++ b/source/xapps-extra/fme/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=fme
pkgver=1.1.2
-pkgrel=1
+pkgrel=2
pkgdesc="Fluxbox Menu Editor is a nice and useful menu editor for the Fluxbox 
WM"
-depends=('libglademm' 'freetype2' 'libxau' 'libxdmcp' 'libstdc++' 'libxdamage' 
'libxext' 'fluxbox')
+depends=('libglademm' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libstdc++' 
'libxdamage' 'libxext' 'fluxbox')
_F_googlecode_dirname="fluxbox-menu-editor"
Finclude googlecode
groups=('xapps-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gdmap-0.8.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=c32b08c2593b0ff8f90b546f14959cb0def8e5a7

commit c32b08c2593b0ff8f90b546f14959cb0def8e5a7
Author: bouleetbil 
Date:   Thu Jun 18 22:37:17 2009 +0200

gdmap-0.8.1-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/gdmap/FrugalBuild 
b/source/xapps-extra/gdmap/FrugalBuild
index daca409..cd2620b 100644
--- a/source/xapps-extra/gdmap/FrugalBuild
+++ b/source/xapps-extra/gdmap/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=gdmap
pkgver=0.8.1
-pkgrel=1
+pkgrel=2
pkgdesc="Tool to inspect the used space of folders."
-depends=('gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxml2' 
'libxdamage' 'libxext')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxml2' 'libxdamage' 'libxext')
makedepends=('perl-xml-parser')
options=('scriptlet')
Finclude sourceforge
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gelemental-1.2.0-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=13ee93263221fe7a2d36804c809bb6d5a12cfe59

commit 13ee93263221fe7a2d36804c809bb6d5a12cfe59
Author: bouleetbil 
Date:   Thu Jun 18 22:45:04 2009 +0200

gelemental-1.2.0-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/gelemental/FrugalBuild 
b/source/xapps-extra/gelemental/FrugalBuild
index bcb51cd..c24ec14 100644
--- a/source/xapps-extra/gelemental/FrugalBuild
+++ b/source/xapps-extra/gelemental/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=gelemental
pkgver=1.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="periodic table viewer that provides detailed information on the 
chemical elements"
url="http://www.kdau.com/projects/gelemental";
-depends=('gtkmm' 'libxau' 'libxdmcp' 'libxml2' 'libstdc++' 'libxext' 
'libxdamage')
+depends=('gtkmm>=2.16.0-2' 'libxau>=1.0.4' 'libxdmcp' 'libxml2' 'libstdc++' 
'libxext' 'libxdamage')
makedepends=('intltool' 'gettext')
_F_gnome_iconcache="y"
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gimp-dbp-1.1.9-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=0122c513d025d1d921137af1e6208de01af6fc1c

commit 0122c513d025d1d921137af1e6208de01af6fc1c
Author: bouleetbil 
Date:   Thu Jun 18 22:54:20 2009 +0200

gimp-dbp-1.1.9-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/gimp-dbp/FrugalBuild 
b/source/xapps-extra/gimp-dbp/FrugalBuild
index 8587be2..6c26277 100644
--- a/source/xapps-extra/gimp-dbp/FrugalBuild
+++ b/source/xapps-extra/gimp-dbp/FrugalBuild
@@ -4,10 +4,10 @@
pkgname=gimp-dbp
pkgver=1.1.9
_realver=1-1-9
-pkgrel=1
+pkgrel=2
pkgdesc="A GUI Batch Processor for GIMP."
url="http://members.ozemail.com.au/~hodsond/dbp.html";
-depends=('gimp' 'gtk+2' 'libxau' 'libxdmcp' 'freetype2' 'libstdc++' 'libxext' 
'libxdamage' 'libxml2')
+depends=('gimp' 'gtk+2>=2.16.2-2' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 
'libstdc++' 'libxext' 'libxdamage' 'libxml2')
groups=('xapps-extra')
# we pull in pango, so...
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: glista-0.4-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=cff98fb560eda10fbe75f7455302c340e06479c1

commit cff98fb560eda10fbe75f7455302c340e06479c1
Author: bouleetbil 
Date:   Thu Jun 18 22:57:14 2009 +0200

glista-0.4-3-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/glista/FrugalBuild 
b/source/xapps-extra/glista/FrugalBuild
index 56484db..5c8fe58 100644
--- a/source/xapps-extra/glista/FrugalBuild
+++ b/source/xapps-extra/glista/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=glista
pkgver=0.4
-pkgrel=2
+pkgrel=3
pkgdesc="A Super-simple Gtk+ based to-do list manager."
-depends=('gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'libxml2' 
'libxdamage' 'libxext')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libxml2' 'libxdamage' 'libxext')
options=('scriptlet')
Finclude googlecode
url="http://prematureoptimization.org/$pkgname";
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] notifyosd: gnome-settings-daemon-notify-osd-2.26.1-1-i686

2009-06-18 Thread Cedynamix
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=notifyosd.git;a=commitdiff;h=95c9bbf7ab1e73f876ba48ce2e8f639289355fd9

commit 95c9bbf7ab1e73f876ba48ce2e8f639289355fd9
Author: Cedynamix 
Date:   Thu Jun 18 23:17:39 2009 +0200

gnome-settings-daemon-notify-osd-2.26.1-1-i686

diff --git a/source/gnome/gnome-settings-daemon-notify-osd/FrugalBuild 
b/source/gnome/gnome-settings-daemon-notify-osd/FrugalBuild
new file mode 100644
index 000..09d8a8e
--- /dev/null
+++ b/source/gnome/gnome-settings-daemon-notify-osd/FrugalBuild
@@ -0,0 +1,38 @@
+# Compiling time: 1.10 SBU
+# Maintainer: Christian Hamar alias krix 
+
+pkgname=gnome-settings-daemon-notify-osd
+_F_gnome_name=gnome-settings-daemon
+pkgver=2.26.1
+pkgrel=1
+pkgdesc="Utility library for accessing gnome-settings-daemon over DBUS"
+depends=('libgnomekbd>=2.26.0' 'esd' 'gst-plugins-base' 'libgnomeui' 
'libxxf86misc' 'gnome-desktop' 'gconf' 'alsa-lib' 'notify-osd')
+makedepends=('intltool' 'gtk-doc>=1.11' 'gnome-doc-utils>=0.14.0')
+groups=('gnome' 'gnome-minimal')
+provides=('gnome-settings-daemon=2.26.1')
+conflicts=('gnome-control-center<2.22.0' 'gnome-settings-daemon')
+replaces=('gnome-settings-daemon')
+archs=('i686' 'x86_64' 'ppc')
+_F_gnome_schemas=('/etc/gconf/schemas/apps_gnome_settings_daemon_keybindings.schemas'
 \
+   '/etc/gconf/schemas/apps_gnome_settings_daemon_screensaver.schemas' \
+   '/etc/gconf/schemas/apps_gnome_settings_daemon_xrandr.schemas' \
+   '/etc/gconf/schemas/desktop_gnome_font_rendering.schemas' \
+   '/etc/gconf/schemas/desktop_gnome_keybindings.schemas' \
+   '/etc/gconf/schemas/gnome-settings-daemon.schemas')
+_F_gnome_scrollkeeper="y"
+_F_gnome_iconcache="y"
+_F_cd_path="$_F_gnome_name-$pkgver"
+Finclude gnome gnome-scriptlet
+source=(${sour...@]} default_dpi.patch)
+#Fconfopts="$Fconfopts --enable-gstreamer"
+sha1sums=('0c2cef37a0ac314a8205cefea9edb8f0669a' \
+  'eb601b6406db7700c12d6b144eacbbdc7c4a780e')
+
+build(){
+   Fbuild
+   Fbuild_gnome_scriptlet
+   Fmkdir usr/share/gnome/autostart
+   Fcprel $Fdestdir/etc/xdg/autostart/gnome-settings-daemon.desktop 
usr/share/gnome/autostart/gnome-settings-daemon.desktop
+}
+
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] notifyosd: gnome-settings-daemon-notify-osd-2.26.1-1-i686

2009-06-18 Thread Cedynamix
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=notifyosd.git;a=commitdiff;h=d9f89b4e382f79706bbbaddd84a68cb271e71f1c

commit d9f89b4e382f79706bbbaddd84a68cb271e71f1c
Author: Cedynamix 
Date:   Thu Jun 18 23:22:37 2009 +0200

gnome-settings-daemon-notify-osd-2.26.1-1-i686

diff --git a/source/gnome/gnome-settings-daemon-notify-osd/default_dpi.patch 
b/source/gnome/gnome-settings-daemon-notify-osd/default_dpi.patch
new file mode 100644
index 000..6f7f28a
--- /dev/null
+++ b/source/gnome/gnome-settings-daemon-notify-osd/default_dpi.patch
@@ -0,0 +1,11 @@
+diff -Naur 
gnome-settings-daemon-2.22.1.orig/data/desktop_gnome_font_rendering.schemas.in 
gnome-settings-daemon-2.22.1/data/desktop_gnome_font_rendering.schemas.in
+--- 
gnome-settings-daemon-2.22.1.orig/data/desktop_gnome_font_rendering.schemas.in  
   2008-04-10 17:09:07.0 +0200
 gnome-settings-daemon-2.22.1/data/desktop_gnome_font_rendering.schemas.in  
2008-04-10 17:09:40.0 +0200
+@@ -6,6 +6,7 @@
+   /desktop/gnome/font_rendering/dpi
+ gnome
+   float
++  72
+ 
+   DPI
+ 
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: google-gadgets-0.10.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=ebd8290b6406f4a1ca3f2796e110755affd6d0ec

commit ebd8290b6406f4a1ca3f2796e110755affd6d0ec
Author: bouleetbil 
Date:   Thu Jun 18 23:18:17 2009 +0200

google-gadgets-0.10.2-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/google-gadgets/FrugalBuild 
b/source/xapps-extra/google-gadgets/FrugalBuild
index 7407126..4355769 100644
--- a/source/xapps-extra/google-gadgets/FrugalBuild
+++ b/source/xapps-extra/google-gadgets/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=google-gadgets
pkgver=0.10.2
-pkgrel=1
+pkgrel=2
pkgdesc="Google Gadgets for Linux"
-depends=('libstdc++' 'libxml2' 'libxau' 'libxdmcp' 'libtool' 'libxdamage' \
-   'xulrunner' 'nspr' 'libxft' 'libxt' 'libice' 'gst-plugins-base' 
'curl>=7.19.0')
+depends=('libstdc++' 'libxml2' 'libxau>=1.0.4' 'libxdmcp' 'libtool' 
'libxdamage' \
+   'xulrunner>=1.8.1.3-5' 'nspr' 'libxft' 'libxt' 'libice' 
'gst-plugins-base' 'curl>=7.19.0')
options=('scriptlet')
_F_googlecode_ext=".tar.bz2"
_F_googlecode_name="google-gadgets-for-linux"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: gpredict-0.9.0-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=9d0ab9d0f1b3a28252a7544b57df5ba816110aef

commit 9d0ab9d0f1b3a28252a7544b57df5ba816110aef
Author: bouleetbil 
Date:   Thu Jun 18 23:24:31 2009 +0200

gpredict-0.9.0-3-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/gpredict/FrugalBuild 
b/source/xapps-extra/gpredict/FrugalBuild
index ee64553..6741f21 100644
--- a/source/xapps-extra/gpredict/FrugalBuild
+++ b/source/xapps-extra/gpredict/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=gpredict
pkgver=0.9.0
-pkgrel=2
+pkgrel=3
pkgdesc="Gpredict is a program for satellite tracking."
_F_sourceforge_dirname="groundstation"
Finclude sourceforge
-depends=('gtk+2' 'freetype2' 'glibc' 'libxau' 'libxdmcp' 'curl>=7.19.0' 
'libxdamage' 'libxext' 'libxml2' 'grig')
+depends=('gtk+2>=2.16.2-2' 'freetype2' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 
'curl>=7.19.0' 'libxdamage' 'libxext' 'libxml2' 'grig')
makedepends=('perl-xml-parser')
options=('scriptlet')
groups=('xapps-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: grig-0.7.2-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=00d4c91fbb5909cb20996575be21bcae6c2c7f7c

commit 00d4c91fbb5909cb20996575be21bcae6c2c7f7c
Author: bouleetbil 
Date:   Thu Jun 18 23:27:47 2009 +0200

grig-0.7.2-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/grig/FrugalBuild 
b/source/xapps-extra/grig/FrugalBuild
index 3225686..9ac5fb9 100644
--- a/source/xapps-extra/grig/FrugalBuild
+++ b/source/xapps-extra/grig/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=grig
pkgver=0.7.2
-pkgrel=1
+pkgrel=2
pkgdesc="Rig control (cat) program."
_F_sourceforge_dirname="groundstation"
Finclude sourceforge
-depends=('gtk+2' 'glibc' 'freetype2' 'libxau' 'libxdmcp' 'hamlib' 'libxdamage' 
'libxext')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'hamlib' 'libxdamage' 'libxext')
makedepends=('perl-xml-parser')
options=('scriptlet')
groups=('xapps-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: grun-0.9.3-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=f560c9cf2399b2a72d1a58ced534b2d285304bc7

commit f560c9cf2399b2a72d1a58ced534b2d285304bc7
Author: bouleetbil 
Date:   Thu Jun 18 23:30:25 2009 +0200

grun-0.9.3-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/grun/FrugalBuild 
b/source/xapps-extra/grun/FrugalBuild
index 144295e..f06d783 100644
--- a/source/xapps-extra/grun/FrugalBuild
+++ b/source/xapps-extra/grun/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=grun
pkgver=0.9.3
-pkgrel=1
+pkgrel=2
pkgdesc="gRun is a GTK based Run dialog"
-depends=('gtk+2' 'glibc' 'libxdamage' 'libxau' 'libxdmcp' 'freetype2' 
'libxext' 'libxml2')
+depends=('gtk+2>=2.16.2-2' 'glibc' 'libxdamage' 'libxau>=1.0.4' 'libxdmcp' 
'freetype2' 'libxext' 'libxml2')
Finclude googlecode
options=('scriptlet')
groups=('xapps-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: homebank-4.0.3-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=32f6fadde0188747c07e8bfaee3e91f1ff4e7f96

commit 32f6fadde0188747c07e8bfaee3e91f1ff4e7f96
Author: bouleetbil 
Date:   Thu Jun 18 23:37:14 2009 +0200

homebank-4.0.3-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/homebank/FrugalBuild 
b/source/xapps-extra/homebank/FrugalBuild
index f995712..7e887f7 100644
--- a/source/xapps-extra/homebank/FrugalBuild
+++ b/source/xapps-extra/homebank/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=homebank
pkgver=4.0.3
-pkgrel=1
+pkgrel=2
pkgdesc="HomeBank is the free software you have always wanted to manage your 
personal accounts at home"
url="http://homebank.free.fr";
-depends=('libofx' 'gtk+2' 'freetype2' 'libxau' 'libxdmcp' 'libstdc++' 
'libxdamage' 'libxext' 'libxml2')
+depends=('libofx' 'gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libstdc++' 'libxdamage' 'libxext' 'libxml2')
makedepends=('perl-xml-parser' 'intltool')
options=('scriptlet')
_F_gnome_iconcache="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: mtpaint-3.31-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=12dc1cded8ed515661698fab985a8666f2545a85

commit 12dc1cded8ed515661698fab985a8666f2545a85
Author: bouleetbil 
Date:   Thu Jun 18 23:41:54 2009 +0200

mtpaint-3.31-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/mtpaint/FrugalBuild 
b/source/xapps-extra/mtpaint/FrugalBuild
index fbc3fa5..d3f6a77 100644
--- a/source/xapps-extra/mtpaint/FrugalBuild
+++ b/source/xapps-extra/mtpaint/FrugalBuild
@@ -4,11 +4,11 @@

pkgname=mtpaint
pkgver=3.31
-pkgrel=1
+pkgrel=2
pkgdesc="mtPaint is a simple GTK2 painting program designed for creating icons 
and pixel based artwork."
_F_sourceforge_ext=".tar.bz2"
Finclude sourceforge
-depends=('libungif' 'freetype2' 'gtk+2' 'glibc' 'libxau' 'libxdmcp' 'libice' 
'libxdamage' 'libxext' 'libxml2' 'libpng')
+depends=('libungif' 'freetype2' 'gtk+2>=2.16.2-2' 'glibc' 'libxau>=1.0.4' 
'libxdmcp' 'libice' 'libxdamage' 'libxext' 'libxml2' 'libpng')
groups=('xapps-extra')
options=('scriptlet')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: osmo-0.2.4-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=4ba90eaf3da18f4173cba72cfd0472b821bac51d

commit 4ba90eaf3da18f4173cba72cfd0472b821bac51d
Author: bouleetbil 
Date:   Thu Jun 18 23:48:49 2009 +0200

osmo-0.2.4-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/osmo/FrugalBuild 
b/source/xapps-extra/osmo/FrugalBuild
index ad152d6..8182f53 100644
--- a/source/xapps-extra/osmo/FrugalBuild
+++ b/source/xapps-extra/osmo/FrugalBuild
@@ -3,14 +3,14 @@

pkgname=osmo
pkgver=0.2.4
-pkgrel=1
+pkgrel=2
pkgdesc="A handy personal organizer which includes calendar, tasks manager and 
address book modules."
_F_sourceforge_dirname="osmo-pim"
_F_sourceforge_realname="$_F_sourceforge_dirname"
_F_sourceforge_prefix="$pkgname-"
Finclude sourceforge
url="http://clay.ll.pl/osmo/";
-depends=('glibc' 'gtk+2' 'freetype2' 'libxau' 'libxdmcp' 'libnotify' 
'libxdamage' 'libxext')
+depends=('glibc' 'gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 
'libnotify' 'libxdamage' 'libxext')
options=('scriptlet')
groups=('xapps-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: peertv-0.4.0.1-3-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=49368dba4151b80b0ea75f577c31168c40ca222a

commit 49368dba4151b80b0ea75f577c31168c40ca222a
Author: bouleetbil 
Date:   Fri Jun 19 07:40:32 2009 +0200

peertv-0.4.0.1-3-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/peertv/FrugalBuild 
b/source/xapps-extra/peertv/FrugalBuild
index 068fde0..3a091f6 100644
--- a/source/xapps-extra/peertv/FrugalBuild
+++ b/source/xapps-extra/peertv/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=peertv
pkgver=0.4.0.1
-pkgrel=2
+pkgrel=3
pkgdesc="Program to watch WebTV"
url="http://www.peertv.eu";
rodepends=('mplayer')
-depends=('wxgtk' 'libstdc++' 'libxau' 'libxdmcp' 'libxxf86vm' 'expat' 
'libxdamage' 'libxml2' 'libice')
+depends=('wxgtk>=2.8.9-2' 'libstdc++' 'libxau>=1.0.4' 'libxdmcp' 'libxxf86vm' 
'expat' 'libxdamage' 'libxml2' 'libice')
groups=('xapps-extra')
archs=('i686' 'x86_64')
up2date="lynx -dump $url/peertvlinux/ | Flasttarbz2"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: periodiccalendar-2.3-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=1bd89c4faa1fdfef96b990fde72cb37a193a05f9

commit 1bd89c4faa1fdfef96b990fde72cb37a193a05f9
Author: bouleetbil 
Date:   Fri Jun 19 07:47:29 2009 +0200

periodiccalendar-2.3-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/periodiccalendar/FrugalBuild 
b/source/xapps-extra/periodiccalendar/FrugalBuild
index bb09dc9..1d146ef 100644
--- a/source/xapps-extra/periodiccalendar/FrugalBuild
+++ b/source/xapps-extra/periodiccalendar/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=periodiccalendar
pkgver=2.3
-pkgrel=1
+pkgrel=2
pkgdesc="Periodic Calendar is a GUI utility which assists in women menstrual 
cycles tracking and fertility periods prediction"
-depends=('libglademm' 'libxau' 'libxdmcp' 'zlib' 'libxext' 'libxdamage')
+depends=('libglademm>=2.6.7-2' 'libxau>=1.0.4' 'libxdmcp' 'zlib' 'libxext' 
'libxdamage')
options=('scriptlet')
_F_sourceforge_ext=".tar.bz2"
_F_sourceforge_dirname="linuxorg"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: xfdesktop-4.6.1-3-i686

2009-06-18 Thread Priyank
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=b9039678febaf849460189be3bf2176046c4fd44

commit b9039678febaf849460189be3bf2176046c4fd44
Author: Priyank 
Date:   Fri Jun 19 11:30:08 2009 +0530

xfdesktop-4.6.1-3-i686

* Rebuild with thunar-1.0.1-3 and xfconf-4.6.1-2

diff --git a/source/xfce4/xfdesktop/FrugalBuild 
b/source/xfce4/xfdesktop/FrugalBuild
index 565d818..bbc454f 100644
--- a/source/xfce4/xfdesktop/FrugalBuild
+++ b/source/xfce4/xfdesktop/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=xfdesktop
pkgver=4.6.1
-pkgrel=2
+pkgrel=3
pkgdesc="A desktop manager for Xfce4."
-depends=('libxml2' 'libxfcegui4>=4.6.1' 'xfconf>=4.6.1' \
-   'dbus' 'thunar>=1.0.1-2' 'libexo>=0.3.101-2' 'libglade>=2.6.4-2' \
+depends=('libxml2' 'libxfcegui4>=4.6.1-3' 'xfconf>=4.6.1-2' \
+   'dbus' 'thunar>=1.0.1-3' 'libexo>=0.3.101-2' 'libglade>=2.6.4-2' \
'libxfce4menu>=4.6.1-2' 'libwnck>=2.26.1-2')
-makedepends=('xfce4-panel>=4.6.0' 'intltool')
+makedepends=('xfce4-panel>=4.6.1-2' 'intltool')
groups=('xfce4' 'xfce4-core')
archs=('i686' 'x86_64')
_F_gnome_iconcache=y
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: pidgin-birthday-reminder-1.1-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=a721d8db463a31b7c878346615068cc34ca61c43

commit a721d8db463a31b7c878346615068cc34ca61c43
Author: bouleetbil 
Date:   Fri Jun 19 08:46:12 2009 +0200

pidgin-birthday-reminder-1.1-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/pidgin-birthday-reminder/FrugalBuild 
b/source/xapps-extra/pidgin-birthday-reminder/FrugalBuild
index 8d6b14d..9897ce6 100644
--- a/source/xapps-extra/pidgin-birthday-reminder/FrugalBuild
+++ b/source/xapps-extra/pidgin-birthday-reminder/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=pidgin-birthday-reminder
pkgver=1.1
-pkgrel=1
+pkgrel=2
pkgdesc="Pidgin Birthday Reminder Plugin"
url="http://freakazoid.teamblind.de/2009/02/14/pidgin-birthday-reminder/";
-depends=('gtk+2' 'libxau' 'libxdmcp' 'zlib' 'libxext' 'libxdamage' 'pidgin')
+depends=('gtk+2>=2.16.2-2' 'libxau>=1.0.4' 'libxdmcp' 'zlib' 'libxext' 
'libxdamage' 'pidgin>=2.5.6-2')
makedepends=('intltool')
options=('scriptlet')
_F_sourceforge_name="birthday_reminder"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorg74: pidgin-extended-blist-sort-1.5-2-i686 *rebuild with new xorg

2009-06-18 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg74.git;a=commitdiff;h=fec22b470dc8d2e76a4750a02947ef1fb5d0d361

commit fec22b470dc8d2e76a4750a02947ef1fb5d0d361
Author: bouleetbil 
Date:   Fri Jun 19 08:51:11 2009 +0200

pidgin-extended-blist-sort-1.5-2-i686
*rebuild with new xorg

diff --git a/source/xapps-extra/pidgin-extended-blist-sort/FrugalBuild 
b/source/xapps-extra/pidgin-extended-blist-sort/FrugalBuild
index fb924a8..3dcf9c4 100644
--- a/source/xapps-extra/pidgin-extended-blist-sort/FrugalBuild
+++ b/source/xapps-extra/pidgin-extended-blist-sort/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=pidgin-extended-blist-sort
pkgver=1.5
-pkgrel=1
+pkgrel=2
pkgdesc="This Plugin allows you to sort your buddy list more flexible than 
Pidgin does."
url="http://freakazoid.teamblind.de/2008/12/13/pidgin-extended-buddy-list-sort-plugin/";
-depends=('gtk+2' 'pidgin' 'libxau' 'libxdmcp' 'zlib' 'libxext' 'libxdamage')
+depends=('gtk+2>=2.16.2-2' 'pidgin>=2.5.6-2' 'libxau>=1.0.4' 'libxdmcp' 'zlib' 
'libxext' 'libxdamage')
makedepends=('intltool')
options=('scriptlet')
groups=('xapps-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git