aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog31
-rw-r--r--debian/control26
-rw-r--r--debian/copyright33
-rwxr-xr-xdebian/rules16
4 files changed, 106 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..02f730e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,31 @@
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa5) UNRELEASED; urgency=low
+
+ * Upstream Merge
+ * Date menuitem, calendar menuitem and settings menuitem
+
+ -- Ted Gould <ted@ubuntu.com> Wed, 17 Feb 2010 22:37:00 -0600
+
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa4) lucid; urgency=low
+
+ * Bumping for rebuild with new dbusmenu
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 08 Feb 2010 10:08:03 -0600
+
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa3) lucid; urgency=low
+
+ * Bump version for rebuild
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 04 Feb 2010 19:04:57 -0800
+
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa2) karmic; urgency=low
+
+ * Upstream merge
+ * Adding in an indicator
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 07 Jan 2010 08:34:01 -0600
+
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa1) karmic; urgency=low
+
+ * Initial release.
+
+ -- Ted Gould <ted@ubuntu.com> Wed, 06 Jan 2010 10:34:29 -0600
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..fa9dcf8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: indicator-datetime
+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,
+ libindicator-dev (>= 0.3.0~dev),
+ libdbusmenu-glib-dev (>= 0.1.2),
+ libdbusmenu-gtk-dev (>= 0.1.2),
+ intltool
+Standards-Version: 3.8.2
+Homepage: https://launchpad.net/indicator-datetime
+
+Package: indicator-datetime
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends}
+Description: An indicator showing the date and time.
+ .
+ This indicator is designed to be placed on the right side of a panel and
+ give the user easy way to find out the date and time.
+ .
+ It requires some way to be hosted into a panel. For the GNOME Panel the
+ appropriate package is indicator-applet.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e3a5693
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+This package was debianized by Ted Gould <ted@canonical.com> on
+Wed Jan 6 10:29:45 CST 2010.
+
+It was downloaded from https://launchpad.net/indicator-datetime
+
+Upstream Author:
+
+ Ted Gould <ted@canonical.com>
+
+Copyright:
+
+ Copyright (C) 2010 Canonical Ltd
+
+License:
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 3 as
+ published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+The Debian packaging is:
+
+ Copyright (C) 2010 Canonical Ltd
+
+On Debian/Ubuntu systems, the full text of the full text of the GPL v3 can be
+found in `/usr/share/common-licenses/GPL-3'
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2217018
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/gnome.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper
+LDFLAGS += -Wl,-z,defs -Wl,--as-needed
+
+DEB_DH_MAKESHLIBS_ARGS = -Xusr/lib/indicators
+
+binary-install/indicator-datetime::
+ # remove .a/.la clutter
+ rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.a
+ rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.la
+