aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-06 10:31:00 -0600
committerTed Gould <ted@gould.cx>2010-01-06 10:31:00 -0600
commit1e28496f682f764a64d600d7665c92c9ddcd10b3 (patch)
treef1785dac49d196a4ec63d9e04c3a21181fd46b05
parent82381c6aeec60c8c4d8e88bd317321d10eeb0c9f (diff)
downloadayatana-indicator-datetime-1e28496f682f764a64d600d7665c92c9ddcd10b3.tar.gz
ayatana-indicator-datetime-1e28496f682f764a64d600d7665c92c9ddcd10b3.tar.bz2
ayatana-indicator-datetime-1e28496f682f764a64d600d7665c92c9ddcd10b3.zip
Initial release.
-rw-r--r--debian/changelog5
-rw-r--r--debian/control26
-rw-r--r--debian/copyright33
-rwxr-xr-xdebian/rules16
4 files changed, 80 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..45b92a7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+indicator-datetime (0.0.1~dev-0ubuntu1~ppa1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ -- Ted Gould <ted@ubuntu.com> Wed, 06 Jan 2010 10:26:15 -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
+