Debian packaging
authorAlberto Mardegan <mardy@users.sourceforge.net>
Sat, 5 Sep 2009 12:24:29 +0000 (15:24 +0300)
committerAlberto Mardegan <mardy@users.sourceforge.net>
Sat, 5 Sep 2009 12:24:29 +0000 (15:24 +0300)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/libclutter-gtk-0.10-0.install [new file with mode: 0644]
debian/libclutter-gtk-0.10-dev.examples [new file with mode: 0644]
debian/libclutter-gtk-0.10-dev.install [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..3b1cc2d
--- /dev/null
@@ -0,0 +1,5 @@
+clutter-gtk (0.10.2-0maemo1) unstable; urgency=low
+
+  * Initial release
+
+ -- Alberto Mardegan <mardy@users.sourceforge.net>  Sat,  5 Sep 2009 09:50:05 +0300
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..7f3a649
--- /dev/null
@@ -0,0 +1,39 @@
+Source: clutter-gtk
+Section: libs
+Priority: optional
+Maintainer: Alberto Mardegan <mardy@users.sourceforge.net>
+Build-Depends: debhelper, cdbs (>= 0.4), libgtk2.0-dev, libclutter-1.0-dev
+Standards-Version: 3.7.2
+
+Package: libclutter-gtk-0.10-0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Open GL based interactive canvas library Gtk+ widget
+ Clutter is an Open GL based interactive canvas library, designed for creating
+ fast, mainly 2D single window applications such as media box UIs,
+ presentations, kiosk style applications and so on.
+
+Package: libclutter-gtk-0.10-dev
+Section: libdevel
+Architecture: any
+Depends: libclutter-gtk-0.10-0 (= ${Source-Version}), pkg-config, libgtk2.0-dev, ${misc:Depends}
+Description: Open GL based interactive canvas library Gtk+ widget (development files)
+ Clutter is an Open GL based interactive canvas library, designed for creating
+ fast, mainly 2D single window applications such as media box UIs,
+ presentations, kiosk style applications and so on.
+ .
+ This package contains the development files.
+
+Package: libclutter-gtk-0.10-dbg
+Section: libdevel
+Priority: extra
+Architecture: any
+Depends: libclutter-gtk-0.10-0 (= ${Source-Version})
+Description: Open GL based interactive canvas library Gtk+ widget (debug files)
+ Clutter is an Open GL based interactive canvas library, designed for creating
+ fast, mainly 2D single window applications such as media box UIs,
+ presentations, kiosk style applications and so on.
+ .
+ This package contains the debug files.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..cb31009
--- /dev/null
@@ -0,0 +1,29 @@
+This package was debianized by Alberto Mardegan <mardy@users.sourceforge.net>
+
+It was downloaded from http://projects.o-hand.com/clutter
+
+Upstream Authors:
+Matthew Allum <mallum@o-hand.com>
+Emmanuele Bassi <ebassi@o-hand.com>
+Iain Holmes <iain@o-hand.com>
+Jorn Baayen <jorn@o-hand.com>
+
+Copyright (C) 2008 OpenedHand Ltd.
+
+License:
+
+  This library 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 of the License, or (at your option) any
+  later version.
+
+  This library is distributed in the hope that it will be useful, but WITHOUT
+  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public License along
+  with this library; if not, write to the Free Software Foundation, Inc., 51
+  Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/LGPL-2'.
diff --git a/debian/libclutter-gtk-0.10-0.install b/debian/libclutter-gtk-0.10-0.install
new file mode 100644 (file)
index 0000000..79bbe2f
--- /dev/null
@@ -0,0 +1 @@
+debian/tmp/usr/lib/*.so.*
diff --git a/debian/libclutter-gtk-0.10-dev.examples b/debian/libclutter-gtk-0.10-dev.examples
new file mode 100644 (file)
index 0000000..74d0fa1
--- /dev/null
@@ -0,0 +1,2 @@
+examples/*.c
+examples/*.png
diff --git a/debian/libclutter-gtk-0.10-dev.install b/debian/libclutter-gtk-0.10-dev.install
new file mode 100644 (file)
index 0000000..22c6c3f
--- /dev/null
@@ -0,0 +1,3 @@
+debian/tmp/usr/lib/*.so
+debian/tmp/usr/lib/pkgconfig/
+debian/tmp/usr/include/
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..f18dbe9
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+
+DEB_COMPRESS_EXCLUDE = .c
+ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+ifneq (,$(findstring i386,$(ARCH)))
+  DEB_CONFIGURE_EXTRA_FLAGS := --disable-gtk-doc --with-flavour=x11 \
+                            --enable-debug=no
+else
+  DEB_CONFIGURE_EXTRA_FLAGS := --disable-gtk-doc --with-flavour=x11 \
+                            --enable-debug=no
+endif
+