aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-08-19 20:25:55 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-08-19 20:25:55 -0500
commit41f91fb03beed16bfadd770c059735272e27df3a (patch)
treebe5b1ff8e1401eda1a8bfbdf6e7629f752004c3a
parent8e0ddac8a13c77863d21b5de00c2fc8b796b9c99 (diff)
downloadayatana-indicator-display-41f91fb03beed16bfadd770c059735272e27df3a.tar.gz
ayatana-indicator-display-41f91fb03beed16bfadd770c059735272e27df3a.tar.bz2
ayatana-indicator-display-41f91fb03beed16bfadd770c059735272e27df3a.zip
initial pass at debian/ directory
-rw-r--r--debian/changelog0
-rw-r--r--debian/compat1
-rw-r--r--debian/control27
-rw-r--r--debian/copyright21
-rwxr-xr-xdebian/rules10
5 files changed, 59 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/debian/changelog
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e174f31
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: indicator-display
+Section: misc
+Priority: optional
+Maintainer: Charles Kerr <charles.kerr@canonical.com>
+# make g++ version explicit for ABI safety <https://wiki.ubuntu.com/cpp-11>
+Build-Depends: cmake,
+ dbus,
+ g++-4.9,
+ debhelper (>= 9),
+ dh-translations,
+ intltool (>= 0.35.0),
+ libglib2.0-dev (>= 2.36),
+ libgtest-dev,
+ liburl-dispatcher1-dev,
+Standards-Version: 3.9.4
+Homepage: http://launchpad.net/indicator-display/
+# If you aren't a member of ~indicator-applet-developers but need to upload
+# packaging changes, just go ahead. ~indicator-applet-developers will notice and
+# sync up the code again.
+Vcs-Bzr: https://code.launchpad.net/~indicator-applet-developers/indicator-display/trunk.14.10
+
+Package: indicator-display
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ gsettings-ubuntu-schemas (>= 0.0.2+14.10.20140813),
+Description: Miscellaneous small Indicators.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..21333a8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,21 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: indicator-location
+Source: http://launchpad.net/indicator-location
+
+Files: *
+Copyright: 2014, Canonical Ltd.
+License: GPL-3
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 3 of the License.
+ .
+ This package 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/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e39944a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Explicitly selecting a G{CC,++}-version here to avoid ABI breaks
+# introduced by toolchain updates. <https://wiki.ubuntu.com/cpp-11>
+export CC=$(DEB_HOST_GNU_TYPE)-gcc-4.9
+export CXX=$(DEB_HOST_GNU_TYPE)-g++-4.9
+
+%:
+ dh $@ --with translations
+