Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Robin Cook (896e92a387f105d533ea4ddaf3acd18b1a050aa1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Robin Cook <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Robin Cook (896e92a387f105d533ea4ddaf3acd18b1a050aa1)
  • Date: Sun, 7 Sep 2008 15:41:07 -0500

GIT changes to master grimoire by Robin Cook <rcook AT wyrms.net>:

dev/null |binary
gnome2-libs/gnome-vfs2/BUILD | 2 +-
gnome2-libs/gnome-vfs2/DETAILS | 2 +-
gnome2-libs/gnome-vfs2/HISTORY | 3 +++
gnome2-libs/gnome-vfs2/gnome-vfs-2.22.0.tar.bz2.sig | 0
gnome2-libs/gnome-vfs2/gnome-vfs-2.23.0.tar.bz2.sig |binary
gnome2-libs/policykit/BUILD | 13 +++++++++++++
gnome2-libs/policykit/CONFIGURE | 7 +++----
gnome2-libs/policykit/DEPENDS | 17 +++++++++++++----
9 files changed, 34 insertions(+), 10 deletions(-)

New commits:
commit e020a1f519029af7e4d8e7ef3eafd6f71be2a1fc
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

policykit: finish rest of spell

commit cc088bc9c10c4abb89b233e9df2e9d82280ffd7c
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

gnome-vfs2: updated to 2.23.0

diff --git a/gnome2-libs/gnome-vfs2/BUILD b/gnome2-libs/gnome-vfs2/BUILD
index 0e5d9c7..2755fb7 100755
--- a/gnome2-libs/gnome-vfs2/BUILD
+++ b/gnome2-libs/gnome-vfs2/BUILD
@@ -1,5 +1,5 @@
if [ "$IPV6" == "y" ]; then
- OPTS="--enable-IPV6 $OPTS"
+ OPTS="--enable-ipv6 $OPTS"
fi &&

if [ "$GNOME_VFS_CRYPTO" == "none" ]; then
diff --git a/gnome2-libs/gnome-vfs2/DETAILS b/gnome2-libs/gnome-vfs2/DETAILS
index 4cd5230..1c06181 100755
--- a/gnome2-libs/gnome-vfs2/DETAILS
+++ b/gnome2-libs/gnome-vfs2/DETAILS
@@ -1,5 +1,5 @@
SPELL=gnome-vfs2
- VERSION=2.22.0
+ VERSION=2.23.0
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=gnome-vfs-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/gnome-vfs-$VERSION
diff --git a/gnome2-libs/gnome-vfs2/HISTORY b/gnome2-libs/gnome-vfs2/HISTORY
index a0b6780..d58cc23 100644
--- a/gnome2-libs/gnome-vfs2/HISTORY
+++ b/gnome2-libs/gnome-vfs2/HISTORY
@@ -1,3 +1,6 @@
+2008-09-07 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: updated VERSION to 2.23.0
+
2008-03-11 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.22.0

diff --git a/gnome2-libs/gnome-vfs2/gnome-vfs-2.22.0.tar.bz2.sig
b/gnome2-libs/gnome-vfs2/gnome-vfs-2.22.0.tar.bz2.sig
deleted file mode 100644
index f8ee64a..0000000
Binary files a/gnome2-libs/gnome-vfs2/gnome-vfs-2.22.0.tar.bz2.sig and
/dev/null differ
diff --git a/gnome2-libs/gnome-vfs2/gnome-vfs-2.23.0.tar.bz2.sig
b/gnome2-libs/gnome-vfs2/gnome-vfs-2.23.0.tar.bz2.sig
new file mode 100644
index 0000000..e930852
Binary files /dev/null and
b/gnome2-libs/gnome-vfs2/gnome-vfs-2.23.0.tar.bz2.sig differ
diff --git a/gnome2-libs/policykit/BUILD b/gnome2-libs/policykit/BUILD
index 0aec4f0..11a8cc3 100755
--- a/gnome2-libs/policykit/BUILD
+++ b/gnome2-libs/policykit/BUILD
@@ -1,2 +1,15 @@
create_account polkituser &&
+
+if [[ "$POLICYKIT_MAN" == "y" ]]; then
+ OPTS="--enable-man-pages $OPTS"
+else
+ OPTS="--disable-man-pages $OPTS"
+fi &&
+
+if [[ "$POLICYKIT_AFW" == "linux-pam" ]]; then
+ OPTS="--with-authfw=pam $OPTS"
+else
+ OPTS="--with-authfw=$POLICYKIT_AFW $OPTS"
+fi &&
+
default_build
\ No newline at end of file
diff --git a/gnome2-libs/policykit/CONFIGURE b/gnome2-libs/policykit/CONFIGURE
index cf6b359..7fa3cc5 100755
--- a/gnome2-libs/policykit/CONFIGURE
+++ b/gnome2-libs/policykit/CONFIGURE
@@ -1,13 +1,12 @@
config_query POLICYKIT_MANPAGES "Install man pages?" y &&
-config_query POLICYKIT_SELINUX "Build SELinux support?" n &&

if spell_ok linux-pam; then
- config_query_list POLICYKIT_FW "Which Authentication framework?" \
+ config_query_list POLICYKIT_AFW "Which Authentication framework?" \
linux-pam shadow none
elif spell_ok shadow; then
- config_query_list POLICYKIT_FW "Which Authentication framework?" \
+ config_query_list POLICYKIT_AFW "Which Authentication framework?" \
shadow linux-pam none
else
- config_query_list POLICYKIT_FW "Which Authentication framework?" \
+ config_query_list POLICYKIT_AFW "Which Authentication framework?" \
none shadow linux-pam
fi
\ No newline at end of file
diff --git a/gnome2-libs/policykit/DEPENDS b/gnome2-libs/policykit/DEPENDS
index 847da54..c2c6afa 100755
--- a/gnome2-libs/policykit/DEPENDS
+++ b/gnome2-libs/policykit/DEPENDS
@@ -5,7 +5,16 @@ depends dbus-glib &&
depends expat &&
depends intltool &&

-optional_depends gtk-doc \
- "--enable-gtk-doc" \
- "--disable-gtk-doc" \
- "Build Devhelp files?"
\ No newline at end of file
+if [[ "$POLICYKIT_AFW" != "none" ]]; then
+ depends $POLICYKIT_AFW
+fi &&
+
+optional_depends libselinux \
+ "--enable-selinux" \
+ "--disable-selinux" \
+ "Enbale SELinux support?" &&
+
+optional_depends gtk-doc \
+ "--enable-gtk-doc" \
+ "--disable-gtk-doc" \
+ "Build Devhelp files?"
\ No newline at end of file



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (896e92a387f105d533ea4ddaf3acd18b1a050aa1), Robin Cook, 09/07/2008

Archive powered by MHonArc 2.6.24.

Top of Page