[Frugalware-git] wipv: evolution-2.30.1.2-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=a80617b264b6f15cec42a226704bc5849a00a32b

commit a80617b264b6f15cec42a226704bc5849a00a32b
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 09:45:25 2010 +0200

evolution-2.30.1.2-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome/evolution/FrugalBuild 
b/source/gnome/evolution/FrugalBuild
index 7da3e54..665a60e 100644
--- a/source/gnome/evolution/FrugalBuild
+++ b/source/gnome/evolution/FrugalBuild
@@ -4,13 +4,13 @@
pkgname=evolution
pkgver=2.30.1.2
evo_major=2.30
-pkgrel=1
+pkgrel=2
pkgdesc=Integrated mail, calendar and address book suite for GNOME
depends=('unique' \
'gst-plugins-base' 'gtkimageview=1.6.4-4')
rodepends=($pkgname-base $pkgname-audio)
makedepends=('intltool' 'gnome-doc-utils=0.14.0' 'openldap' \
-   'psmisc' 'gnome-common' 'krb5' 'gtk-doc')
+   'psmisc' 'gnome-common' 'krb5' 'gtk-doc' 'openssl=1.0.0')
groups=('gnome')
archs=('i686' 'x86_64' 'ppc')
_F_gnome_schemas=('/etc/gconf/schemas/apps_evolution_addressbook.schemas' \
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: virtuoso-6.1.0-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=df9a62a605546ea877c3515b7116f3d61106cdb5

commit df9a62a605546ea877c3515b7116f3d61106cdb5
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 11:20:07 2010 +0200

virtuoso-6.1.0-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/apps-extra/virtuoso/FrugalBuild 
b/source/apps-extra/virtuoso/FrugalBuild
index 0fcb070..710f993 100644
--- a/source/apps-extra/virtuoso/FrugalBuild
+++ b/source/apps-extra/virtuoso/FrugalBuild
@@ -3,18 +3,19 @@

pkgname=virtuoso
pkgver=6.1.0
-pkgrel=1
+pkgrel=2
pkgdesc=Virtuoso is an innovative Universal Server platform for SQL, RDF, XML, 
and Web Services
_F_sourceforge_name=$pkgname-opensource
Finclude sourceforge
url=http://www.openlinksw.com/dataspace/dav/wiki/Main/;
-depends=('glibc' 'libldap')
+depends=('glibc' 'libldap' 'openssl=1.0.0')
groups=('apps-extra')
archs=('i686' 'x86_64' 'ppc')
-source=($source build-only-what-kde-need.patch)
+source=($source build-only-what-kde-need.patch openssl.diff)
Fconfopts=$Fconfopts --disable-static
sha1sums=('11d68d3b8d7fef05017eaba6dcc86050db71d211' \
-  'e17dacd4d1a4fdd3717d5f0a0f60e04684cb7c4f')
+  'e17dacd4d1a4fdd3717d5f0a0f60e04684cb7c4f' \
+  '20f13c158754d93ad30cfda9a0771e4c65064c6b')

build()
{
diff --git a/source/apps-extra/virtuoso/openssl.diff 
b/source/apps-extra/virtuoso/openssl.diff
new file mode 100644
index 000..83c6158
--- /dev/null
+++ b/source/apps-extra/virtuoso/openssl.diff
@@ -0,0 +1,100 @@
+--- virtuoso/libsrc/Wi/http.c  2010/03/03 22:55:07 1.71.2.32
 virtuoso/libsrc/Wi/http.c  2010/03/22 13:45:37 1.71.2.33
+@@ -8027,13 +8027,13 @@
+   SSL_CTX_set_client_CA_list (ssl_ctx, skCAList);
+   skCAList = SSL_CTX_get_client_CA_list(ssl_ctx);
+
+-  if (sk_num((STACK *) skCAList) == 0)
++  if (sk_X509_ALGOR_num(skCAList) == 0)
+   log_warning (HTTPS Client authentication requested but no CA known for 
verification);
+
+-  for (i = 0; i  sk_num((STACK *) skCAList); i++)
++  for (i = 0; i  sk_X509_ALGOR_num(skCAList); i++)
+   {
+ char ca_buf[1024];
+-X509_NAME *ca_name = (X509_NAME *) sk_value ((STACK *) skCAList, i);
++X509_NAME *ca_name = (X509_NAME *) sk_X509_ALGOR_value (skCAList, i);
+ if (X509_NAME_oneline (ca_name, ca_buf, sizeof (ca_buf)))
+   log_debug (HTTPS Using X509 Client CA %s, ca_buf);
+   }
+@@ -10149,13 +10149,13 @@
+
+ SSL_CTX_set_client_CA_list (ssl_ctx, skCAList);
+ skCAList = SSL_CTX_get_client_CA_list (ssl_ctx);
+-if (sk_num((STACK *) skCAList) == 0)
++if (sk_X509_ALGOR_num(skCAList) == 0)
+   log_warning (HTTPS Client authentication requested but no CA known 
for verification);
+
+-for (i = 0; i  sk_num((STACK *) skCAList); i++)
++for (i = 0; i  sk_X509_ALGOR_num(skCAList); i++)
+   {
+ char ca_buf[1024];
+-X509_NAME *ca_name = (X509_NAME *) sk_value ((STACK *) skCAList, 
i);
++X509_NAME *ca_name = (X509_NAME *) sk_X509_ALGOR_value (skCAList, 
i);
+   if (X509_NAME_oneline (ca_name, ca_buf, sizeof (ca_buf)))
+   log_debug (HTTPS Using X509 Client CA %s, ca_buf);
+   }
+--- virtuoso/libsrc/Dk/Dkernel.c   2010/03/22 12:36:48 1.25.2.7
 virtuoso/libsrc/Dk/Dkernel.c   2010/03/22 13:45:37 1.25.2.8
+@@ -4910,12 +4910,12 @@
+   SSL_CTX_set_session_id_context (ssl_server_ctx, (unsigned char *) 
session_id_context, sizeof session_id_context);
+
+   skCAList = SSL_CTX_get_client_CA_list (ssl_server_ctx);
+-  if (sk_num ((STACK *) skCAList) == 0)
++  if (sk_X509_ALGOR_num (skCAList) == 0)
+   log_warning (ODBC X509 Client authentication requested but no CA known 
for verification);
+-  for (i = 0; i  sk_num ((STACK *) skCAList); i++)
++  for (i = 0; i  sk_X509_ALGOR_num (skCAList); i++)
+   {
+ char ca_buf[1024];
+-X509_NAME *ca_name = (X509_NAME *) sk_value ((STACK *) skCAList, i);
++X509_NAME *ca_name = (X509_NAME *) sk_X509_ALGOR_value (skCAList, i);
+ if (X509_NAME_oneline (ca_name, ca_buf, sizeof (ca_buf)))
+   log_debug (ODBC Server Using X509 Client CA %s, ca_buf);
+   }
+@@ -5080,7 +5080,7 @@
+
+   if (ca  ca[0] != 0)
+ {
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_ALGOR_pop_free (ca_list, (void (*)(void *)) X509_free);
+   ca_list = NULL;
+   ca_list = PEM_load_certs (ca, passwd);
+ }
+@@ -5089,30 +5089,30 @@
+ {
+   X509_free (cert);
+   EVP_PKEY_free (pkey);
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);
++  sk_X509_ALGOR_pop_free (ca_list, (void (*)(void *)) X509_free);
+   return 0;
+ }
+   EVP_PKEY_free (pkey);
+   if (!SSL_use_certificate (ssl, cert))
+ {
+   X509_free (cert);
+-  sk_pop_free ((STACK *) ca_list, (void (*)(void *)) X509_free);

[Frugalware-git] wipv: opal-3.6.8-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=b360576c44703d3a8736a2491151fd3ed517c6b6

commit b360576c44703d3a8736a2491151fd3ed517c6b6
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 12:00:27 2010 +0200

opal-3.6.8-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/xlib/opal/FrugalBuild b/source/xlib/opal/FrugalBuild
index 6f022c6..877f3f6 100644
--- a/source/xlib/opal/FrugalBuild
+++ b/source/xlib/opal/FrugalBuild
@@ -4,13 +4,13 @@

pkgname=opal
pkgver=3.6.8
-pkgrel=1
+pkgrel=2
pkgdesc=Opal is a cross platform Telephony library
url=http://www.ekiga.org;
groups=('xlib')
archs=('i686' 'x86_64' 'ppc')
depends=('ptlib=2.6.7' 'libavc1394' 'speex' 'expat' 'unixodbc' \
-   'libstdc++' 'x264' 'libtheora')
+   'libstdc++' 'x264' 'libtheora' 'openssl=1.0.0')
makedepends=('swig' 'openldap')
Finclude gnome
Fconfopts=$Fconfopts --libdir=/usr/lib --disable-debug
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: ekiga-3.2.7-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=bc32efc5701718663fe2311e53856110f2caf767

