From e5bb98338d1b8f8eec61784fb578718be6c52128 Mon Sep 17 00:00:00 2001 From: Stefano Zacchiroli Date: Sat, 11 Jun 2005 10:22:54 +0000 Subject: [PATCH] first checkin of debian stuff, something done, but still almost copy and paste from lablgtkmathview --- helm/DEVEL/lablgtksourceview/debian/changelog | 6 ++ helm/DEVEL/lablgtksourceview/debian/compat | 1 + helm/DEVEL/lablgtksourceview/debian/control | 29 ++++++++ helm/DEVEL/lablgtksourceview/debian/copyright | 19 ++++++ helm/DEVEL/lablgtksourceview/debian/docs | 3 + .../liblablgtksourceview-ocaml-dev.dirs | 2 + .../debian/liblablgtksourceview-ocaml.dirs | 1 + .../debian/liblablgtksourceview-ocaml.install | 2 + helm/DEVEL/lablgtksourceview/debian/rules | 67 +++++++++++++++++++ 9 files changed, 130 insertions(+) create mode 100644 helm/DEVEL/lablgtksourceview/debian/changelog create mode 100644 helm/DEVEL/lablgtksourceview/debian/compat create mode 100644 helm/DEVEL/lablgtksourceview/debian/control create mode 100644 helm/DEVEL/lablgtksourceview/debian/copyright create mode 100644 helm/DEVEL/lablgtksourceview/debian/docs create mode 100644 helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml-dev.dirs create mode 100644 helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.dirs create mode 100644 helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.install create mode 100755 helm/DEVEL/lablgtksourceview/debian/rules diff --git a/helm/DEVEL/lablgtksourceview/debian/changelog b/helm/DEVEL/lablgtksourceview/debian/changelog new file mode 100644 index 000000000..a87a0bb9d --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/changelog @@ -0,0 +1,6 @@ +lablgtksourceview (0.0.1-1) unstable; urgency=low + + * Initial release. + + -- Stefano Zacchiroli Sat, 11 Jun 2005 12:07:13 +0200 zack + diff --git a/helm/DEVEL/lablgtksourceview/debian/compat b/helm/DEVEL/lablgtksourceview/debian/compat new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/compat @@ -0,0 +1 @@ +4 diff --git a/helm/DEVEL/lablgtksourceview/debian/control b/helm/DEVEL/lablgtksourceview/debian/control new file mode 100644 index 000000000..e5873371c --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/control @@ -0,0 +1,29 @@ +Source: lablgtksourceview +Section: devel +Priority: optional +Maintainer: Stefano Zacchiroli +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. + diff --git a/helm/DEVEL/lablgtksourceview/debian/copyright b/helm/DEVEL/lablgtksourceview/debian/copyright new file mode 100644 index 000000000..1d88fe6cd --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/copyright @@ -0,0 +1,19 @@ +This package was debianized by Stefano Zacchiroli 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 + +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 + diff --git a/helm/DEVEL/lablgtksourceview/debian/docs b/helm/DEVEL/lablgtksourceview/debian/docs new file mode 100644 index 000000000..4058ec2fd --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/docs @@ -0,0 +1,3 @@ +ACKNOWLEDGEMENTS +NEWS +README diff --git a/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml-dev.dirs b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml-dev.dirs new file mode 100644 index 000000000..7e66c4fb5 --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml-dev.dirs @@ -0,0 +1,2 @@ +usr/lib/ocaml/3.08 +usr/lib/ocaml/3.08/stublibs diff --git a/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.dirs b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.dirs new file mode 100644 index 000000000..f552f091a --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.dirs @@ -0,0 +1 @@ +usr/lib/ocaml/3.08 diff --git a/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.install b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.install new file mode 100644 index 000000000..6657f706e --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/liblablgtksourceview-ocaml.install @@ -0,0 +1,2 @@ +usr/lib/ocaml/3.08/lablgtkmathview/*.so +usr/lib/ocaml/3.08/stublibs/* diff --git a/helm/DEVEL/lablgtksourceview/debian/rules b/helm/DEVEL/lablgtksourceview/debian/rules new file mode 100755 index 000000000..8b6ed0bb5 --- /dev/null +++ b/helm/DEVEL/lablgtksourceview/debian/rules @@ -0,0 +1,67 @@ +#!/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 -- 2.39.2