--- boxar-0.0.20100122.orig/debian/changelog +++ boxar-0.0.20100122/debian/changelog @@ -0,0 +1,25 @@ +boxar (0.0.20100122-0ubuntu0~rzr1) karmic; urgency=low + + * wip: http://rzr.online.fr/q/boxar + + -- Philippe Coval Fri, 22 Jan 2010 12:31:02 +0100 + +boxar (0.0.0-0) UNRELEASED; urgency=low + + * TODO: upgdate this changelog if releasing + * http://rzr.online.fr/q/esd + + -- Philippe Coval Sat, 06 Jun 2009 02:07:39 +0200 + +boxar (0.0.20090605-0) unstable; urgency=low + + * Ported from meamo to debian : + http://rzr.online.fr/q/esd + + -- Philippe Coval Fri, 05 Jun 2009 18:55:41 +0200 + +boxar (0.0.20081130-0) UNRELEASED; urgency=low + + * wip: http://rzr.online.fr/q/fest + + -- Philippe Coval Sun, 30 Nov 2008 23:07:32 +0100 --- boxar-0.0.20100122.orig/debian/README.Debian +++ boxar-0.0.20100122/debian/README.Debian @@ -0,0 +1,6 @@ +boxar for Debian +---------------- + +This software was ported from maemo to debian based openmoko systems + + -- Philippe Coval Sun, 30 Nov 2008 23:04:25 +0100 --- boxar-0.0.20100122.orig/debian/manpage.sgml +++ boxar-0.0.20100122/debian/manpage.sgml @@ -0,0 +1,156 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + + + The docbook-to-man binary is found in the docbook-to-man package. + Please remember that if you create the nroff version in one of the + debian/rules file targets (such as build), you will need to include + docbook-to-man in your Build-Depends control field. + + --> + + + FIRSTNAME"> + SURNAME"> + + November 30, 2008"> + + SECTION"> + rzr@users.sf.net"> + + BOXAR"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2003 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + program to do something + + + + &dhpackage; + + + + + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; and bar + commands. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + Instead, it has documentation in the &gnu; + Info format; see below. + + &dhpackage; is a program that... + + + + OPTIONS + + These programs follow the usual &gnu; command line syntax, + with long options starting with two dashes (`-'). A summary of + options is included below. For a complete description, see the + Info files. + + + + + + + + Show summary of options. + + + + + + + + Show version of program. + + + + + + SEE ALSO + + bar (1), baz (1). + + The programs are documented fully by The Rise and + Fall of a Fooish Bar available via the + Info system. + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ + + + --- boxar-0.0.20100122.orig/debian/boxar.default.ex +++ boxar-0.0.20100122/debian/boxar.default.ex @@ -0,0 +1,10 @@ +# Defaults for boxar initscript +# sourced by /etc/init.d/boxar +# installed at /etc/default/boxar by the maintainer scripts + +# +# This is a POSIX shell fragment +# + +# Additional options that are passed to the Daemon. +DAEMON_OPTS="" --- boxar-0.0.20100122.orig/debian/boxar.files +++ boxar-0.0.20100122/debian/boxar.files @@ -0,0 +1,3 @@ +usr/bin/boxar +usr/share/applications/boxar.desktop +usr/share/pixmaps/boxar.xpm --- boxar-0.0.20100122.orig/debian/rules +++ boxar-0.0.20100122/debian/rules @@ -0,0 +1,95 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 +package?=$(shell [ -r debian/changelog ] && dpkg-parsechangelog \ + | sed -n 's/Source: \(.*\)/\1/p' || basename `pwd` || cut -f 1 -d-) + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) ${package} + #docbook-to-man debian/${package}.sgml > ${package}.1 + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + rm -f ${package} + dh_clean + +INSTALL_DIR?=$(CURDIR)/debian/tmp + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/${package}. +# $(MAKE) DESTDIR=$(CURDIR)/debian/${package} install + $(MAKE) DESTDIR=${INSTALL_DIR} install + install -d ${INSTALL_DIR}/usr/share/applications/hildon/ + ln -fs ../${package}.desktop ${INSTALL_DIR}/usr/share/applications/hildon/ +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install + dh_installmenu + dh_desktop +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure + + +download: + wget -O ${package}.c http://${package}.googlecode.com/svn/trunk/${package}.c +#eof --- boxar-0.0.20100122.orig/debian/menu +++ boxar-0.0.20100122/debian/menu @@ -0,0 +1,7 @@ +?package(boxar):\ + needs="x11" \ + section="Applications/Multimedia"\ + title="boxar keyboard" \ + command="/usr/bin/boxar" \ + icon="/usr/share/pixmaps/boxar.xpm" \ + hints="piano" --- boxar-0.0.20100122.orig/debian/watch +++ boxar-0.0.20100122/debian/watch @@ -0,0 +1,5 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://code.google.com/p/boxar/ \ + boxar-(.*)\.* --- boxar-0.0.20100122.orig/debian/install +++ boxar-0.0.20100122/debian/install @@ -0,0 +1 @@ +boxar usr/bin/ --- boxar-0.0.20100122.orig/debian/copyright +++ boxar-0.0.20100122/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Philippe Coval on +Sun, 30 Nov 2008 23:04:25 +0100. + +It was downloaded from + +Upstream Author(s): + + Sampath Jagannathan (jag) -- http://www.poojyum.com, jagernot@gmail.com + +Copyright: + + + + +License: + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +The Debian packaging is (C) 2008, Philippe Coval and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. --- boxar-0.0.20100122.orig/debian/control +++ boxar-0.0.20100122/debian/control @@ -0,0 +1,17 @@ +Source: boxar +Section: sound +Priority: extra +Maintainer: Philippe Coval +Build-Depends: debhelper (>= 5), libgtk2.0-dev, libesd0-dev | esound +Standards-Version: 3.7.3 +Homepage: https://garage.maemo.org/projects/boxar/ +Vcs-Svn: https://vcs.maemo.org/svn/boxar/trunk +Vcs-Browser: https://vcs.maemo.org/svn/boxar/trunk + + +Package: boxar +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: paint music on tiles + Boxes on the screen. Each has a note. Tap to play. + Or in other words : musical keyboard using touchscreen (or mouse) --- boxar-0.0.20100122.orig/debian/boxar.doc-base.EX +++ boxar-0.0.20100122/debian/boxar.doc-base.EX @@ -0,0 +1,22 @@ +Document: boxar +Title: Debian boxar Manual +Author: +Abstract: This manual describes what boxar is + and how it can be used to + manage online manuals on Debian systems. +Section: unknown + +Format: debiandoc-sgml +Files: /usr/share/doc/boxar/boxar.sgml.gz + +Format: postscript +Files: /usr/share/doc/boxar/boxar.ps.gz + +Format: text +Files: /usr/share/doc/boxar/boxar.text.gz + +Format: HTML +Index: /usr/share/doc/boxar/html/index.html +Files: /usr/share/doc/boxar/html/*.html + + --- boxar-0.0.20100122.orig/debian/compat +++ boxar-0.0.20100122/debian/compat @@ -0,0 +1 @@ +5