From 1343543b5489490d67480b6450b04329d8d0ab2f Mon Sep 17 00:00:00 2001 From: Marcin Mielniczuk Date: Fri, 22 Nov 2013 18:05:33 +0100 Subject: [PATCH 1/4] Improved debian packaging - cleaning and deps --- debian/control | 2 +- debian/rules | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index ea981aa..5e69690 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: embedlite-components Section: libs Priority: extra Maintainer: unknown -Build-Depends: debhelper (>= 7) +Build-Depends: debhelper (>= 5), xulrunner-dev Standards-Version: 3.8.4 Homepage: diff --git a/debian/rules b/debian/rules index fa267b7..02dd27e 100755 --- a/debian/rules +++ b/debian/rules @@ -61,6 +61,7 @@ clean: -rm -f build-$(DEB_HOST_ARCH)-stamp -rm -f configure-$(DEB_HOST_ARCH)-stamp -rm -rf $(DEST_OBJ_DIR) + rm -rf objdir-armel # $(MAKE) distclean dh_clean From bc66254a1b50bacc222daea6051ce3e827231872 Mon Sep 17 00:00:00 2001 From: Marcin Mielniczuk Date: Fri, 22 Nov 2013 20:52:01 +0100 Subject: [PATCH 2/4] Removed removing objdir-armel - isn't needed here --- debian/rules | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/rules b/debian/rules index 02dd27e..fa267b7 100755 --- a/debian/rules +++ b/debian/rules @@ -61,7 +61,6 @@ clean: -rm -f build-$(DEB_HOST_ARCH)-stamp -rm -f configure-$(DEB_HOST_ARCH)-stamp -rm -rf $(DEST_OBJ_DIR) - rm -rf objdir-armel # $(MAKE) distclean dh_clean From e6b18653a1ca6ea84d43ec31f10f227b89271861 Mon Sep 17 00:00:00 2001 From: Marcin Mielniczuk Date: Sat, 23 Nov 2013 13:43:03 +0100 Subject: [PATCH 3/4] Added optify on Fremantle --- debian/README.Fremantle | 7 +++++++ debian/rules | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 debian/README.Fremantle diff --git a/debian/README.Fremantle b/debian/README.Fremantle new file mode 100644 index 0000000..d47d8df --- /dev/null +++ b/debian/README.Fremantle @@ -0,0 +1,7 @@ +embedlite-components for Fremantle +------------------------------- + +You need to install maemo-optify and maemo-sdk-dev, although not mentioned in debian/control. + + -- Marcin Mielniczuk Fri, 22 Nov 2013 19:12:30 +0100 + diff --git a/debian/rules b/debian/rules index fa267b7..ca178e4 100755 --- a/debian/rules +++ b/debian/rules @@ -93,6 +93,9 @@ binary-arch: build install dh_installdeb dh_shlibdeps dh_gencontrol +ifneq (,$(findstring Maemo 5,$(shell cat /etc/issue))) + maemo-optify +endif dh_md5sums dh_builddeb From cdd879aaf1ddc8ac446009355f26c367b5aeb6fd Mon Sep 17 00:00:00 2001 From: Marcin Mielniczuk Date: Mon, 25 Nov 2013 17:04:59 +0100 Subject: [PATCH 4/4] Removed redundant stuff from readme --- debian/README.Fremantle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/README.Fremantle b/debian/README.Fremantle index d47d8df..0bfda3a 100644 --- a/debian/README.Fremantle +++ b/debian/README.Fremantle @@ -1,7 +1,7 @@ embedlite-components for Fremantle ------------------------------- -You need to install maemo-optify and maemo-sdk-dev, although not mentioned in debian/control. +You need to install maemo-optify, although not mentioned in debian/control. -- Marcin Mielniczuk Fri, 22 Nov 2013 19:12:30 +0100