commit bc32efc5701718663fe2311e53856110f2caf767
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 12:24:45 2010 +0200

ekiga-3.2.7-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome/ekiga/FrugalBuild b/source/gnome/ekiga/FrugalBuild
index e9af786..ac1a992 100644
--- a/source/gnome/ekiga/FrugalBuild
+++ b/source/gnome/ekiga/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=ekiga
pkgver=3.2.7
-pkgrel=1
+pkgrel=2
pkgdesc=Ekiga is an open source VoIP and Telephony client
groups=('gnome')
archs=('i686' 'x86_64' 'ppc')
@@ -15,8 +15,8 @@ depends=('opal=3.6.8' 'dbus-glib=0.71-2' 
'gnome-desktop=2.30.0-2' \
'libbonobo' 'gail' 'libart_lgpl' 'opal' 'sdl' 'unixodbc' \
'libsigc++2' 'libnotify' 'atk' 'pango' 'libxdmcp' \
'freetype2' 'libgcc' 'libxdamage' 'libxinerama' 'libxi' \
-   'libxrandr' 'libxcursor' 'libkrb5')
-makedepends=('intltool' 'gnome-doc-utils' 'openldap=2.4.16' 'krb5')
+   'libxrandr' 'libxcursor' 'libkrb5' 'openssl=1.0.0')
+makedepends=('intltool' 'gnome-doc-utils' 'openldap=2.4.16' 'krb5' 
'opal=3.6.8-2')
_F_gnome_schemas=('/etc/gconf/schemas/ekiga.schemas')
_F_gnome_scrollkeeper=y
_F_gnome_desktop=y
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 65

2010-06-27 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=86a1fc5a8237fa5f3dc1db72ae8ee401eb0dca80

commit 86a1fc5a8237fa5f3dc1db72ae8ee401eb0dca80
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:29:13 2010 +1000

Newsletter issue 65

* initial release

new file:   ../images/newsletter/issue65_bouleetbil_house.jpg
new file:   ../images/newsletter/issue65_gnomemediaplayer.jpg
new file:   issue65.html

diff --git a/frugalware/images/newsletter/issue65_bouleetbil_house.jpg 
b/frugalware/images/newsletter/issue65_bouleetbil_house.jpg
new file mode 100644
index 000..dd6f853
Binary files /dev/null and 
b/frugalware/images/newsletter/issue65_bouleetbil_house.jpg differ
diff --git a/frugalware/images/newsletter/issue65_gnomemediaplayer.jpg 
b/frugalware/images/newsletter/issue65_gnomemediaplayer.jpg
new file mode 100644
index 000..ca4d7ff
Binary files /dev/null and 
b/frugalware/images/newsletter/issue65_gnomemediaplayer.jpg differ
diff --git a/frugalware/weeklynews/issue65.html 
b/frugalware/weeklynews/issue65.html
new file mode 100755
index 000..184fac5
--- /dev/null
+++ b/frugalware/weeklynews/issue65.html
@@ -0,0 +1,367 @@
+  h2Frugalware Linux Newsletter - Issue 65/h2
+
+  h2...to inform...to educate...to entertain/h2
+
+  pquot;And 1.1.81 is officially BugFreetrade;, so if you receive any
+  bug-reports on it, you know they are just evil lies.quot;nbsp;nbsp;em
+  Linus Torvalds/em/p
+
+  h2Welcome/h2
+
+  pThe newsletter's aim is to keep you up to date with what's happened
+  recently in the world of the Linux distribution 'Frugalware'./p
+
+  pFeatures of this issue include:/p
+
+  ul
+liHola! ¿Habla usted español?/li
+
+lifwife becomes more beautiful/li
+
+liTips and tricks - Display package updates with Conky and Look out!
+There's a monster behind you!/li
+
+liFocus on Package(s) - GNOME Media Player/li
+  /ul
+
+  h2img src=http://frugalware.org/images/newsletter/event.png; align=
+  leftEvents etc/h2
+
+  pHere's a selection of recent events and other items that you might find
+  interesting:/p
+
+  h3Busy, busy, busy with updates/h3
+
+  pMany of the developers are busy updating core packages and packages which
+  depend upon them. You may not notice these changes but you certainly get the
+  benefit in better performance, features and stability./p
+
+  pSome of the recent work includes:/p
+
+  ul
+libouleetbil is updating X.org to version 1.8.1, including udev
+support;/li
+
+libouleetbil is upgrading GNOME to 2.30.2;/li
+
+livoroskoi has updated OpenSSL to version 1.0.0;/li
+
+ligholafox has updated physfs to 2.0.1;/li
+  /ul
+
+  h3hola! ¿Habla usted español?/h3
+
+  pI admit that I can't speak Spanish, but luckily DarkNekros can and is
+  willing to help translate Frugalware projects into Spanish. He/she recently
+  sent a message to the developers' mailing list with news that work on
+  translation had begun. Improvements in Frugalware's translation are always
+  good news because this makes it available to more people than would otherwise
+  be possible. Let's hope that DarkNekros continues with this because it's sure
+  to be welcomed by all Spanish-speaking Frugalware users./p
+
+  h3fwife becomes more beautiful/h3
+
+  pElentir continues to improve fwife, the GUI Frugalware installer. If you
+  think of fwife like a car, he's currently tuning the engine and polishing
+  everything until it sparkles in the sunshine. Now...where did I put the
+  keys!?/p
+
+  h3Bouleetbil's moved/h3
+
+  pFrugalware developer bouleetbil recently moved all his computers into new
+  accommodation. In a recent a href=
+  http://dors.frugalware.org/bouleetbil/?p=386;blog entry/a he provided a
+  photo of his new accommodation. I think you'll agree that it looks really
+  nice, especially the captain's chair. In winter the computers actually help
+  to keep the room warm, and in warmer months he simply opens the window to
+  allow the heat out./p
+
+  pWhen you compare this with the accommodation he had before, it's a
+  fantastic improvement. In the photo below you can see a small plastic house
+  with a green room, which was where bouleetbil previously did all his work for
+  Frugalware. It's amazing to think he has been able to work so well under 
these
+  conditions. In the past, all work had to stop when it rained, also when his
+  daughter wanted to have a tea party! It's a great win for Frugalware./p
+
+  pstrongBefore/strong
+
+  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
+  align=left alt=View outside Bouleetbil's house/p
+
+  pstrongAfter/strong
+
+  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
+  align=left alt=View of Bouleetbil's room/p
+
+  h2img src=http://frugalware.org/images/newsletter/package.png; align=
+  leftNew Packages/h2
+
+  pBelow is a sample of the packages which have been added since the previous
+  issue./p
+
+  table 

