diff options
-rw-r--r-- | debian/changelog | 101 | ||||
-rw-r--r-- | debian/control | 19 | ||||
-rw-r--r-- | debian/copyright | 19 | ||||
-rwxr-xr-x | debian/rules | 8 |
4 files changed, 147 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ab517f4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,101 @@ +indicator-messages (0.1~ppa15) intrepid; urgency=low + + * Making the menu hide if there is no one around to be + in the menu. + + -- Ted Gould <ted@ubuntu.com> Sun, 15 Feb 2009 23:01:14 -0600 + +indicator-messages (0.1~ppa14) intrepid; urgency=low + + * Adding in application menu items. They now parse the + desktop file of the application provided as a property. + * Making the IM menu items have icons and times and + clean them up a bit so that they work better. Also + handling property updates. + * Legal stuff. On all headers and in copyright. + + -- Ted Gould <ted@ubuntu.com> Fri, 13 Feb 2009 16:40:39 -0600 + +indicator-messages (0.1~ppa13) intrepid; urgency=low + + * Display the icon instead of "messages" + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Feb 2009 19:11:54 +0100 + +indicator-messages (0.1~ppa12) intrepid; urgency=low + + * Fixed icon directories and names + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Feb 2009 18:14:41 +0100 + +indicator-messages (0.1~ppa11) intrepid; urgency=low + + * Start using our own icons. + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Feb 2009 18:00:22 +0100 + +indicator-messages (0.1~ppa10) intrepid; urgency=low + + * Adding in dummy icons + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Feb 2009 17:15:51 +0100 + +indicator-messages (0.1~ppa9) intrepid; urgency=low + + * Changed libindicate name to libindicate0, so need to have + another build in the PPA. + + -- Ted Gould <ted@ubuntu.com> Tue, 03 Feb 2009 11:59:36 +0100 + +indicator-messages (0.1~ppa8) intrepid; urgency=low + + * Bumping for PPA + + -- Ted Gould <ted@ubuntu.com> Mon, 02 Feb 2009 09:19:45 +0100 + +indicator-messages (0.1~ppa7) intrepid; urgency=low + + * Adding in activate callback when the menu item is + clicked on. + + -- Ted Gould <ted@ubuntu.com> Fri, 30 Jan 2009 15:08:40 -0600 + +indicator-messages (0.1~ppa6) intrepid; urgency=low + + * Making things better, now menu items are created and + destroyed as they are, well, indicators are created + and destroyed. Also minor cleanups. + + -- Ted Gould <ted@ubuntu.com> Thu, 29 Jan 2009 14:53:11 -0600 + +indicator-messages (0.1~ppa5) intrepid; urgency=low + + * Basically now indicators show up if someone puts an IM message + on the Bus. Way cool. No delete or anything fancy, but good + progress. + + -- Ted Gould <ted@ubuntu.com> Wed, 21 Jan 2009 19:39:50 -0600 + +indicator-messages (0.1~ppa4) intrepid; urgency=low + + * Make menu items for IM indicators + + -- Ted Gould <ted@ubuntu.com> Wed, 21 Jan 2009 14:35:33 -0600 + +indicator-messages (0.1~ppa3) intrepid; urgency=low + + * Adding a build dependency on libindicate-dev + + -- Ted Gould <ted@ubuntu.com> Mon, 19 Jan 2009 12:02:08 -0600 + +indicator-messages (0.1~ppa2) intrepid; urgency=low + + * Moving the directory + + -- Ted Gould <ted@ubuntu.com> Thu, 04 Dec 2008 23:10:23 -0800 + +indicator-messages (0.1~ppa1) intrepid; urgency=low + + * Initial release + + -- Ted Gould <ted@ubuntu.com> Thu, 04 Dec 2008 20:32:25 -0800 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3b4bdf4 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: indicator-messages +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, + intltool, + libindicate-dev +Standards-Version: 3.8.0 + +Package: indicator-messages +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..04a54b5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,19 @@ +This package was debianized by Ted Gould <ted@canonical.com> on +Wed, 11 Feb 2009 15:41:06 -0600. + +It was downloaded from <http://launchpad.net/indicate-applet/> + +Upstream Author(s): + + Ted Gould <ted@canonical.com> + +Copyright: + + <Copyright (C) 2009 Canonical Ltd.> + +License: + + Licensed under the GPL v3 + +The Debian packaging is (C) 2009, Canonical Ltd. and +is licensed under the GPLv3, see `/usr/share/common-licenses/GPL-3'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1c64b91 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/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 + |