]> git.decadent.org.uk Git - emusic-remote.git/commitdiff
[svn-inject] Applying Debian modifications to trunk
authorBen Hutchings <ben@decadent.org.uk>
Tue, 12 Feb 2008 23:07:43 +0000 (23:07 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 12 Feb 2008 23:07:43 +0000 (23:07 +0000)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/install [new file with mode: 0644]
debian/menu [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..8f751a2
--- /dev/null
@@ -0,0 +1,5 @@
+emusic-remote (1.0.0.2ds1-1) unstable; urgency=low
+
+  * Initial release - closes: #444409
+
+ -- Ben Hutchings <ben@decadent.org.uk>  Tue, 12 Feb 2008 22:46:17 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..d224a11
--- /dev/null
@@ -0,0 +1,15 @@
+Source: emusic-remote
+Section: sound
+Priority: extra
+Maintainer: Ben Hutchings <ben@decadent.org.uk>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+Homepage: http://www.emusic.com/dlm/download.html
+
+Package: emusic-remote
+Architecture: all
+Depends: xulrunner (>= 1.8.0)
+Description: browser and download manager for eMusic.com
+ eMusic Remote is the officially supported browser and download manager
+ for the eMusic.com music store.  It can also import downloaded files
+ into other programs automatically.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..80edf88
--- /dev/null
@@ -0,0 +1,34 @@
+This package was debianized by Ben Hutchings <ben@decadent.org.uk> on
+Tue, 12 Feb 2008 22:46:17 +0000.
+
+It was downloaded from <http://www.emusic.com/dlm/download.html>.
+
+Upstream Author(s): 
+
+    eMusic.com Inc.
+
+Copyright: 
+
+    Copyright 2007 eMusic.com Inc.
+
+License:
+
+    The rights in the trademarks, logos and service marks of
+    eMusic.com Inc., as well as the look and feel of the eMusic
+    website and the binary, are not licensed to you and are
+    specifically reserved by eMusic.com Inc.  To the extent they are
+    works of authorship (like logos and graphic design), they are not
+    included in the binary that is licensed under these terms.  If you
+    use the text of documents, and wish to also use any of these
+    rights, or if you have any other questions about complying with
+    our license terms for this binary, you should contact eMusic.com
+    Inc. here: http://www.emusic.com/contact/index.html.
+
+    This binary is licensed to you under the GNU Lesser General Public
+    License version 3.
+
+On Debian systems, the complete text of the GNU Lesser General Public
+License version 3 can be found in `/usr/share/common-licenses/LGPL-3'.
+
+The Debian packaging is copyright 2008 Ben Hutchings and is licensed
+under the GPL; see `/usr/share/common-licenses/GPL'.
diff --git a/debian/install b/debian/install
new file mode 100644 (file)
index 0000000..2b7c206
--- /dev/null
@@ -0,0 +1,9 @@
+application.ini usr/share/emusic-remote
+components/.autoreg usr/share/emusic-remote/components
+components/eCmdLineHandler.js usr/share/emusic-remote/components
+chrome/chrome.manifest usr/share/emusic-remote/chrome
+chrome/classic.jar usr/share/emusic-remote/chrome
+chrome/emusic.jar usr/share/emusic-remote/chrome
+chrome/locales.jar usr/share/emusic-remote/chrome
+chrome/locales.manifest usr/share/emusic-remote/chrome
+defaults/preferences/emusic.js usr/share/emusic-remote/defaults/preferences
diff --git a/debian/menu b/debian/menu
new file mode 100644 (file)
index 0000000..777fa3d
--- /dev/null
@@ -0,0 +1,2 @@
+?package(emusic-remote):needs="X11" section="Applications/Sound"\
+  title="emusic-remote" command="/usr/bin/emusic-remote"
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..e26014d
--- /dev/null
@@ -0,0 +1,39 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+       touch $@
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp
+       dh_clean 
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k 
+       #dh_installdirs
+
+# Build architecture-independent files here.
+binary-indep: install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs 
+       dh_installdocs
+       dh_install
+       dh_installmenu
+       dh_installman
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install