X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Flablgtksourceview%2Fdebian%2Frules;h=52a3e2ea36d651a236917c0c593a2a519773a20c;hb=97c2d258a5c524eb5c4b85208899d80751a2c82f;hp=8b6ed0bb5febbb844e6584e1398737d5d8852283;hpb=e5bb98338d1b8f8eec61784fb578718be6c52128;p=helm.git diff --git a/helm/DEVEL/lablgtksourceview/debian/rules b/helm/DEVEL/lablgtksourceview/debian/rules index 8b6ed0bb5..52a3e2ea3 100755 --- a/helm/DEVEL/lablgtksourceview/debian/rules +++ b/helm/DEVEL/lablgtksourceview/debian/rules @@ -1,67 +1,10 @@ #!/usr/bin/make -f -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 +OCAMLABI := $(shell ocamlc -version) +OFILES := $(patsubst %.in,%,$(shell ls debian/*.in)) +DEB_DH_GENCONTROL_ARGS = -- -VF:OCamlABI="$(OCAMLABI)" -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 +ocamlinit: + for f in $(OFILES); do sed -e 's/@OCamlABI@/$(OCAMLABI)/g' $$f.in > $$f; done