[Frugalware-git] homepage-ng: Newsletter issue 65

2010-06-27 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8f4714a89ce979ec7a7579eb862ad653e932f586

commit 8f4714a89ce979ec7a7579eb862ad653e932f586
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:39:41 2010 +1000

Newsletter issue 65

* adjustment to image names

renamed:issue65_bouleetbil_house.jpg - issue65_bouleetbil_house1.jpg
new file:   issue65_bouleetbil_house2.jpg

diff --git a/frugalware/images/newsletter/issue65_bouleetbil_house2.jpg 
b/frugalware/images/newsletter/issue65_bouleetbil_house2.jpg
new file mode 100644
index 000..c43768d
Binary files /dev/null and 
b/frugalware/images/newsletter/issue65_bouleetbil_house2.jpg differ
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 65

2010-06-27 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=60cbcbb19a40c1c66d8e464286400c7dd2d450f8

commit 60cbcbb19a40c1c66d8e464286400c7dd2d450f8
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:42:48 2010 +1000

Newsletter issue 65

* adjustment to image layout

modified:   ../images/newsletter/issue65_bouleetbil_house1.jpg
modified:   issue65.html

diff --git a/frugalware/images/newsletter/issue65_bouleetbil_house1.jpg 
b/frugalware/images/newsletter/issue65_bouleetbil_house1.jpg
index dd6f853..7078ccb 100644
Binary files a/frugalware/images/newsletter/issue65_bouleetbil_house1.jpg and 
b/frugalware/images/newsletter/issue65_bouleetbil_house1.jpg differ
diff --git a/frugalware/weeklynews/issue65.html 
b/frugalware/weeklynews/issue65.html
index 184fac5..57d8aae 100755
--- a/frugalware/weeklynews/issue65.html
+++ b/frugalware/weeklynews/issue65.html
@@ -83,14 +83,14 @@
conditions. In the past, all work had to stop when it rained, also when his
daughter wanted to have a tea party! It's a great win for Frugalware./p

-  pstrongBefore/strong
+  pstrongBefore/strong/p

-  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
+  pimg 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
align=left alt=View outside Bouleetbil's house/p

-  pstrongAfter/strong
+  pstrongAfter/strong/p

-  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
+  pimg 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
align=left alt=View of Bouleetbil's room/p

h2img src=http://frugalware.org/images/newsletter/package.png; align=
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 65

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

commit edc4a055dbe07178b1af76252652e8b23b4823ba
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:44:49 2010 +1000

Newsletter issue 65

* further adjustment to image layout

modified:   issue65.html

diff --git a/frugalware/weeklynews/issue65.html 
b/frugalware/weeklynews/issue65.html
index 57d8aae..aeb4eb5 100755
--- a/frugalware/weeklynews/issue65.html
+++ b/frugalware/weeklynews/issue65.html
@@ -85,13 +85,13 @@

pstrongBefore/strong/p

-  pimg 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
-  align=left alt=View outside Bouleetbil's house/p
+  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
+  align=left alt=View outside Bouleetbil's housebr /

pstrongAfter/strong/p

-  pimg 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
-  align=left alt=View of Bouleetbil's room/p
+  img 
src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
+  align=left alt=View of Bouleetbil's roombr /

h2img src=http://frugalware.org/images/newsletter/package.png; align=
leftNew Packages/h2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 65

2010-06-27 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2888bedcaebf4be93ecb4e7c453058cde6e377f3

commit 2888bedcaebf4be93ecb4e7c453058cde6e377f3
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:47:40 2010 +1000

Newsletter issue 65

* (hopfully) final adjustment to image layout

modified:   issue65.html

diff --git a/frugalware/weeklynews/issue65.html 
b/frugalware/weeklynews/issue65.html
index aeb4eb5..6c58b29 100755
--- a/frugalware/weeklynews/issue65.html
+++ b/frugalware/weeklynews/issue65.html
@@ -49,7 +49,7 @@
ligholafox has updated physfs to 2.0.1;/li
/ul

-  h3hola! ¿Habla usted español?/h3
+  h3Hola! ¿Habla usted español?/h3

pI admit that I can't speak Spanish, but luckily DarkNekros can and is
willing to help translate Frugalware projects into Spanish. He/she recently
@@ -86,12 +86,12 @@
pstrongBefore/strong/p

img src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house1.jpg;
-  align=left alt=View outside Bouleetbil's housebr /
+  alt=View outside Bouleetbil's housebr /

pstrongAfter/strong/p

img src=http://frugalware.org/images/newsletter/issue65_bouleetbil_house2.jpg;
-  align=left alt=View of Bouleetbil's roombr /
+  alt=View of Bouleetbil's roombr /

h2img src=http://frugalware.org/images/newsletter/package.png; align=
leftNew Packages/h2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: pacman-g2-3.7.7-3-x86_64 * relbump * backport percent calculation fix from git * closes #4252

2010-06-27 Thread crazy
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a5457919f9c50f07f1abd8d372c9887a0d336be2

commit a5457919f9c50f07f1abd8d372c9887a0d336be2
Author: crazy cr...@frugalware.org
Date:   Sun Jun 27 13:48:51 2010 +0200

pacman-g2-3.7.7-3-x86_64
* relbump
* backport percent calculation fix from git
* closes #4252

diff --git a/source/base/pacman-g2/0001-fix-percent-calculation.patch 
b/source/base/pacman-g2/0001-fix-percent-calculation.patch
new file mode 100644
index 000..33b161a
--- /dev/null
+++ b/source/base/pacman-g2/0001-fix-percent-calculation.patch
@@ -0,0 +1,25 @@
+From 15239ddaabded16686facc39dd57e675e1da1888 Mon Sep 17 00:00:00 2001
+From: crazy cr...@frugalware.org
+Date: Sat, 26 Jun 2010 00:08:40 +0200
+Subject: [PATCH] fix percent calculation , should close #4252
+
+---
+ lib/libpacman/add.c |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/lib/libpacman/add.c b/lib/libpacman/add.c
+index 34186f2..29167c1 100644
+--- a/lib/libpacman/add.c
 b/lib/libpacman/add.c
