From: Stefanos Harhalakis Date: Thu, 24 Jun 2010 16:10:01 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.maemo.org/git/?p=drlaunch;a=commitdiff_plain;h=64f93c949482484eb35a58fc590f89e244af821a --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..27aad5e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +actman (0.1-1) unstable; urgency=low + + * Initial release + + -- Stefanos Harhalakis Thu, 24 Jun 2010 19:55:11 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7efc763 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: drlaunch +Section: user/desktop +Priority: extra +Maintainer: Stefanos Harhalakis +Build-Depends: cdbs, debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: drlaunch +Architecture: any +Depends: python2.5, bash, hildon-desktop-python-loader, python-hildon, + python-hildondesktop +XSBC-Maemo-Display-Name: Application launcher widget with portrait mode +XSBC-Bugtracker: mailto:v13@v13.gr +Description: Application launcher widget with portrait mode + DrLaunch is an application launcher widget for the home screen that + supports portrait mode. Whenever the phone is rotated, icons are also + rotated. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..1b49a14 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Stefanos Harhalakis on +Thu Jun 24 18:57:43 EEST 2010 + +Upstream Author: Stefanos Harhalakis + +Copyright: 2010, Stefanos Harhalakis + +License: + + 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; either version 2 of the License, or + (at your option) any later version. + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2010, Stefanos Harhalakis and +is licensed under the GPLv3, see above. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ + diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..df15c73 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README +LICENSE diff --git a/debian/drlaunch.postinst b/debian/drlaunch.postinst new file mode 100644 index 0000000..7dc71f0 --- /dev/null +++ b/debian/drlaunch.postinst @@ -0,0 +1,40 @@ +#!/bin/sh +# postinst script for wifieye +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + configure) + LNK="/usr/lib/hildon-desktop/drlaunch.py" + + if ! test -e "$LNK" ; then + ln -s "/usr/shared/pyshared/drlaunch/drlaunch.py" "$LNK" + fi +# echo "Reloading actman applet" + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +exit 0 + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..3f0b243 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk + +#install/actman:: +# dh_install scripts/activity /usr/bin +# dh_install applet/actman.py /usr/lib/hildon-desktop +# dh_install applet/actman.desktop \ +# /usr/share/applications/hildon-status-menu +