Index: xstrp4/META
===================================================================
--- xstrp4.orig/META	2010-12-02 00:53:12.000000000 +0100
+++ xstrp4/META	2010-12-02 00:53:13.000000000 +0100
@@ -1,11 +1,10 @@
-version = "1.7"
+# OASIS_START
+# DO NOT EDIT (digest: f5881b80c4e296b1f5c1e46704c583d1)
+version = "1.8"
+description = "brace expansions in string"
 requires = "camlp4"
-
-# This line counts when the compiler is invoked with
-# ocamlfind ocamlc -syntax -package xstrp4
 archive(syntax,preprocessor) = "xstrp4.cma"
-
-# This line counts when a toploop is running and 
-# someone types #require "xstrp4".
-archive(syntax,toploop)      = "xstrp4.cma"
+archive(syntax,toploop) = "xstrp4.cma"
+exists_if = "xstrp4.cma"
+# OASIS_STOP
 
Index: xstrp4/configure
===================================================================
--- xstrp4.orig/configure	2010-12-02 00:53:12.000000000 +0100
+++ xstrp4/configure	2010-12-02 00:53:13.000000000 +0100
@@ -146,6 +146,13 @@
                         echo "$version"
                         exit 0
                         ;;
+                --prefix|--destdir)
+                        shift
+                        shift
+                        ;;
+                --prefix=*|--destdir=*)
+                        shift
+                        ;;
                 *)
                         usage
         esac
@@ -220,3 +227,5 @@
 echo "Finally, a"
 echo "   make install"
 echo "will install the package(s)."
+
+touch setup.data
Index: xstrp4/_oasis
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ xstrp4/_oasis	2010-12-02 00:54:49.000000000 +0100
@@ -0,0 +1,49 @@
+OASISFormat:  0.2
+Name:         xstrp4
+Version:      1.8
+Authors:      Gerd Stolpmann
+Copyrights:   (C) 1999 Gerd Stolpmann
+License:      MIT
+LicenseFile:  LICENSE
+Plugins:      META (0.2)
+Homepage:     http://projects.camlcity.org/projects/xstrp4.html
+OCamlVersion: >= 3.10.0
+
+Synopsis: camlp4 extension that expands brace expansions in OCaml string
+Description:
+  This camlp4 syntax extension interprets the dollar notation ${name} in
+  strings and in included files. 
+  .
+  It can:
+   * include whole file in your OCaml code
+   * define a format '%x' conversion to display variables
+   * interpolate '$x' as well as '${x}
+   * take into account record field and module names
+
+
+ConfType:    custom
+XCustomConf: ./configure
+
+BuildType:    custom
+XCustomBuild: make all 
+XCustomBuildClean:     make clean
+XCustomBuildDistclean: make distclean
+
+InstallType:      custom
+XCustomInstall:   make install
+XCustomUninstall: make uninstall
+
+Library xstrp4
+  Path:             .
+  InternalModules:  Xstrp4_here_lexer, Xstrp4_here_types, Xstrp4_here
+  XMETAType:        syntax
+  XMETADescription: brace expansions in string
+  CompiledObject:   byte
+  BuildDepends:     camlp4
+  BuildTools:       camlp4
+  
+SourceRepository head
+  Type:     svn
+  Location: https://godirepo.camlcity.org/svn/lib-xstrp4
+  Browser:  https://godirepo.camlcity.org/wwwsvn/?root=lib-xstrp4
+  