+@@ -444,7 +444,7 @@ int _pacman_add_commit(pmtrans_t *trans, pmdb_t *db)
+   STRNCPY(pathname, archive_entry_pathname 
(entry), PATH_MAX);
+
+   if (info-size != 0)
+-  percent = 
archive_position_uncompressed(archive) / info-size;
++  percent = 
(double)archive_position_uncompressed(archive) / info-size;
+   if (needdisp == 0) {
+   PROGRESS(trans, cb_state, what, 
(int)(percent * 100), howmany, (howmany - remain +1));
+   }
+--
+1.7.1
+
diff --git a/source/base/pacman-g2/FrugalBuild 
b/source/base/pacman-g2/FrugalBuild
index d11a6c5..bf20f7e 100644
--- a/source/base/pacman-g2/FrugalBuild
+++ b/source/base/pacman-g2/FrugalBuild
@@ -7,7 +7,7 @@ USE_MINIMAL=${USE_MINIMAL:-n}
pkgname=pacman-g2
pkgver=3.7.7
Fuse $USE_DEVEL  pkgver=3.7.3.32.gedb838c
-pkgrel=2
+pkgrel=3
pkgdesc=A .tar.bz2 based package manager library (libpacman) and client 
(pacman-g2) with dependency support.
url=http://ftp.frugalware.org/pub/other/pacman-g2/;
backup=(etc/{makepkg,pacman-g2}.conf 
etc/pacman-g2/repos/{frugalware,frugalware-current})
@@ -26,8 +26,8 @@ _F_archive_nosort=y
up2date=Flasttar $url/releases/
if ! Fuse $USE_DEVEL; then
source=($url/releases/$pkgname-$pkgver.tar.gz \
-   http://git.frugalware.org/patches/pacman-g2/ab6bee9.patch)
-   signatures=($source.asc '')
+   http://git.frugalware.org/patches/pacman-g2/ab6bee9.patch 
0001-fix-percent-calculation.patch)
+   signatures=($source.asc '' '')
else
_F_scm_type=git
_F_scm_url=git://git.frugalware.org/pub/other/pacman-g2/pacman-g2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 65

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

commit c47be85ce4e939c187d4d020ca4efd0445457402
Author: phayz ph...@frugalware.org
Date:   Sun Jun 27 20:52:12 2010 +1000

Newsletter issue 65

* announcement via news.xml

modified:   news.xml

diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml
index 451c914..52a81c1 100644
--- a/frugalware/xml/news.xml
+++ b/frugalware/xml/news.xml
@@ -22,6 +22,27 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --

news
post
+id172/id
+titleFrugalware Newsletter Issue 65/title
+dateSun, 27 Jun 2010 20:51:24 +1000/date
+authorphayz/author
+hidden0/hidden
+content![CDATA[
+The newsletter's aim is to keep you up to date with what's happened
+recently in the world of Frugalware.br /
+Features of this issue include:
+ul
+liHola! ¿Habla usted español?/li
+lifwife becomes more beautiful/li
+liTips and tricks - Display package updates with Conky and
+Look out! There's a monster behind you!/li
+liFocus on Package(s) - GNOME Media Player/li
+/ul
+You can read it a href=/newsletter/65here/a. We hope you 
enjoy reading it.
+]]
+/content
+/post
+post
id171/id
titleFrugalware Newsletter Issue 64/title
dateSun, 06 Jun 2010 20:40:28 +1000/date
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: evolution-exchange-2.30.1-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=d768bf102df3a3ae44a962ed671a4a9267f33b59

commit d768bf102df3a3ae44a962ed671a4a9267f33b59
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 12:55:20 2010 +0200

evolution-exchange-2.30.1-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome/evolution-exchange/FrugalBuild 
b/source/gnome/evolution-exchange/FrugalBuild
index 7e5ec4f..849e3dd 100644
--- a/source/gnome/evolution-exchange/FrugalBuild
+++ b/source/gnome/evolution-exchange/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=evolution-exchange
pkgver=2.30.1
-pkgrel=1
+pkgrel=2
pkgdesc=Ximian Connector for Microsoft Exchange, which adds support for 
Microsoft Exchange 2000 and 2003 to Evolution.
depends=('gtkhtml=2.30.0' 'evolution-data-server=2.30.0' 
'evolution=2.30.0.1-2' 'libsoup=2.30.0' \
-   'evolution-data-server-ldap=2.30.0-2' 'libkrb5')
+   'evolution-data-server-ldap=2.30.0-2' 'libkrb5' 
'openssl=1.0.0')
makedepends=('gtk-doc=1.11' 'perl-xml-parser' 'openldap' 'intltool' 'krb5')
groups=('gnome')
archs=('i686' 'x86_64' 'ppc')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: gnome-volume-manager-2.24.1-7-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=baa5e693297636660e1678de2265729650fd32fd

commit baa5e693297636660e1678de2265729650fd32fd
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 13:21:12 2010 +0200

gnome-volume-manager-2.24.1-7-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome/gnome-volume-manager/FrugalBuild 
b/source/gnome/gnome-volume-manager/FrugalBuild
index cfb4b7e..ef38473 100644
--- a/source/gnome/gnome-volume-manager/FrugalBuild
+++ b/source/gnome/gnome-volume-manager/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=gnome-volume-manager
pkgver=2.24.1
-pkgrel=6
+pkgrel=7
pkgdesc=A volume manager for GNOME
url=http://www.gnome.org/;
-depends=('gnome-media=2.30.0-2' 'dbus-glib=0.71' 'libnotify=0.4.4' 
'gnome-vfs=2.24.0' 'avahi-glib=0.6.17')
+depends=('gnome-media=2.30.0-2' 'dbus-glib=0.71' 'libnotify=0.4.4' 
'gnome-vfs=2.24.0' 'avahi-glib=0.6.17' 'openssl=1.0.0')
rodepends=('totem=2.30.0-2')
makedepends=('intltool')
groups=('gnome' 'gnome-minimal')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: gtkam-0.1.17-3-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=d955f5902868c71713fcefcaf978516b23654238

commit d955f5902868c71713fcefcaf978516b23654238
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 13:40:16 2010 +0200

gtkam-0.1.17-3-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome/gtkam/FrugalBuild b/source/gnome/gtkam/FrugalBuild
index c7549c4..edb7b76 100644
--- a/source/gnome/gtkam/FrugalBuild
+++ b/source/gnome/gtkam/FrugalBuild
@@ -3,9 +3,9 @@

pkgname=gtkam
pkgver=0.1.17
-pkgrel=2
+pkgrel=3
pkgdesc=GTKam is a GTK-frontend to gphoto2.
-depends=('libgnomeui=2.24.3-2' 'libgphoto2' 'atk' 'gimp=2.6.8-3' 'pango' 
'libexif-gtk=0.3.5-6')
+depends=('libgnomeui=2.24.3-2' 'libgphoto2' 'atk' 'gimp=2.6.8-3' 'pango' 
'libexif-gtk=0.3.5-6' 'openssl=1.0.0')
groups=('gnome')
archs=('i686' 'x86_64' 'ppc')
_F_sourceforge_dirname=gphoto
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: tracker-0.8.10-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=8877126831bdcd97b2fd7a2219432f86d02ec7b0

commit 8877126831bdcd97b2fd7a2219432f86d02ec7b0
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 14:06:32 2010 +0200

tracker-0.8.10-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/tracker/FrugalBuild 
b/source/gnome-extra/tracker/FrugalBuild
index c82ad74..18ee6ff 100644
--- a/source/gnome-extra/tracker/FrugalBuild
+++ b/source/gnome-extra/tracker/FrugalBuild
@@ -4,11 +4,11 @@

pkgname=tracker
pkgver=0.8.10
-pkgrel=1
+pkgrel=2
pkgdesc=Tracker is a first class object database, extensible tag/metadata 
database, search tool and indexer.
depends=('gtk+2=2.20.0-2' 'dbus-glib=0.76' 'sqlite3' 'gamin' \
'poppler-glib=0.8.0' 'libvorbis' 'libpng' 'libexif' 'libgsf' 'gstreamer' \
-   'gnome-desktop=2.30.0-2' 'exempi' 'devicekit-power')
+   'gnome-desktop=2.30.0-2' 'exempi' 'devicekit-power' 'openssl=1.0.0')
makedepends=('intltool' 'perl-xml-parser' 'deskbar-applet')
groups=('gnome-extra')
conflicts=('tracker-search-tool')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] setup: UNPACK: use bsdtar xf instead of tar xf to handle xz

