(no commit message)
authorStefanos Harhalakis <v13@v13.gr>
Thu, 24 Jun 2010 16:10:01 +0000 (16:10 +0000)
committerStefanos Harhalakis <v13@v13.gr>
Sun, 20 Nov 2011 13:05:40 +0000 (13:05 +0000)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/dirs [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/drlaunch.postinst [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..27aad5e
--- /dev/null
@@ -0,0 +1,6 @@
+actman (0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Stefanos Harhalakis <v13@v13.gr>  Thu, 24 Jun 2010 19:55:11 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..7efc763
--- /dev/null
@@ -0,0 +1,17 @@
+Source: drlaunch
+Section: user/desktop
+Priority: extra
+Maintainer: Stefanos Harhalakis <v13@v13.gr>
+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 (file)
index 0000000..1b49a14
--- /dev/null
@@ -0,0 +1,29 @@
+This package was debianized by Stefanos Harhalakis <v13@v13.gr> on
+Thu Jun 24 18:57:43 EEST 2010
+
+Upstream Author: Stefanos Harhalakis <v13@v13.gr>
+
+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 <v13@v13.gr> and
+is licensed under the GPLv3, see above.
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..8b13789
--- /dev/null
@@ -0,0 +1 @@
+
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..df15c73
--- /dev/null
@@ -0,0 +1,2 @@
+README
+LICENSE
diff --git a/debian/drlaunch.postinst b/debian/drlaunch.postinst
new file mode 100644 (file)
index 0000000..7dc71f0
--- /dev/null
@@ -0,0 +1,40 @@
+#!/bin/sh
+# postinst script for wifieye
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <postinst> `abort-remove'
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# 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 (executable)
index 0000000..3f0b243
--- /dev/null
@@ -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
+