Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions debian/README.Fremantle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
xulrunner for Fremantle
-------------------------------

You need to install maemo-optify and maemo-sdk-dev, although not mentioned in debian/control.

-- Marcin Mielniczuk <marmistrz@inboxalias.com> Fri, 22 Nov 2013 19:12:30 +0100

2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
xulrunner (0.1) unstable; urgency=low
xulrunner (28.0a1) unstable; urgency=low

* Initial Release.

Expand Down
8 changes: 6 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Source: xulrunner
Section: libs
Priority: extra
Maintainer: unknown <tmeshkova@github.com>
Build-Depends: debhelper (>= 7),
Build-Depends: debhelper (>= 5),
autoconf2.13,
python,
unzip,
Expand All @@ -14,7 +14,11 @@ Build-Depends: debhelper (>= 7),
libgstreamer0.10-dev,
libgstreamer-plugins-base0.10-dev,
libx11-dev,
libxt-dev
libxt-dev,
quilt,
python2.7,
libqt4-dev,
libcairo2-dev
Homepage: https://wiki.mozilla.org/Embedding/IPCLiteAPI

Package: xulrunner
Expand Down
14 changes: 14 additions & 0 deletions debian/rules
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

ifneq (,$(findstring Maemo 5,$(shell cat /etc/issue)))
export PYTHON=/usr/bin/python2.7
endif

package=xulrunner
prefix=usr

Expand Down Expand Up @@ -56,6 +60,9 @@ GREVERSION=$(shell cat $(CURDIR)/config/milestone.txt | sed '/^\#/d' | sed '/^$$

configure: configure-$(DEB_HOST_ARCH)-stamp
configure-$(DEB_HOST_ARCH)-stamp:
ifneq (,$(findstring Maemo 5,$(shell cat /etc/issue)))
QUILT_PATCHES=debian/patches/fremantle quilt push -a
endif
dh_testdir
cp $(CURDIR)/embedding/embedlite/config/$(MOZCONFIG_FILE) $(CURDIR)/$(MOZCONFIG_FILE)
ifneq (,$(findstring cs2009q3-hard-67-sb16,$(shell gcc --version)))
Expand Down Expand Up @@ -94,6 +101,10 @@ clean:
rm -f build-$(DEB_HOST_ARCH)-stamp
rm -f configure-$(DEB_HOST_ARCH)-stamp
# $(MAKE) distclean
rm -rf $(DEST_OBJ_DIR)
ifneq (,$(findstring Maemo 5,$(shell cat /etc/issue)))
QUILT_PATCHES=debian/patches/fremantle quilt pop -a || true
endif
dh_clean

install: build
Expand Down Expand Up @@ -145,6 +156,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

Expand Down