New commits:
commit 6f1e151ce54a745e9dbe797fce9d2c063cd6de03
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
crypto/cyrus-sasl: default query answers build pre-shared-key mode
instead of aborting -- Patches by Andrew Stitt - afrayedknot until alley_cat
sorts out his commit access
commit db12af7358430c97db164a5769c2f68604a7855c
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
devel/pkgconfig: disallow a cyclic dependency with glib2 (comment added)
-- Patches by Andrew Stitt - afrayedknot until alley_cat sorts out his
commit access
commit a1065c4b9f1ce7c108b0366e987ceb4e73f5a97f
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
gnome2-libs/gtk-doc: add depends on python -- Patches by Andrew Stitt
- afrayedknot until alley_cat sorts out his commit access
commit 969a33d08a3fbeb522bfcff3fabd9a7544ab4f4e
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
gnome2-libs/libgnomecanvas: add missing dependencies -- Patches by
Andrew Stitt - afrayedknot until alley_cat sorts out his commit access
commit 180ce1a3c9d5d7df8ff64f16cbef756dfe03720c
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
gnome2-libs/libgnomeprint: add missing dependency -- Patches by Andrew
Stitt - afrayedknot until alley_cat sorts out his commit access
commit 612bab4a87947c4339e72328f2e3d269a611908f
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
gnu/gcc: prefix CFLAGS with -O1, fixing compilation error when no
optimizations are specified. -- Patches by Andrew Stitt - afrayedknot until
alley_cat sorts out his commit access
commit c6524b064db70d9959a80153cf4aff3f8f63d6d5
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
http/kazehakase: quick-fix replace seamonkey with GECKO (does not
currently work with other GECKO providers) -- Patches by Andrew Stitt -
afrayedknot until alley_cat sorts out his commit access
commit 691280a538e0cd3cee42c57ce6ed52ee8e76f4f1
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
kde-core/kdebase: add missing dependencies -- Patches by Andrew Stitt
- afrayedknot until alley_cat sorts out his commit access
commit bc79c352f96fb7d7ab6d825307c8c0d1bb0e9f45
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
libs/gmp: prevent cyclic dependency on glib2 -- Patches by Andrew
Stitt - afrayedknot until alley_cat sorts out his commit access
commit 85ef31f5e103f8a2ef53ebc46ac54db352c9c6e4
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
mail/mutt: signature extension .sig -> .asc -- Patches by Andrew Stitt
- afrayedknot until alley_cat sorts out his commit access
commit 7dc9ab19dfa10b2a288028d7bee55af0974c22ef
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
perl-cpan/xml-parser-expat: add missing dependency -- Patches by
Andrew Stitt - afrayedknot until alley_cat sorts out his commit access
commit 6afd58de6b2ca849ffd45006bddc900ea3dc1a50
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
x11-libs/cairo: add missing dependency -- Patches by Andrew Stitt -
afrayedknot until alley_cat sorts out his commit access
commit 79e21378a500deeb931e3b7e0f1d0368969232d0
Author: Andrew Stitt <astitt AT sourcemage.org>
Commit: Andraž Levstik <ruskie AT codemages.net>
xfce/xfce4-session: add missing dependency -- Patches by Andrew Stitt
- afrayedknot until alley_cat sorts out his commit access
if [ "$CS_PLAINTEXT" == "n" ] && [ "$CS_SHARED" == "n" ] && [ "$CS_KERBEROS"
== "n" ]; then
message "You didn't select any authentication mechanism!" &&
- return 1
+ CS_SHARED=y
+ if ! query "defaulting to shared secret. is this ok?" y ; then return 1; fi
fi &&
if [ "$CS_PLAINTEXT" == "y" ] && [ "$CS_SHARED" == "y" ] && [ "$CS_KERBEROS"
== "y" ]; then
diff --git a/crypto/cyrus-sasl/HISTORY b/crypto/cyrus-sasl/HISTORY
index 4dadf93..cad0155 100644
--- a/crypto/cyrus-sasl/HISTORY
+++ b/crypto/cyrus-sasl/HISTORY
@@ -1,3 +1,7 @@
+2008-09-24 Andrew Stitt <astitt AT sourcemage.org>
+ * CONFIGURE: default query answers build pre-shared-key mode
+ instead of aborting
+
2008-09-04 Ladislav Hagara <hgr AT vabo.cz>
* DPEENDS: removed krb4 #14707
diff --git a/devel/pkgconfig/DEPENDS b/devel/pkgconfig/DEPENDS
index ba12e96..7349c44 100755
--- a/devel/pkgconfig/DEPENDS
+++ b/devel/pkgconfig/DEPENDS
@@ -1,4 +1,7 @@
-optional_depends glib2 \
- "--with-installed-glib" \
- "--without-installed-glib" \
+# only allow dependency if glib2 is installed, otherwise a cycle is created
+if spell_ok glib2; then
+ optional_depends glib2 \
+ "--with-installed-glib" \
+ "--without-installed-glib" \
"to use system GLib"
+fi
diff --git a/devel/pkgconfig/HISTORY b/devel/pkgconfig/HISTORY
index 93e155f..8206f2b 100644
--- a/devel/pkgconfig/HISTORY
+++ b/devel/pkgconfig/HISTORY
@@ -1,3 +1,6 @@
+2008-09-24 Andrew Stitt <astitt AT sourcemage.org>
+ * DEPENDS: disallow a cyclic dependency with glib2 (comment added)
+
2008-01-17 Remko van der Vossen <wich AT sourcemage.org>
* DETAILS: Version 0.23
diff --git a/gnome2-libs/gtk-doc/DEPENDS b/gnome2-libs/gtk-doc/DEPENDS
index 8148bb6..ce6aeac 100755
--- a/gnome2-libs/gtk-doc/DEPENDS
+++ b/gnome2-libs/gtk-doc/DEPENDS
@@ -1,4 +1,5 @@
depends perl &&
depends openjade &&
depends libxslt &&
+depends python &&
depends docbook-xsl
diff --git a/gnome2-libs/gtk-doc/HISTORY b/gnome2-libs/gtk-doc/HISTORY
index 716bd4d..1e1cd19 100644
--- a/gnome2-libs/gtk-doc/HISTORY
+++ b/gnome2-libs/gtk-doc/HISTORY
@@ -1,3 +1,6 @@
+2008-09-24 Andrew Stitt <astitt AT sourcemage.org>
+ * DEPENDS: add depends on python
+
2008-03-24 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 1.10