From eeb65f8cd239e5a3367be902375c149ad7ac0f1b Mon Sep 17 00:00:00 2001 From: fourdan Date: Wed, 24 May 2006 14:45:31 +0000 Subject: Fix make install if dest dirs are missing, add Debian administrative files, so first Debian package of ivy-cpp is now ready ;) --- debian/README | 0 debian/changelog | 7 +++++ debian/compat | 1 + debian/control | 36 +++++++++++++++++++++++++ debian/dirs | 2 ++ debian/ivy-cpp-dev.dirs | 2 ++ debian/ivy-cpp-dev.install | 2 ++ debian/ivy-cpp-glfw.dirs | 1 + debian/ivy-cpp-glfw.install | 1 + debian/ivy-cpp.dirs | 1 + debian/ivy-cpp.install | 1 + debian/rules | 65 +++++++++++++++++++++++++++++++++++++++++++++ debian/substvars | 1 + 13 files changed, 120 insertions(+) create mode 100644 debian/README create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/dirs create mode 100644 debian/ivy-cpp-dev.dirs create mode 100644 debian/ivy-cpp-dev.install create mode 100644 debian/ivy-cpp-glfw.dirs create mode 100644 debian/ivy-cpp-glfw.install create mode 100644 debian/ivy-cpp.dirs create mode 100644 debian/ivy-cpp.install create mode 100755 debian/rules create mode 100644 debian/substvars (limited to 'debian') diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..e69de29 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..efadb73 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,7 @@ +ivy-cpp (1.0-1) unstable; urgency=low + + * Initial Release. + + -- Olivier Fourdan Wed, 24 May 2006 16:25:02 +0200 + + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..944be4f --- /dev/null +++ b/debian/control @@ -0,0 +1,36 @@ +Source: ivy-cpp +Priority: extra +Section: devel +Maintainer: Alexandre Bustico +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.6.1 + +Package: ivy-cpp-dev +Section: libdevel +Architecture: any +Depends: ivy-cpp (= ${Source-Version}), ivy-cpp-glfw (= ${Source-Version}), libc6-dev, xlibs-dev +Description: C++ api for Ivy software bus. development Package + This package is needed for compiling applications using ivy in C++. + Ivy is mostly a communication convention between processes, implemented + through a collection of libraries in several languages and for several platforms, + from C to Perl, from Macintosh or WindowsNT to Linux or Unix. + +Package: ivy-cpp +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ivy-c (>= 3.8), libpcre3, libpthread0, xlibmesa-gl, libxxf86vm1 +Build-Depends: debhelper, libc6-dev, xlibs-dev, ivy-c-dev (>= 3.8), xlibmesa-gl-dev, libpcre3-dev +Description: C++ api for Ivy software bus. runtime Package + Ivy is mostly a communication convention between processes, implemented + through a collection of libraries in several languages and for several platforms: + from C to Perl, from Macintosh or WindowsNT to Linux or Unix. + +Package: ivy-cpp-glfw +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ivy-c (>= 3.8), libpcre3, libpthread0, xlibmesa-gl, libxxf86vm1, glfw +Build-Depends: debhelper, libc6-dev, xlibs-dev, ivy-c-dev (>= 3.8), xlibmesa-gl-dev, libpcre3-dev +Description: C++ api for Ivy software bus. runtime Package + Ivy is mostly a communication convention between processes, implemented + through a collection of libraries in several languages and for several platforms: + from C to Perl, from Macintosh or WindowsNT to Linux or Unix. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..048640b --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/lib +usr/include/Ivy diff --git a/debian/ivy-cpp-dev.dirs b/debian/ivy-cpp-dev.dirs new file mode 100644 index 0000000..048640b --- /dev/null +++ b/debian/ivy-cpp-dev.dirs @@ -0,0 +1,2 @@ +usr/lib +usr/include/Ivy diff --git a/debian/ivy-cpp-dev.install b/debian/ivy-cpp-dev.install new file mode 100644 index 0000000..3d05149 --- /dev/null +++ b/debian/ivy-cpp-dev.install @@ -0,0 +1,2 @@ +usr/lib/*.a +usr/include/Ivy/*.h diff --git a/debian/ivy-cpp-glfw.dirs b/debian/ivy-cpp-glfw.dirs new file mode 100644 index 0000000..6845771 --- /dev/null +++ b/debian/ivy-cpp-glfw.dirs @@ -0,0 +1 @@ +usr/lib diff --git a/debian/ivy-cpp-glfw.install b/debian/ivy-cpp-glfw.install new file mode 100644 index 0000000..5c943ec --- /dev/null +++ b/debian/ivy-cpp-glfw.install @@ -0,0 +1 @@ +usr/lib/libIvy_glfw.so diff --git a/debian/ivy-cpp.dirs b/debian/ivy-cpp.dirs new file mode 100644 index 0000000..6845771 --- /dev/null +++ b/debian/ivy-cpp.dirs @@ -0,0 +1 @@ +usr/lib diff --git a/debian/ivy-cpp.install b/debian/ivy-cpp.install new file mode 100644 index 0000000..a763390 --- /dev/null +++ b/debian/ivy-cpp.install @@ -0,0 +1 @@ +usr/lib/libIvy.so diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..41fccae --- /dev/null +++ b/debian/rules @@ -0,0 +1,65 @@ +#!/usr/bin/make -f +# Made with the aid of debmake, by Christoph Lameter, +# based on the sample debian/rules file for GNU hello by Ian Jackson. + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + $(MAKE) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + +binary-indep: build install +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install --source=$(CURDIR)/debian/tmp +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/debian/substvars b/debian/substvars new file mode 100644 index 0000000..dc83102 --- /dev/null +++ b/debian/substvars @@ -0,0 +1 @@ +shlibs:Depends=libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libice6, libpcre3 (>= 4.5), libsm6, libx11-6, libxt6 -- cgit v1.1