[pkg-fso-commits] [SCM] UNNAMED PROJECT branch, master, updated. upstream/20080911-1-gd3413c3
Luca Capello
luca at pca.it
Sun Oct 26 23:51:40 UTC 2008
The following commit has been merged in the master branch:
commit d3413c3948d2dffd4948c6d6a51fe9fa9f580bab
Author: Luca Capello <luca at pca.it>
Date: Mon Oct 27 00:51:32 2008 +0100
first attempt at Debian packaging
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..456e16a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+openmoko-files-nonfree (20080911-1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ --
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6e845a8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: openmoko-files-nonfree
+Section: non-free/misc
+Priority: extra
+Maintainer: Debian FreeSmartphone.Org Team <pkg-fso-maint at lists.alioth.debian.org>
+Uploaders: Luca Capello <luca at pca.it>
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://www.openmoko.org/
+Vcs-Git: git://git.debian.org/git/pkg-fso/openmoko-files-nonfree.git
+Vcs-Browser: http://git.debian.org/?p=pkg-fso/openmoko-files-nonfree.git;a=summary
+
+Package: fso-sounds-openmoko-nonfree
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Conflicts: fso-sounds, fso-frameworkd (<< 0.2.0-git20080909-7)
+Replaces: fso-sounds
+Provides: fso-sounds
+Description: Openmoko ringtones for the FreeSmartphone.Org frameworkd
+ This packages provides the non-free ringtone files distributed by
+ Openmoko and to be used mainly with the FreeSmartphone.Org frameworkd.
+ .
+ This package is part of the freesmartphone.org software stack and is targeted
+ for smartphones.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e762ca2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,49 @@
+This package was debianized by Luca Capello <luca at pca.it> on
+Sun, 26 Oct 2008 19:46:45 +0100.
+
+It was downloaded from http://downloads.openmoko.org/framework/.
+
+The following copyrights apply to the frameworkd sourcecode:
+ * Copyright © 2008 Openmoko, Inc.
+
+The file sounds.base64/Arkanoid_PSID.sid.base64 has been taken from
+HVSC (High Voltage Sid Collection), here the full copyright:
+
+ COPYRIGHT NOTICE AND DISCLAIMER
+
+ All of the tunes available in the High Voltage SID Collection (HVSC) are
+ copyrighted and owned by the original authors/software companies. Use for
+ profit would be subject to law. Do not offer any such contributions to the
+ creators of this collection for none will be accepted.
+
+ The copyright to some of the SID files in this collection are now copyright
+ administered by High Technology Publishing Limited and appear in HVSC with
+ their explicit permission. Unauthorised commercial exploitation of any tune
+ in this collection is illegal.
+
+ Further, HVSC accepts no responsibilty for the use of any language, whether
+ it be in the SID file names or any speech samples, which you may consider
+ offensive. It is up to you to decide whether to listen to those SIDs or not.
+
+ One last thing: if you are intending to commercially cover a SID tune, you
+ absolutely must get permission from the composers concerned, and indeed
+ ensure that they are adequately paid a royalty for their original
+ composition.
+
+For the Debian packaging:
+ * Copyright © 2008 Luca Capello <luca at pca.it>
+
+The Debian package is distributed under the following license:
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+On Debian systems, the complete text of the GNU General Public License can
+be found in /usr/share/common-licenses/GPL-2 file.
diff --git a/debian/fso-sounds-openmoko-nonfree.install b/debian/fso-sounds-openmoko-nonfree.install
new file mode 100644
index 0000000..bfd9e74
--- /dev/null
+++ b/debian/fso-sounds-openmoko-nonfree.install
@@ -0,0 +1 @@
+debian/sounds/* /usr/share/sounds
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a8723a3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,36 @@
+#!/usr/bin/make -f
+
+
+build: build-stamp
+build-stamp:
+ dh build
+ touch build-stamp
+
+clean:
+ rm -rf debian/sounds
+ rm -f build-stamp
+ rm -f install-stamp
+ dh clean
+
+install: build install-stamp
+install-stamp:
+ mkdir debian/sounds
+ for I in Arkanoid_PSID.sid notify_message.mp3; do \
+ base64 -d < sounds.base64/$$I.base64 > debian/sounds/$$I; \
+ done
+ # Run this first
+ dh install --until dh_auto_install
+ dh_install
+ dh install --after dh_install --before dh_compress
+ dh_compress
+ dh install --after dh_compress
+ touch install-stamp
+
+binary-arch: install
+ dh binary-arch
+
+binary-indep: install
+ dh binary-indep
+
+binary: binary-arch binary-indep
+
--
UNNAMED PROJECT
More information about the pkg-fso-commits
mailing list