diff options
-rw-r--r-- | .bzrignore | 10 | ||||
-rw-r--r-- | debian/changelog | 23 | ||||
-rw-r--r-- | debian/control | 22 | ||||
-rw-r--r-- | debian/copyright | 1 | ||||
-rwxr-xr-x | debian/rules | 13 |
5 files changed, 69 insertions, 0 deletions
@@ -25,6 +25,16 @@ indicator-status.service indicator-users.service status-service-client.h status-service-server.h +debian/indicator-fusa +debian/indicator-fusa.debhelper.log +debian/indicator-fusa.postinst.debhelper +debian/indicator-fusa.postrm.debhelper +debian/indicator-fusa.substvars +debian/indicator-sus +debian/indicator-sus.debhelper.log +debian/indicator-sus.postinst.debhelper +debian/indicator-sus.postrm.debhelper +debian/indicator-sus.substvars gtk-logout-helper .deps .libs diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..17d8164 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,23 @@ +indicator-sus (0.1~ppa4~statusshuffle2) UNRELEASED; urgency=low + + * Better usage of the names. + + -- Ted Gould <ted@ubuntu.com> Fri, 07 Aug 2009 21:42:19 +0100 + +indicator-sus (0.1~ppa4~statusshuffle1) karmic; urgency=low + + * Merging in status shuffle branch to package it. + + -- Ted Gould <ted@ubuntu.com> Fri, 07 Aug 2009 21:06:00 +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..5a4dc95 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +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 +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 + |