aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog48
-rw-r--r--debian/control21
-rw-r--r--debian/copyright1
-rwxr-xr-xdebian/rules13
4 files changed, 83 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..63f1eb2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,48 @@
+indicator-sus (0.1~ppa2~indicator6) UNRELEASED; urgency=low
+
+ * Removing the .so versions
+ * Using the new dbusmenu signals instead of the GtkContainer
+ ones that don't really signal.
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 22 Jun 2009 22:49:39 -0500
+
+indicator-sus (0.1~ppa2~indicator5) jaunty; urgency=low
+
+ * Changing the signal names.
+
+ -- Ted Gould <ted@ubuntu.com> Fri, 19 Jun 2009 14:43:01 -0500
+
+indicator-sus (0.1~ppa2~indicator4) jaunty; urgency=low
+
+ * Code to start merging in menus.
+
+ -- Ted Gould <ted@ubuntu.com> Fri, 19 Jun 2009 13:43:54 -0500
+
+indicator-sus (0.1~ppa2~indicator3) jaunty; urgency=low
+
+ * Updating from branch, lazy loading the services.
+ * debian/rules: Removing the .a/.la clutter in the install
+ directory.
+
+ -- Ted Gould <ted@ubuntu.com> Fri, 19 Jun 2009 07:28:20 -0500
+
+indicator-sus (0.1~ppa2~indicator2) jaunty; urgency=low
+
+ * Updating the build to make proper service files
+
+ -- Ted Gould <ted@ubuntu.com> Tue, 16 Jun 2009 17:16:39 -0500
+
+indicator-sus (0.1~ppa2~indicator1) jaunty; urgency=low
+
+ * Upstream from the indicator branch.
+ * debian/control: Adding build depends on libindicator-dev,
+ libdbusmenu-glib-dev and libdbusmenu-gtk-dev
+ * Changing package name to indicator-sus
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 15 Jun 2009 16:33:22 -0500
+
+indicator-sus (0.1~ppa1) intrepid; urgency=low
+
+ * Initial release
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 04 Dec 2008 23:51:41 -0800
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7ce6984
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: indicator-sus
+Section: gnome
+Priority: optional
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+Build-Depends: debhelper (>= 5.0),
+ cdbs (>= 0.4.41),
+ libgtk2.0-dev (>= 2.12.0),
+ libdbus-glib-1-dev,
+ gnome-doc-utils,
+ scrollkeeper,
+ libindicator-dev,
+ libdbusmenu-glib-dev,
+ libdbusmenu-gtk-dev,
+ intltool
+Standards-Version: 3.8.0
+
+Package: indicator-sus
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, indicator-applet
+Description: Applet for the GNOME panel providing various indicators for
+ display to users.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6e773b6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1 @@
+Canonical Copyright
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..22338be
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/gnome.mk
+
+DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper
+LDFLAGS += -Wl,-z,defs -Wl,--as-needed
+
+binary-install/indicator-sus::
+ # remove .a/.la clutter
+ rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.a
+ rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.la
+