2010-06-27 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=e712db9d4445f28457d9fd3be3af890c3d92941f

commit e712db9d4445f28457d9fd3be3af890c3d92941f
Author: Miklos Vajna vmik...@frugalware.org
Date:   Sun Jun 27 14:53:20 2010 +0200

UNPACK: use bsdtar xf instead of tar xf to handle xz

diff --git a/Makefile b/Makefile
index be8ad18..6aa2606 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ KERNEL_OPTS = initrd=initrd-$(CARCH).img.gz load_ramdisk=1 
prompt_ramdisk=0 ramd
DESTDIR = $(shell source /etc/repoman.conf; [ -e ~/.repoman.conf ]  source 
~/.repoman.conf; echo $$fst_root)

CLEANUP = rm -rf $(BDIR)  mkdir $(BDIR)  rm -rf $@
-UNPACK = cd $(BDIR)  tar xf $(CDIR)/$...@-$($(shell echo $@|tr '[a-z]' 
'[A-Z]')VER)-$(CARCH).fpm
+UNPACK = cd $(BDIR)  bsdtar xf $(CDIR)/$...@-$($(shell echo $@|tr '[a-z]' 
'[A-Z]')VER)-$(CARCH).fpm
export PATH := /usr/lib/ccache/bin:$(PATH)
export CCACHE_DIR=/var/cache/ccache/setup
export CCACHE_NOLINK=1
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: gnome-color-chooser-0.2.5-4-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=6231e3062d9e5e60b71a7c5ec9df853f8d11d619

commit 6231e3062d9e5e60b71a7c5ec9df853f8d11d619
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 14:56:20 2010 +0200

gnome-color-chooser-0.2.5-4-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/gnome-color-chooser/FrugalBuild 
b/source/gnome-extra/gnome-color-chooser/FrugalBuild
index 1edf532..175fc44 100644
--- a/source/gnome-extra/gnome-color-chooser/FrugalBuild
+++ b/source/gnome-extra/gnome-color-chooser/FrugalBuild
@@ -3,14 +3,14 @@

pkgname=gnome-color-chooser
pkgver=0.2.5
-pkgrel=3
+pkgrel=4
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=2.24.1-2' 'pango=1.24.2-2' 'libstdc++' 
'atk' 'libxau=1.0.4' 'libxdmcp' 'zlib'  \
'gail=2.20.0-2' 'libart_lgpl' 'esd' 'gnome-vfs' 'libsm' 'popt' 'libxinerama' 
'libxi' 'libxcursor' \
-   'libxdamage' 'openssl')
+   'libxdamage' 'openssl=1.0.0')
makedepends=('perl-xml-parser' 'intltool')
sha1sums=('045b5d8a99dad7dba80c5b98e8d6ea35b4e8ee21')
_F_gnome_desktop=y
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: pegsolitaire-0.0.3-4-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=885de9f1404d3e8a40ea0beba89037ec86c3e919

commit 885de9f1404d3e8a40ea0beba89037ec86c3e919
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 15:12:53 2010 +0200

pegsolitaire-0.0.3-4-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/pegsolitaire/FrugalBuild 
b/source/gnome-extra/pegsolitaire/FrugalBuild
index 5c4b792..dc44e83 100644
--- a/source/gnome-extra/pegsolitaire/FrugalBuild
+++ b/source/gnome-extra/pegsolitaire/FrugalBuild
@@ -3,13 +3,13 @@

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


[Frugalware-git] wipv: lock-keys-applet-1.0-4-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=9588cf091b9e6021a5f77cb12cfc69b64e0128f5

commit 9588cf091b9e6021a5f77cb12cfc69b64e0128f5
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 15:42:37 2010 +0200

lock-keys-applet-1.0-4-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/lock-keys-applet/FrugalBuild 
b/source/gnome-extra/lock-keys-applet/FrugalBuild
index e1c91a2..83f6bd7 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=3
+pkgrel=4
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=(http://aur.archlinux.org/packages/lock-keys-applet/lock-keys-applet/$pkgname-$pkgver.tar.gz
 lock-keys-applet-1.0-gtk-disable-deprecated.patch)
