diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 82 | ||||
-rw-r--r-- | debian/control | 21 | ||||
-rw-r--r-- | debian/copyright | 1 | ||||
-rwxr-xr-x | debian/rules | 13 |
4 files changed, 117 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0dbf9bc --- /dev/null +++ b/debian/changelog @@ -0,0 +1,82 @@ +indicator-sus (0.1~ppa2~indicator9ubuntu2) UNRELEASED; urgency=low + + * Adding a helper for the logout window. And setting things + up to call it. + + -- Ted Gould <ted@ubuntu.com> Wed, 22 Jul 2009 12:48:04 -0500 + +indicator-sus (0.1~ppa2~indicator9ubuntu1) karmic; urgency=low + + * Adding in lots of fun menu items. This way the menu looks + more complete than it really is :) + + -- Ted Gould <ted@ubuntu.com> Tue, 21 Jul 2009 10:55:53 -0500 + +indicator-sus (0.1~ppa2~indicator9) karmic; urgency=low + + * Updating the users daemon to have usable generic functions + but no dummy users. + + -- Ted Gould <ted@ubuntu.com> Mon, 20 Jul 2009 15:20:10 -0500 + +indicator-sus (0.1~ppa2~indicator8) karmic; urgency=low + + * Going Karmic + + -- Ted Gould <ted@ubuntu.com> Fri, 17 Jul 2009 21:58:24 -0500 + +indicator-sus (0.1~ppa2~indicator7) jaunty; urgency=low + + * Switching to DbusmenuGtkClient instead of DbusmenuGtkMenu + * Adding some dummy data to users. + + -- Ted Gould <ted@ubuntu.com> Wed, 01 Jul 2009 00:07:16 -0500 + +indicator-sus (0.1~ppa2~indicator6) jaunty; 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:50:23 -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 + |