diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 43 | ||||
-rw-r--r-- | debian/control | 23 | ||||
-rw-r--r-- | debian/copyright | 1 | ||||
-rwxr-xr-x | debian/rules | 13 |
4 files changed, 80 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..71d3825 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,43 @@ +indicator-sus (0.1~ppa7~status2) UNRELEASED; urgency=low + + * Moving the icons to a better, warmer, place. + + -- Ted Gould <ted@ubuntu.com> Sat, 08 Aug 2009 09:44:39 -0600 + +indicator-sus (0.1~ppa7~status1) karmic; urgency=low + + * Lots of updates from a branch to make things on the status + front all happy happy joy joy. + + -- Ted Gould <ted@ubuntu.com> Sat, 08 Aug 2009 09:15:44 -0600 + +indicator-sus (0.1~ppa6) karmic; urgency=low + + * debian/control: Conflicting with gdm < 2.27.4-0ubuntu9 or + lower to stop people from having problems with the PPA. + + -- Ted Gould <ted@ubuntu.com> Sat, 08 Aug 2009 00:19:34 +0100 + +indicator-sus (0.1~ppa5) karmic; urgency=low + + * Legal headers on the source files. + + -- Ted Gould <ted@ubuntu.com> Fri, 07 Aug 2009 23:57:19 +0100 + +indicator-sus (0.1~ppa4) karmic; urgency=low + + * Merging in status shuffle branch. + + -- Ted Gould <ted@ubuntu.com> Fri, 07 Aug 2009 21:55:52 +0100 + +indicator-sus (0.1~ppa3) karmic; urgency=low + + * Fleshing out significantly. Inital rerelease. + + -- Ted Gould <ted@ubuntu.com> Sun, 26 Jul 2009 23:50:47 -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..1a33a51 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +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, + libpolkit-gnome-dev, + intltool +Standards-Version: 3.8.0 + +Package: indicator-sus +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, indicator-applet, devicekit-power +Conflicts: gdm (< 2.27.4-0ubuntu9) +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 + |