summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-10-05 15:20:11 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-10-05 15:20:11 +0200
commit4721d3a3331fe4c857f2a77813be6d23879e5970 (patch)
treeda97a586f66b7f757295552dc4a60fda99f57967
Imported Debian version 0.0.1
-rw-r--r--80swirlberry5
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright30
-rw-r--r--debian/install2
-rwxr-xr-xdebian/rules72
-rw-r--r--tmut.desktop5
8 files changed, 133 insertions, 0 deletions
diff --git a/80swirlberry b/80swirlberry
new file mode 100644
index 0000000..038cf76
--- /dev/null
+++ b/80swirlberry
@@ -0,0 +1,5 @@
+#swirlberry session setup
+matchbox-panel -ns -nm --bgcolor 000000 &
+krb5-auth-dialog -A &
+mb-applet-launcher --desktop /root/tmut.desktop &
+nm-applet &
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f6ae20a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+swirlberry (0.0.1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Guido Guenther <agx@sigxcpu.org> Sun, 21 Sep 2008 19:35:20 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..542cdc1
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: swirlberry
+Section: mail
+Priority: extra
+Maintainer: Guido Guenther <agx@sigxcpu.org>
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://honk.sigxcpu.org/procects/swirlberry
+
+Package: swirlberry
+Architecture: any
+Depends: krb5-config, krb5-auth-dialog, matchbox-panel, dbus-x11, hicolor-icon-theme, network-manager-gnome, tmut, mutt
+Description: Email and more for the Freerunner
+ Meta package to setup email and kerberos on your Openmoko
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bb634b8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+This package was debianized by Guido Guenther <agx@sigxcpu.org> on
+Sun, 21 Sep 2008 19:35:20 +0200.
+
+It was downloaded from http://honk.sigxcpu.org/projects/swirlberry/
+
+Upstream Author:
+
+ Guido Günther <agx@sigxcpu.org>
+
+Copyright:
+
+ (c) 2008 Guido Günther <agx@sigxcpu.org>
+
+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.
+
+ 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'.
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..e1d77b5
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+tmut.desktop /usr/share/applications/
+80swirlberry /etc/X11/Xsession.d/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..fa24c22
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,72 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples
+ dh_install
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_python
+# dh_installinit
+# dh_installcron
+# dh_installinfo
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_makeshlibs
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/tmut.desktop b/tmut.desktop
new file mode 100644
index 0000000..0b4cc2e
--- /dev/null
+++ b/tmut.desktop
@@ -0,0 +1,5 @@
+[Desktop Entry]
+Name=TMut
+Exec=tmut
+Icon=mutt.xpm
+Type=Application