depends=('gnome-panel=2.30.0-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' \
+   'freetype2' 'libxau=1.0.4' 'libxdmcp' 'openssl=1.0.0' '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] wipv: wvstreams-4.6.1-1-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=0f2dcd09eddf93559135bfca2bd169c474f9a761

commit 0f2dcd09eddf93559135bfca2bd169c474f9a761
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 15:50:11 2010 +0200

wvstreams-4.6.1-1-i686

version bump
use openssl=1.0.0

diff --git a/source/network/wvstreams/FrugalBuild 
b/source/network/wvstreams/FrugalBuild
index da9e07c..cfc419b 100644
--- a/source/network/wvstreams/FrugalBuild
+++ b/source/network/wvstreams/FrugalBuild
@@ -1,57 +1,26 @@
# Compiling Time: 0.85 SBU
-# Maintainer: Christian Hamar alias krix kr...@linuxforum.hu
+# Maintainer: voroskoi voros...@frugalware.org
# Contributor: Karoly CZOVEK sli...@rei.keni.hu

pkgname=wvstreams
-pkgver=4.4.1
+pkgver=4.6.1
pkgrel=1
pkgdesc=A network programming library in C++
groups=('network')
archs=('i686' 'x86_64')
-depends=('openssl' 'xplc')
+depends=('openssl=1.0.0' 'dbus')
makedepends=('qt' 'tcl' 'tk')
url=http://alumnit.ca/wiki/?DownloadReleases;
up2date=lynx -dump -nolist 'http://alumnit.ca/wiki/?DownloadReleases'|grep 
'wvstreams-\(.*\).tar.gz'|sed 's/.*-\(.*\).tar.*$/\1/'
-source=(http://wvstreams.googlecode.com/files/$pkgname-$pkgver.tar.gz \
-   wvstreams-4.2.2-tcl_8_4.patch \
-   wvstreams-4.4-external-xplc.patch \
-   wvstreams-4.4-linux-serial.patch \
-   wvstreams-4.4-MOC-fix.patch \
-   wvstreams-4.4-sigaction.patch \
-   wvstreams-4.4-type-punned.patch \
-   wvstreams-4.4-uniconfd-ini.patch \
-   wvstreams-4.4-wireless-user.patch \
-   wvstreams-4.4-wvconfemu.patch)
-sha1sums=('1c84bb50f1528a4014f62c1bd645815fedea713a' \
-  '7503c63a29fde6a87d47257cc2bd3afceda6e841' \
-  '2e6d36d4249679e2ffa25f6bee9f191338e8a9ca' \
-  '8852774b47f941edbf24943b5895f3497ddc18c9' \
-  '2a9ea9c18329f6494c981cbc176e09a6e7b1b3ec' \
-  '7ca737f3faf5b611596d1f114dbc199a928425b5' \
-  '2e997401fb98fa70bd26a21f084fb3ec246044ba' \
-  '0823b65f5ef5c09b4446a0ed923fca438287c122' \
-  '0d6e3a6f78f9a2829ea2225f6f09b0ee5147e2f1' \
-  '33eeb9b0288f2d0ceedcbacf11ad10c4550c36cf')
+source=(http://wvstreams.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+sha1sums=('1431efc3f46a13b6a8dbcad4123e19473369f767')

build() {
Fcd
Fpatchall
-   # braindead..
-   sed -i -e s:^xplc_version=.*:xplc_version='0.3.13': 
$Fsrcdir/$pkgname-$pkgver/configure.ac || Fdie
-   rm -rf xplc || Fdie
-
-   # Heh. Link with qt-mt not simple qt
-   Fsed libwvqt.so-LIBS+=-lqt libwvqt.so-LIBS+=`pkg-config --libs 
qt-mt` vars.mk
-
-   autoconf || Fdie
-
-   # Another braindead thing.
-   touch include/wvautoconf.h.in configure || Fdie
-
-   Fconf --localstatedir=/var/lib --without-pam --with-xplc 
--with-qt=/usr/lib/qt \
-   --disable-debug --with-tcl
-   make CXXOPTS=$CXXFLAGS -fPIC COPTS=$CFLAGS -fPIC VERBOSE=1 || Fdie
-   Fmakeinstall
+   Fconf --without-pam --with-qt=/usr/lib/qt --disable-debug --with-tcl
+   make COPTS=$CFLAGS -fPIC CXXOPTS=$CXXFLAGS -fPIC -fpermissive 
VERBOSE=1 || Fdie
+   make DESTDIR=${Fdestdir} install || Fdie
}

# optimization OK
diff --git a/source/network/wvstreams/wvstreams-4.2.2-tcl_8_4.patch 
b/source/network/wvstreams/wvstreams-4.2.2-tcl_8_4.patch
deleted file mode 100644
index a751ca1..000
--- a/source/network/wvstreams/wvstreams-4.2.2-tcl_8_4.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Nur wvstreams-4.2.2.orig/configure.ac wvstreams-4.2.2/configure.ac
 wvstreams-4.2.2.orig/configure.ac  2006-01-12 20:31:50.0 +0200
-+++ wvstreams-4.2.2/configure.ac   2006-02-03 21:22:25.153894500 +0200
-@@ -483,9 +483,9 @@
- # tcl
- if test $with_tcl != no; then
- CPPFLAGS_save=$CPPFLAGS
--WV_APPEND(CPPFLAGS, -I/usr/include/tcl8.3)
-+WV_APPEND(CPPFLAGS, -I/usr/include)
- AC_CHECK_HEADERS(tcl.h,, [with_tcl=no])
--AC_CHECK_LIB(tcl8.3, TclInterpInit,, [with_tcl=no])
-+AC_CHECK_LIB(tcl8.4, TclInterpInit,, [with_tcl=no])
- if test $with_tcl != no; then
- CPPFLAGS=$CPPFLAGS_save
- fi
-diff -Nur wvstreams-4.2.2.orig/vars.mk wvstreams-4.2.2/vars.mk
 wvstreams-4.2.2.orig/vars.mk   2005-11-24 21:46:51.0 +0200
-+++ wvstreams-4.2.2/vars.mk2006-02-03 21:22:25.153894500 +0200
-@@ -234,3 +234,5 @@
-
- libwvgtk.a libwvgtk.so: $(call objects,gtk)
- libwvgtk.so: -lgtk -lgdk libwvstreams.so libwvutils.so
-+
-+libuniconf_tcl.so: bindings/uniconf_tcl.o -ltcl8.4 -luniconf
diff --git a/source/network/wvstreams/wvstreams-4.4-MOC-fix.patch 
b/source/network/wvstreams/wvstreams-4.4-MOC-fix.patch
deleted file mode 100644
index 7f835d7..000
--- a/source/network/wvstreams/wvstreams-4.4-MOC-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nru wvstreams-4.4.orig/wvrules.mk wvstreams-4.4/wvrules.mk
 wvstreams-4.4.orig/wvrules.mk  2007-08-17 22:45:07.0 +0300
-+++ wvstreams-4.4/wvrules.mk   2007-08-17 22:53:05.0 +0300
-@@ -294,7 +294,7 @@
- %.E: %.cc;

[Frugalware-git] wipv: grandr_applet-0.4.1-4-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=e73732806f0d7ee50b38dd7e4c36ec3e5cea9fc9

commit e73732806f0d7ee50b38dd7e4c36ec3e5cea9fc9
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 16:00:18 2010 +0200

grandr_applet-0.4.1-4-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/grandr_applet/FrugalBuild 
b/source/gnome-extra/grandr_applet/FrugalBuild
index 62eeb52..3b0333f 100644
--- 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=3
+pkgrel=4
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=2.30.0-2' 'libgnomeui=2.24.3-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')
+depends=('gnome-panel=2.30.0-2' 'libgnomeui=2.24.3-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=1.0.0' '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] wipv: assogiate-0.2.1-4-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=99dcf49ba017d60236d54ee9bd6f4bcaf88b4dd7

commit 99dcf49ba017d60236d54ee9bd6f4bcaf88b4dd7
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 16:18:09 2010 +0200

assogiate-0.2.1-4-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/assogiate/FrugalBuild 
b/source/gnome-extra/assogiate/FrugalBuild
index 1c80d73..11ed4db 100644
--- a/source/gnome-extra/assogiate/FrugalBuild
+++ b/source/gnome-extra/assogiate/FrugalBuild
@@ -3,11 +3,11 @@

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


[Frugalware-git] wipv: gnubversion-0.5-5-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=ed2eb69da7870ca0bcd523b2f23c5cccd5669cea

commit ed2eb69da7870ca0bcd523b2f23c5cccd5669cea
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 16:43:42 2010 +0200

gnubversion-0.5-5-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/gnubversion/FrugalBuild 
b/source/gnome-extra/gnubversion/FrugalBuild
index d517c04..ace7d5a 100644
--- a/source/gnome-extra/gnubversion/FrugalBuild
+++ b/source/gnome-extra/gnubversion/FrugalBuild
@@ -3,11 +3,11 @@

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


[Frugalware-git] setup: qemu: increase default available memory to 1024M

2010-06-27 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=40ef4a30edee3f3431c7ef3b1ee11008740827e5

commit 40ef4a30edee3f3431c7ef3b1ee11008740827e5
Author: Miklos Vajna vmik...@frugalware.org
Date:   Sun Jun 27 16:43:16 2010 +0200

qemu: increase default available memory to 1024M

diff --git a/Makefile b/Makefile
index 6aa2606..5186f56 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ else
endif
VERSION=$(shell grep ^version configure |sed 's/.*\(.*\)/\1/')
GPG=$(shell [ -d ../releases ]  echo true || echo false)
-QEMU_OPTS ?= -hda ~/documents/qemu/hda.img
+QEMU_OPTS ?= -hda ~/documents/qemu/hda.img -m 1024
UML_OPTS ?= ubd0=~/documents/uml/root_fs eth0=tuntap,,,192.168.0.254 mem=128MB
TFTP_BOOTCMD = bootp
ifneq ($(TFTP_PASSWD),)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] setup: when debug enabled, always link to pthread

2010-06-27 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b9aa42615b69b1931d63294d8c7f7974226864bc

commit b9aa42615b69b1931d63294d8c7f7974226864bc
Author: Miklos Vajna vmik...@frugalware.org
Date:   Sun Jun 27 16:53:11 2010 +0200

when debug enabled, always link to pthread

see http://thread.gmane.org/gmane.comp.gdb.devel/24205

diff --git a/src/Makefile b/src/Makefile
index fca15d2..c880ba0 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -21,6 +21,7 @@ ifeq ($(DEBUG),false)
CFLAGS ?= -Wall -Werror -O2 -pipe
else
CFLAGS ?= -g -Wall -Werror
+LDFLAGS += -pthread
endif
CFLAGS += $(STABLE) -DARCH=\$(shell arch)\ -DARCH_$(shell arch|tr [a-z] 
[A-Z])
LDFLAGS += -ldl -rdynamic
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: gssmp-1.3-3-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=e4197e5c9a580314859dea86bd2666ee7263a6cd

commit e4197e5c9a580314859dea86bd2666ee7263a6cd
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 17:48:38 2010 +0200

gssmp-1.3-3-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/gssmp/FrugalBuild 
b/source/gnome-extra/gssmp/FrugalBuild
index 28b6935..75cdf57 100644
--- a/source/gnome-extra/gssmp/FrugalBuild
+++ b/source/gnome-extra/gssmp/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=gssmp
pkgver=1.3
-pkgrel=2
+pkgrel=3
pkgdesc=GSSMP is a music player designed to work with GNOME
depends=('libgnomeui=2.24.3-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' \
+   'libjpeg' 'openssl=1.0.0' \
'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] wipv: synce-trayicon-0.15-2-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=fc96174673fa7b76612d2b7e02d7827602e94f01

commit fc96174673fa7b76612d2b7e02d7827602e94f01
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 18:59:59 2010 +0200

synce-trayicon-0.15-2-i686

rebuilt with openssl=1.0.0

diff --git a/source/gnome-extra/synce-trayicon/FrugalBuild 
b/source/gnome-extra/synce-trayicon/FrugalBuild
index 98fa6e3..87d4ca0 100644
--- a/source/gnome-extra/synce-trayicon/FrugalBuild
+++ b/source/gnome-extra/synce-trayicon/FrugalBuild
@@ -3,14 +3,14 @@

pkgname=synce-trayicon
pkgver=0.15
-pkgrel=1
+pkgrel=2
pkgdesc=SynCE - Gnome trayicon
groups=('gnome-extra')
archs=('i686' 'x86_64')
depends=('libgnomeui' 'libsm' 'gnome-vfs' 'esd' 'pango' \
'gail' 'libart_lgpl' 'libgtop' 'libglade' 'librra' \
'librapi2' 'libnotify' 'atk' 'freetype2' 'libxdmcp' \
-   'libjpeg=8a' 'openssl' 'e2fsprogs' 'libxdamage' 'libxinerama' \
+   'libjpeg=8a' 'openssl=1.0.0' 'e2fsprogs' 'libxdamage' 'libxinerama' \
'libxi' 'libxrandr' 'libxcursor' 'libsynce' 'liborange')
makedepends=('gnome-common' 'perl-xml-parser' 'intltool')
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] wipv: wvdial-1.61-1-i686

2010-06-27 Thread VÖRÖSKŐI András
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=wipv.git;a=commitdiff;h=8da9ebf32b9c196fa33a0171778b34670b54a8c1

commit 8da9ebf32b9c196fa33a0171778b34670b54a8c1
Author: VÖRÖSKŐI András voros...@frugalware.org
Date:   Sun Jun 27 19:08:54 2010 +0200

wvdial-1.61-1-i686

version bump
use openssl=1.0.0

diff --git a/source/network/wvdial/FrugalBuild 
b/source/network/wvdial/FrugalBuild
index 0ce6be9..4446f8e 100644
--- a/source/network/wvdial/FrugalBuild
+++ b/source/network/wvdial/FrugalBuild
@@ -1,20 +1,20 @@
# Compiling Time: 0.11 SBU
-# Maintainer: Christian Hamar alias krix kr...@linuxforum.hu
+# Maintainer: voroskoi voros...@frugalware.org
# Contributor: Karoly CZOVEK sli...@rei.keni.hu

pkgname=wvdial
-pkgver=1.60
+pkgver=1.61
pkgrel=1
pkgdesc=WVDial CLI dialer
groups=('network')
-depends=('wvstreams=4.4.1' 'zlib')
+depends=('wvstreams=4.6.1' 'zlib')
archs=('i686' 'x86_64')
up2date=lynx -dump -nolist 'http://alumnit.ca/wiki/?DownloadReleases'|grep 
'wvdial-\(.*\).tar.gz'|sed 's/.*-\(.*\).tar.*$/\1/'
url=http://alumnit.ca/download/;
-source=($url/$pkgname-$pkgver.tar.gz wvdial-1.55-destdir.patch)
+source=(http://wvstreams.googlecode.com/files/${pkgname}-${pkgver}.tar.gz 
wvdial-1.61-destdir.patch)
backup=(etc/ppp/peers/{wvdial,wvdial-pipe})
-sha1sums=('d44914065258d316cff28494d4409cd27a07cfa6' \
-  '1ad466b246767cffcae3217909774cc01398aea7')
+sha1sums=('2878cae3aaf067989eebc7313ccd2cec59893345' \
+  'c07bbab034ef59ddc99bc1f045ef06888b21264d')

build() {
Fbuild
diff --git a/source/network/wvdial/wvdial-1.55-destdir.patch 
b/source/network/wvdial/wvdial-1.55-destdir.patch
deleted file mode 100644
index 7f70255..000
--- a/source/network/wvdial/wvdial-1.55-destdir.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -Naur wvdial-1.60.orig/Makefile wvdial-1.60/Makefile
 wvdial-1.60.orig/Makefile  2007-11-03 15:39:03.0 +0100
-+++ wvdial-1.60/Makefile   2007-11-03 15:39:48.0 +0100
-@@ -1,5 +1,5 @@
-
--prefix=/usr/local
-+prefix=${DESTDIR}/usr
- WVSTREAMS_INC=
- WVSTREAMS_LIB=
- WVSTREAMS_BIN=$(prefix)/bin
-@@ -19,7 +19,7 @@
-
- BINDIR=${prefix}/bin
- MANDIR=${prefix}/share/man
--PPPDIR=/etc/ppp/peers
-+PPPDIR=${DESTDIR}/etc/ppp/peers
-
- include wvrules.mk
-
diff --git a/source/network/wvdial/wvdial-1.61-destdir.patch 
b/source/network/wvdial/wvdial-1.61-destdir.patch
new file mode 100644
index 000..85fdb8b
--- /dev/null
+++ b/source/network/wvdial/wvdial-1.61-destdir.patch
@@ -0,0 +1,37 @@
+diff -aur wvdial-1.61/config.defaults.mk fw_wvdial-1.61//config.defaults.mk
+--- wvdial-1.61/config.defaults.mk 2008-10-22 21:49:20.0 +0200
 fw_wvdial-1.61//config.defaults.mk 2010-06-27 19:06:01.0 +0200
+@@ -13,7 +13,7 @@
+ LIBS_PAM=-lpam
+ LIBS_TCL=
+
+-prefix=/usr/local
++prefix=/usr
+ datadir=${prefix}/share
+ includedir=${prefix}/include
+ infodir=${prefix}/share/info
+diff -aur wvdial-1.61/Makefile.in fw_wvdial-1.61//Makefile.in
+--- wvdial-1.61/Makefile.in2008-10-22 22:01:09.0 +0200
 fw_wvdial-1.61//Makefile.in2010-06-27 16:48:51.0 +0200
+@@ -3,7 +3,7 @@
+ wvpackage_tarna...@package_tarname@
+ wvpackage_versi...@package_version@
+
+-prefix=/usr/local
++prefix=/usr
+ WVSTREAMS_INC=
+ WVSTREAMS_LIB=
+ WVSTREAMS_BIN=$(prefix)/bin
+@@ -21,9 +21,9 @@
+ endif
+ LIBS+=$(PC_LIBS)
+
+-BINDIR=${prefix}/bin
+-MANDIR=${prefix}/share/man
+-PPPDIR=/etc/ppp/peers
++BINDIR=${DESTDIR}/${prefix}/bin
++MANDIR=${DESTDIR}/${prefix}/share/man
++PPPDIR=${DESTDIR}/etc/ppp/peers
+
+ include wvrules.mk
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: 1.3pre2 announce draft

2010-06-27 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=24d57e0ed39f93ce6bf7d2bfe86aa51905b3632d

commit 24d57e0ed39f93ce6bf7d2bfe86aa51905b3632d
Author: Miklos Vajna vmik...@frugalware.org
Date:   Mon Jun 28 00:35:35 2010 +0200

1.3pre2 announce draft

diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml
index 52a81c1..36fb4a5 100644
--- a/frugalware/xml/news.xml
+++ b/frugalware/xml/news.xml
@@ -21,6 +21,38 @@
Example: Mon, 07 Aug 2006 12:34:56 -0600 --

news
+  post
+id173/id
+titleFrugalware 1.3pre2 (Haven) released/title
+dateFIXME/date
+authorMiklos Vajna/author
+hidden1/hidden
+content![CDATA[
+  The Frugalware Developer Team is pleased to a 
href=/news/173announce/a the immediate availability of Frugalware 1.3pre2, 
the second technical preview of the upcoming 1.3 stable release./p
+pHere are some of the major improvements and changes since 1.3pre1:br /
+  ul
+liImprovements:
+  ul
+liThe monolithic configuration of XOrg is now split to the a 
href=http://www.x.org/wiki/Server18Branch;xorg.conf.d directory/a. You can 
still use the monolithic config, but the config files in the new directory have 
priority./li
+liUpdated image libraries: a 
href=http://freshmeat.net/projects/libjpeg/releases/314766;libjpeg 8/a and 
a href=http://freshmeat.net/projects/libpng/releases/312969;libpng 1.4/a. 
While adding support for these new libraries, we touched 1500+ packages, doing 
various minor fixes and improvement a 
href=http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commit;h=33a8f8c592de7fa5881d6cd3a2ecb04663420545;here
 and there/a./li
+  /ul
+/li
+liPackage updates:
+  ul
+liLinux 2.6.34/li
+liKDE SC 4.4.4/li
+liMozilla Firefox 3.6.4/li
+liOpenOffice.org 3.2.1/li
+liUpdated libraries: jack, libpng, libjpeg./li
+  /ul
+/li
+  /ul
+  Please refer to the Frugalware a 
href=http://ftp.frugalware.org/pub/frugalware/frugalware-testing/ChangeLog.txt;Haven
 ChangeLog/a for more information.br /
+  Download for i686: See our a 
href=http://frugalware.org/download/frugalware-testing-iso;mirror list/a. 
Don't forget to check the a 
href=http://frugalware.org/download/frugalware-testing-iso/SHA1SUMS;integrity/a
 of the install images before burning!br /
+  bNOTE/b: Click a 
href=/docs/install#_choosing_installation_flavorhere/a to read more about 
what media you need for the installation.br /
+  ]]
+/content
+  /post
post
id172/id
titleFrugalware Newsletter Issue 65/title
@@ -5068,5 +5100,5 @@ a3596b7f25437447c3c117eb0bb883b040a3024a  
frugalware-0.5pre2-i686-cd8.iso
/content
/post
/news
-!-- vim: ts=2
+!-- vim: shiftwidth=2 expandtab:
--
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


Re: [Frugalware-git] homepage-ng: 1.3pre2 announce draft

2010-06-27 Thread Russell Dickenson
On 28 June 2010 08:35, Miklos Vajna vmik...@frugalware.org wrote:
 Git-Url: 
 http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=24d57e0ed39f93ce6bf7d2bfe86aa51905b3632d

 commit 24d57e0ed39f93ce6bf7d2bfe86aa51905b3632d
 Author: Miklos Vajna vmik...@frugalware.org
 Date:   Mon Jun 28 00:35:35 2010 +0200

 1.3pre2 announce draft

 diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml
 index 52a81c1..36fb4a5 100644
 --- a/frugalware/xml/news.xml
 +++ b/frugalware/xml/news.xml
 @@ -21,6 +21,38 @@
 Example: Mon, 07 Aug 2006 12:34:56 -0600 --

 news
 +  post
 +    id173/id
 +    titleFrugalware 1.3pre2 (Haven) released/title
 +    dateFIXME/date
 +    authorMiklos Vajna/author
 +    hidden1/hidden
 +    content![CDATA[
 +      The Frugalware Developer Team is pleased to a 
 href=/news/173announce/a the immediate availability of Frugalware 
 1.3pre2, the second technical preview of the upcoming 1.3 stable release./p
 +    pHere are some of the major improvements and changes since 1.3pre1:br 
 /
 +      ul
 +        liImprovements:
 +          ul
 +            liThe monolithic configuration of XOrg is now split to the a 
 href=http://www.x.org/wiki/Server18Branch;xorg.conf.d directory/a. You 
 can still use the monolithic config, but the config files in the new 
 directory have priority./li
 +            liUpdated image libraries: a 
 href=http://freshmeat.net/projects/libjpeg/releases/314766;libjpeg 8/a 
 and a href=http://freshmeat.net/projects/libpng/releases/312969;libpng 
 1.4/a. While adding support for these new libraries, we touched 1500+ 
 packages, doing various minor fixes and improvement a 
 href=http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commit;h=33a8f8c592de7fa5881d6cd3a2ecb04663420545;here
  and there/a./li
 +          /ul
 +        /li
 +        liPackage updates:
 +          ul
 +            liLinux 2.6.34/li
 +            liKDE SC 4.4.4/li
 +            liMozilla Firefox 3.6.4/li
 +            liOpenOffice.org 3.2.1/li
 +            liUpdated libraries: jack, libpng, libjpeg./li
 +          /ul
 +        /li
 +      /ul
 +      Please refer to the Frugalware a 
 href=http://ftp.frugalware.org/pub/frugalware/frugalware-testing/ChangeLog.txt;Haven
  ChangeLog/a for more information.br /
 +      Download for i686: See our a 
 href=http://frugalware.org/download/frugalware-testing-iso;mirror list/a. 
 Don't forget to check the a 
 href=http://frugalware.org/download/frugalware-testing-iso/SHA1SUMS;integrity/a
  of the install images before burning!br /
 +      bNOTE/b: Click a 
 href=/docs/install#_choosing_installation_flavorhere/a to read more 
 about what media you need for the installation.br /
 +      ]]
 +    /content
 +  /post
 post
 id172/id
 titleFrugalware Newsletter Issue 65/title
 @@ -5068,5 +5100,5 @@ a3596b7f25437447c3c117eb0bb883b040a3024a  
 frugalware-0.5pre2-i686-cd8.iso
 /content
 /post
 /news
 -!-- vim: ts=2
 +!-- vim: shiftwidth=2 expandtab:
 --


VMiklos,

Just one grammatical correction - just as fixes is plural,
improvement should be improvements. Aside from that it looks good.

Just one question - in the announcement only i686 architecture is
mentioned. Why are the preview images only i686?


May you always be Frugal,

Russell Dickenson (AKA phayz)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git