diff options
Diffstat (limited to 'src/frontends')
-rw-r--r-- | src/frontends/maemo/Makefile.am | 8 | ||||
-rw-r--r-- | src/frontends/maemo/debian/changelog | 6 | ||||
-rw-r--r-- | src/frontends/maemo/debian/compat | 1 | ||||
-rw-r--r-- | src/frontends/maemo/debian/control | 15 | ||||
-rw-r--r-- | src/frontends/maemo/debian/copyright | 8 | ||||
-rw-r--r-- | src/frontends/maemo/debian/postinst | 42 | ||||
-rwxr-xr-x | src/frontends/maemo/debian/rules | 141 |
7 files changed, 220 insertions, 1 deletions
diff --git a/src/frontends/maemo/Makefile.am b/src/frontends/maemo/Makefile.am index d01eb3c97..c5d7ccc7d 100644 --- a/src/frontends/maemo/Makefile.am +++ b/src/frontends/maemo/Makefile.am @@ -1,5 +1,11 @@ EXTRA_DIST = \ - autogen.sh + autogen.sh \ + debian/changelog \ + debian/compat \ + debian/control \ + debian/copyright \ + debian/postinst \ + debian/rules SUBDIRS = src data diff --git a/src/frontends/maemo/debian/changelog b/src/frontends/maemo/debian/changelog new file mode 100644 index 000000000..e520e80ac --- /dev/null +++ b/src/frontends/maemo/debian/changelog @@ -0,0 +1,6 @@ +strongswan-applet (1.0.0-1) unstable; urgency=low + + * Initial release + + -- Tobias Brunner <tobias@strongswan.org> Fri, 4 Jun 2010 11:02:47 +0200 + diff --git a/src/frontends/maemo/debian/compat b/src/frontends/maemo/debian/compat new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/src/frontends/maemo/debian/compat @@ -0,0 +1 @@ +5 diff --git a/src/frontends/maemo/debian/control b/src/frontends/maemo/debian/control new file mode 100644 index 000000000..5cbe37c27 --- /dev/null +++ b/src/frontends/maemo/debian/control @@ -0,0 +1,15 @@ +Source: strongswan-applet +Section: user/network +Priority: extra +Maintainer: Tobias Brunner <tobias@strongswan.org> +Build-Depends: debhelper (>= 5), autotools-dev +Standards-Version: 3.7.2 + +Package: strongswan-applet +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A frontend for the strongSwan IKEv2/IPsec VPN solution + A frontend to configure and control the strongSwan + IKEv2/IPsec VPN solution. Currently only EAP Authentication + is supported. + diff --git a/src/frontends/maemo/debian/copyright b/src/frontends/maemo/debian/copyright new file mode 100644 index 000000000..615fac701 --- /dev/null +++ b/src/frontends/maemo/debian/copyright @@ -0,0 +1,8 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=437 +Upstream-Name: strongSwan +Upstream-Source: http://download.strongswan.org +Files: debian/* +License: GPL-2 + On Debian systems the full text of the GNU General Public License can be found + in the `/usr/share/common-licenses/GPL-2' file. + diff --git a/src/frontends/maemo/debian/postinst b/src/frontends/maemo/debian/postinst new file mode 100644 index 000000000..db5a670f8 --- /dev/null +++ b/src/frontends/maemo/debian/postinst @@ -0,0 +1,42 @@ +#!/bin/sh +# postinst script for strongswan-applet +# +# 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 + +gtk-update-icon-cache -f /usr/share/icons/hicolor + +case "$1" in + configure) + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + diff --git a/src/frontends/maemo/debian/rules b/src/frontends/maemo/debian/rules new file mode 100755 index 000000000..3dc5d47ac --- /dev/null +++ b/src/frontends/maemo/debian/rules @@ -0,0 +1,141 @@ +#!/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. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +# Use hardware floating point +ifneq (,$(findstring vfp,$(DEB_BUILD_OPTIONS))) + CFLAGS += -mfpu=vfp -mfloat-abi=softfp +endif + +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +#Architecture +build: build-arch build-indep + +build-arch: build-arch-stamp +build-arch-stamp: config.status + + # Add here commands to compile the arch part of the package. + #$(MAKE) + touch $@ + +build-indep: build-indep-stamp +build-indep-stamp: config.status + + # Add here commands to compile the indep part of the package. + #$(MAKE) doc + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-arch-stamp build-indep-stamp #CONFIGURE-STAMP# + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + + dh_clean + +install: install-indep install-arch +install-indep: + dh_testdir + dh_testroot + dh_clean -k -i + dh_installdirs -i + + # Add here commands to install the indep part of the package into + # debian/<package>-doc. + #INSTALLDOC# + + dh_install -i + +install-arch: + dh_testdir + dh_testroot + dh_clean -k -s + dh_installdirs -s + + # Add here commands to install the arch part of the package into + # debian/tmp. + $(MAKE) DESTDIR=$(CURDIR)/debian/strongswan-applet install + + dh_install -s +# Must not depend on anything. This is to be called by +# binary-arch/binary-indep +# in another 'make' thread. +binary-common: + dh_testdir + dh_testroot + dh_installchangelogs NEWS + dh_installdocs + dh_installexamples +# 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 +# Build architecture independant packages using the common target. +binary-indep: build-indep install-indep + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +# Build architecture dependant packages using the common target. +binary-arch: build-arch install-arch + $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch |