[#2445] Updated package

This commit is contained in:
Julien Bonjean
2009-12-15 17:45:33 -05:00
parent e643c827af
commit e31877b30f
11 changed files with 36 additions and 22 deletions

12
.gitignore vendored
View File

@ -208,3 +208,15 @@ sflphone-client-gnome/stamp-h1
/tools/build-system/launchpad/*.build /tools/build-system/launchpad/*.build
/tools/build-system/launchpad/*.upload /tools/build-system/launchpad/*.upload
# telify
/tools/mozilla-telify-sflphone/debian/mozilla-telify-sflphone
/tools/mozilla-telify-sflphone/tmp/
/tools/mozilla-telify-sflphone/*-stamp
/tools/*.dsc
/tools/*.tar.gz
/tools/*.deb
/tools/*.build
/tools/*.changes
/tools/mozilla-telify-sflphone/debian/control
/tools/mozilla-telify-sflphone/debian/mozilla-telify-sflphone.links

View File

@ -4,4 +4,3 @@ mozilla-telify-sflphone (0.4.7.3) unstable; urgency=low
* Package creation * Package creation
-- Julien Bonjean <julien.bonjean@savoirfairelinux.com> Fri, 20 Nov 2009 19:51:54 +0100 -- Julien Bonjean <julien.bonjean@savoirfairelinux.com> Fri, 20 Nov 2009 19:51:54 +0100

View File

@ -4,13 +4,16 @@ Priority: optional
Maintainer: Julien Bonjean <julien.bonjean@savoirfairelinux.com> Maintainer: Julien Bonjean <julien.bonjean@savoirfairelinux.com>
Uploaders: Julien Bonjean <julien.bonjean@savoirfairelinux.com> Uploaders: Julien Bonjean <julien.bonjean@savoirfairelinux.com>
Build-Depends: debhelper (>= 7), unzip Build-Depends: debhelper (>= 7), unzip
Depends: iceweasel-gnome-support
Homepage: http://www.sflphone.org Homepage: http://www.sflphone.org
Standards-Version: 3.8.3 Standards-Version: 3.8.3
DM-Upload-Allowed: yes DM-Upload-Allowed: yes
Package: mozilla-telify-sflphone Package: mozilla-telify-sflphone
Depends: iceweasel-gnome-support, sflphone-client-gnome
Architecture: all Architecture: all
Depends: iceweasel (>= 3.0) Description: This package provides telify firefox plugin and handler for SFLphone.
Description: TBD Telify recognizes phone numbers on web pages and converts them to clickable links.
Additionally, any text can be selected and handled as a phone number (including
vanity number conversion) by selecting the corresponding context menu item.
http://www.codepad.de/en/software/firefox-add-ons/telify.html

View File

@ -11,5 +11,9 @@ DM-Upload-Allowed: yes
Package: mozilla-telify-sflphone Package: mozilla-telify-sflphone
Depends: firefox-gnome-support, sflphone-client-gnome Depends: firefox-gnome-support, sflphone-client-gnome
Architecture: all Architecture: all
Description: TBD Description: This package provides telify firefox plugin and handler for SFLphone.
Telify recognizes phone numbers on web pages and converts them to clickable links.
Additionally, any text can be selected and handled as a phone number (including
vanity number conversion) by selecting the corresponding context menu item.
http://www.codepad.de/en/software/firefox-add-ons/telify.html

View File

@ -1,5 +1,2 @@
temp/install.rdf usr/share/mozilla-extensions/telify/ tmp/telify usr/share/
temp/chrome.manifest usr/share/mozilla-extensions/telify/
temp/defaults/* usr/share/mozilla-extensions/telify/defaults
temp/chrome/* usr/share/mozilla-extensions/telify/chrome
sflphone-handler usr/bin/ sflphone-handler usr/bin/

View File

@ -1 +0,0 @@
usr/share/mozilla-extensions/telify usr/lib/iceweasel/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}

View File

@ -0,0 +1 @@
usr/share/telify usr/lib/iceweasel/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}

View File

@ -0,0 +1 @@
usr/share/telify usr/lib/firefox-addons/extensions/{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}

View File

@ -1,7 +1,5 @@
#!/bin/bash #!/bin/bash
set -x
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t string -s /desktop/gnome/url-handlers/tel/command "/usr/bin/sflphone-handler %s" gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t string -s /desktop/gnome/url-handlers/tel/command "/usr/bin/sflphone-handler %s"
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -s /desktop/gnome/url-handlers/tel/needs_terminal false -t bool gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -s /desktop/gnome/url-handlers/tel/needs_terminal false -t bool
gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t bool -s /desktop/gnome/url-handlers/tel/enabled true gconftool-2 --direct --config-source xml::/etc/gconf/gconf.xml.defaults -t bool -s /desktop/gnome/url-handlers/tel/enabled true

View File

@ -1,42 +1,40 @@
#!/usr/bin/make -f #!/usr/bin/make -f
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1 export DH_VERBOSE=1
ID="{6c5f349a-ddda-49ad-bdf0-326d3fe1f938}" VERSION="0.4.7.3"
configure: configure-stamp configure: configure-stamp
configure-stamp: configure-stamp:
dh_testdir dh_testdir
touch configure-stamp touch configure-stamp
build: configure-stamp build-stamp build: configure-stamp build-stamp
build-stamp: build-stamp:
dh_testdir dh_testdir
mkdir -p temp echo ${DIR}
unzip -o -d temp *.xpi umask 0022
mkdir -p tmp/telify
unzip telify-${VERSION}-fx.xpi -d tmp/telify
touch build-stamp touch build-stamp
clean: clean:
dh_testdir dh_testdir
dh_testroot dh_testroot
rm -f build-stamp configure-stamp rm -f build-stamp configure-stamp
-rm -rf temp
dh_clean dh_clean
rm -rf tmp
install: build install: build
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_prep dh_prep
dh_installdirs dh_installdirs
dh_install dh_install
# Build architecture-independent files here. # Build architecture-independent files here.
binary-indep: build install binary-indep: build install
dh_testdir dh_testdir

View File

@ -0,0 +1,2 @@
version=3
http://www.codepad.de/en/telify.html /download/telify-(.*)-fx.xpi