[Pkg-wmaker-commits] [wmauda] 01/17: Import Debian changes 0.3-1

Doug Torrance dtorrance-guest at moszumanska.debian.org
Fri Jul 7 01:08:48 UTC 2017


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmauda.

commit dad537e374fb7077b31f1106d8e7fcfd13013f03
Author: Julien BLACHE <jblache at debian.org>
Date:   Tue Jul 31 14:44:06 2007 +0200

    Import Debian changes 0.3-1
    
    wmauda (0.3-1) unstable; urgency=low
    
      * Initial release (Closes: #435390)
---
 Makefile         |  2 +-
 debian/changelog |  6 ++++
 debian/compat    |  1 +
 debian/control   | 17 ++++++++++++
 debian/copyright | 39 ++++++++++++++++++++++++++
 debian/rules     | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 148 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 69c4fc1..29eeb97 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 CC	?= gcc
-CFLAGS	?= -g -pipe
+CFLAGS	?= -g -O2 -pipe
 
 PREFIX	?= /usr/local
 
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9053c69
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+wmauda (0.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #435390)
+
+ -- Julien BLACHE <jblache at debian.org>  Tue, 31 Jul 2007 14:44:06 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..0102196
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: wmauda
+Section: sound
+Priority: extra
+Maintainer: Julien BLACHE <jblache at debian.org>
+Build-Depends: debhelper (>= 5), audacious-dev
+Standards-Version: 3.7.2
+
+Package: wmauda
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: audacious
+Description: remote-control dockapp for Audacious
+ wmauda is a dockapp for WindowMaker and other window managers that support
+ dockable applets. It acts as a remote control for the Audacious media player.
+ .
+ wmauda is a port of wmxmms to Audacious, itself seen as a replacement for
+ XMMS.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a087fc2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+This package was debianized by Julien BLACHE <jblache at debian.org> on
+Mon, 30 Jul 2007 19:05:48 +0200.
+
+It was downloaded from: http://dockapps.org/file.php/id/330
+
+Upstream Authors:
+   Original wmxmms sources:
+	Peter Alm
+	Mikael Alm
+	Olle Hallnas
+	Thomas Nilsson
+	4Front Technologies
+
+   wmauda port:
+	Michael Stewart <michael at alteredeclipse.org>
+	Christian Birchinger <joker at netswarm.net>
+	George Averill <nhjm449 at gmail.com>
+
+Copyright: 
+	Copyright (C) 2006 Michael Stewart <michael at alteredeclipse.org>
+
+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 of the License, 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.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+The Debian packaging is (C) 2007, Julien BLACHE <jblache at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..83b6661
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,84 @@
+#!/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
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	CFLAGS="$(CFLAGS)" $(MAKE) PREFIX=/usr
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/wmauda.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/wmauda PREFIX=/usr install
+
+
+# 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_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmauda.git



More information about the Pkg-wmaker-commits mailing list