New commits:
commit c1e11051f3dbde58a03b0b8381f9079b161f3b3b
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
template-plugin-gd-image
Made a few changes to the details and forgot to commit them
commit 8a93ba2884c0ec424258bf64747eff4ec2d70bb9
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
Bugzilla
Revamp of the spell
Version bump to 2.22.2
Now it's ready to actually be used :)
commit 1a22667be54fce1d8fd43e0dd7e99613157e0511
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
New Spell html-scrubber
Optional depends for bugzilla
commit 55545b4f99bb33fb0089811358aef9c67655ed0e
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>
New Spell template-plugin-gd-image
Needed to make bugzillas charting work.
diff --git a/ChangeLog b/ChangeLog
index e912455..b4eb518 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-10 David Kowis <dkowis AT shlrm.org>
+ * perl-cpan/template-plugin-gd-image: new spell, Needed for bugzilla
to do
+ charting
+ * perl-cpan/html-scrubber: new spell, optional depends for bugzilla
+
2007-03-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* wm-addons/wmfsm: new spell, a filesystem usage monitor
diff --git a/collab/bugzilla/CONFIGURE b/collab/bugzilla/CONFIGURE
new file mode 100755
index 0000000..bc31ae0
--- /dev/null
+++ b/collab/bugzilla/CONFIGURE
@@ -0,0 +1,2 @@
+config_query_list BUGZILLA_DATABASE "Which database backend would you like
to use?" mysql postgresql &&
+config_query BUGZILLA_CHARTING "Do you want all the things needed for
bugzilla's charting? (reccomended)" n
diff --git a/collab/bugzilla/DEPENDS b/collab/bugzilla/DEPENDS
index 2f5008c..f3c7182 100755
--- a/collab/bugzilla/DEPENDS
+++ b/collab/bugzilla/DEPENDS
@@ -1,25 +1,28 @@
depends appconfig &&
depends perl-cgi &&
depends file-spec &&
+depends template-toolkit &&
+depends mime-base64 &&
+depends mime-tools &&
-# DBD-mysql in turn depends on perl, mysql and DBI
depends dbi &&
-depends dbd-mysql &&
-# Template-Toolkit depends on AppConfig which is required
-depends template-toolkit &&
+if [[ "$BUGZILLA_DATABASE" == "mysql" ]]; then
+ depends dbd-mysql
+elif [[ "$BUGZILLA_DATABASE" == "postgresql" ]]; then
+ depends dbd-pg
+fi &&