changeset 5480:60b3a79de083

subversion: new package. Quite some dependencies or --without-foo are missing...
author Jan Nieuwenhuizen <janneke@gnu.org>
date Wed, 19 Aug 2009 11:57:17 +0200
parents 4a2c91123250
children df03d0971b5d
files gub/specs/libapr-util.py gub/specs/libapr.py gub/specs/subversion.py
diffstat 3 files changed, 31 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gub/specs/libapr-util.py	Wed Aug 19 11:57:17 2009 +0200
@@ -0,0 +1,15 @@
+from gub import tools
+import os
+if 'BOOTSTRAP' in os.environ.keys (): from gub import target as tools
+
+class Libapr_util__tools (tools.AutoBuild):
+    source = 'http://apache.cs.uu.nl/dist/apr/apr-util-1.3.9.tar.gz'
+    def _get_build_dependencies (self):
+        return [
+            'libapr-devel',
+            ]
+    def configure_command (self):
+        return (tools.AutoBuild.configure_command (self)
+                + ' --with-apr=%(system_prefix)s'
+                )
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gub/specs/libapr.py	Wed Aug 19 11:57:17 2009 +0200
@@ -0,0 +1,6 @@
+from gub import tools
+import os
+if 'BOOTSTRAP' in os.environ.keys (): from gub import target as tools
+
+class Libapr__tools (tools.AutoBuild):
+    source = 'http://apache.cs.uu.nl/dist/apr/apr-1.3.8.tar.gz'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gub/specs/subversion.py	Wed Aug 19 11:57:17 2009 +0200
@@ -0,0 +1,10 @@
+from gub import tools
+import os
+if 'BOOTSTRAP' in os.environ.keys (): from gub import target as tools
+
+class Subversion__tools (tools.AutoBuild):
+    source = 'http://subversion.tigris.org/downloads/subversion-1.6.4.tar.gz'
+    def _get_build_dependencies (self):
+        return [
+            'libapr-util-devel',
+                ]