--- /dev/null
+lablgtksourceview (0.0.1-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Stefano Zacchiroli <zack@debian.org> Sat, 11 Jun 2005 12:07:13 +0200 zack
+
--- /dev/null
+Source: lablgtksourceview
+Section: devel
+Priority: optional
+Maintainer: Stefano Zacchiroli <zack@debian.org>
+Build-Depends: debhelper (>= 4.1.0), cdbs, ocaml-findlib, ocaml-nox-3.08.3, liblablgtk2-ocaml-dev (>= 2.4.0+2005.02.18-3+zack), libgtksourceview-dev (>= 1.2.0)
+Standards-Version: 3.6.1.1
+
+Package: liblablgtksourceview-ocaml
+Architecture: any
+Section: libs
+Depends: ocaml-base-nox-3.08, liblablgtk2-ocaml (>= 2.4.0+2005.02.18-3+zack), ${shlibs:Depends}, ${misc:Depends}
+Description: OCaml bindings for libgtksourceview, a source editor GTK widget
+ This is the OCaml binding for the GtkSourceView widget, a text widget that
+ extends the standard gtk+ 2.x text widget with syntax highlighting and other
+ features typical of a source editor.
+ .
+ This package contains the shared runtime stub libraries.
+
+Package: liblablgtksourceview-ocaml-dev
+Architecture: any
+Section: libdevel
+Depends: ocaml-nox-3.08.3, ocaml-findlib, liblablgtksourceview-ocaml (= ${Source-Version}), liblablgtk2-ocaml-dev (>= 2.4.0+2005.02.18-3+zack), libgtksourceview-dev (>= 1.2.0), ${misc:Depends}
+Description: OCaml bindings for libgtksourceview, a source editor GTK widget
+ This is the OCaml binding for the GtkSourceView widget, a text widget that
+ extends the standard gtk+ 2.x text widget with syntax highlighting and other
+ features typical of a source editor.
+ .
+ This package contains the development part of the lablgtksourceview package.
+
--- /dev/null
+This package was debianized by Stefano Zacchiroli <zack@debian.org> on
+Sat, 11 Jun 2005 12:19:09 +0200.
+
+It was packed from source obtained via cvs, with this CVSROOT:
+ :pserver:anonymous@phd.cs.unibo.it:/home/lpadovan/PHELM/
+
+Authors:
+ Stefano Zacchiroli <zack@cs.unibo.it>
+
+Copyright:
+
+ lablgtksourceview is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by the
+ Free Software Foundation; either version 2.1 of the License, or (at your
+ option) any later version.
+
+ On Debian systems a copy of the GNU Lesser General Public License verion 2.1
+ can be found in /usr/share/common-licenses/LGPL-2.1
+
--- /dev/null
+ACKNOWLEDGEMENTS
+NEWS
+README
--- /dev/null
+usr/lib/ocaml/3.08
+usr/lib/ocaml/3.08/stublibs
--- /dev/null
+usr/lib/ocaml/3.08
--- /dev/null
+usr/lib/ocaml/3.08/lablgtkmathview/*.so
+usr/lib/ocaml/3.08/stublibs/*
--- /dev/null
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+TARGETDIR = debian/liblablgtkmathview-ocaml-dev
+OCAML_STDLIB_DIR = $(shell ocamlc -where)
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ ./configure
+
+ touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+ dh_testdir
+
+ $(MAKE)
+ if [ -x /usr/bin/ocamlopt ]; then $(MAKE) opt; else true; fi
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ -$(MAKE) distclean
+
+ dh_clean
+distclean: clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs -s
+
+ $(MAKE) install PREFIX=$(TARGETDIR)$(OCAML_STDLIB_DIR)
+
+movefiles: install
+ dh_install -p liblablgtkmathview-ocaml --sourcedir=$(TARGETDIR)
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs -s
+ dh_installexamples -s
+ dh_installmanpages -s
+ dh_installinfo -s
+ dh_installchangelogs -s ChangeLog
+ dh_link -s
+ dh_strip -s
+ dh_compress -s
+ dh_fixperms -s
+ dh_installdeb -s
+ dh_shlibdeps -s
+ dh_gencontrol -s
+ dh_md5sums -s
+ dh_builddeb -s
+
+binary: binary-arch
+.PHONY: build clean binary-arch binary install configure