[Demudi-commits] r1310 - in wavbreaker/trunk: . debian

Free Ekanayaka free-guest at alioth.debian.org
Thu May 10 22:22:11 UTC 2007


Author: free-guest
Date: 2007-05-10 22:22:10 +0000 (Thu, 10 May 2007)
New Revision: 1310

Added:
   wavbreaker/trunk/debian/
   wavbreaker/trunk/debian/changelog
   wavbreaker/trunk/debian/compat
   wavbreaker/trunk/debian/control
   wavbreaker/trunk/debian/copyright
   wavbreaker/trunk/debian/dirs
   wavbreaker/trunk/debian/docs
   wavbreaker/trunk/debian/rules
   wavbreaker/trunk/debian/wavbreaker.menu
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: wavbreaker/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: wavbreaker/trunk/debian/changelog
===================================================================
--- wavbreaker/trunk/debian/changelog	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/changelog	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,6 @@
+wavbreaker (0.8-1) unstable; urgency=low
+
+  * Initial release (Closes: #282456)
+
+ -- Thomas Perl <thp at perli.net>  Thu, 10 May 2007 23:01:45 +0200
+

Added: wavbreaker/trunk/debian/compat
===================================================================
--- wavbreaker/trunk/debian/compat	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/compat	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1 @@
+5

Added: wavbreaker/trunk/debian/control
===================================================================
--- wavbreaker/trunk/debian/control	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/control	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,19 @@
+Source: wavbreaker
+Section: x11
+Priority: extra
+Maintainer: Debian Multimedia Team <debian-multimedia at lists.debian.org>
+Uploaders: Free Ekanayaka <freee at debian.org>, Thomas Perl <thp at perli.net>
+Build-Depends: debhelper (>= 5), autotools-dev, libxml2-dev, libgtk2.0-dev
+Standards-Version: 3.7.2
+
+Package: wavbreaker
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A tool to split wave files into multiple chunks
+ This application's purpose in life is to take a wave file and
+ break it up into multiple wave files.  It makes a clean break 
+ at the correct position to burn the files to an audio cd 
+ without any dead air between the tracks. 
+ .
+ Upstream: http://wavbreaker.sourceforge.net/
+ 

Added: wavbreaker/trunk/debian/copyright
===================================================================
--- wavbreaker/trunk/debian/copyright	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/copyright	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,19 @@
+This package was debianized by Thomas Perl <thp at perli.net> on
+Sun, 11 Mar 2007 17:29:04 +0100.
+
+It was downloaded from http://wavbreaker.sourceforge.net/
+
+Upstream Authors:
+  Timothy D. Robinson <tdrobinson at huli.org>
+  Thomas Perl <thp at perli.net>
+
+Copyright:
+    Copyright (C) 2002-2007 Timothy D. Robinson <tdrobinson at huli.org>
+    Copyright (C) 2006-2007 Thomas Perl <thp at perli.net>
+
+License:
+    GPL
+
+The Debian packaging is (C) 2007, Thomas Perl <thp at perli.net> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: wavbreaker/trunk/debian/dirs
===================================================================
--- wavbreaker/trunk/debian/dirs	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/dirs	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1 @@
+usr/bin

Added: wavbreaker/trunk/debian/docs
===================================================================
--- wavbreaker/trunk/debian/docs	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/docs	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,4 @@
+NEWS
+README
+TODO
+CONTRIBUTORS

Added: wavbreaker/trunk/debian/rules
===================================================================
--- wavbreaker/trunk/debian/rules	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/rules	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,96 @@
+#!/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.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: configure
+	dh_testdir
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-arch
+
+build-arch: build-arch-stamp
+build-arch-stamp:  config.status
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-arch-stamp #CONFIGURE-STAMP#
+
+	-$(MAKE) distclean
+	dh_clean 
+
+install: install-arch
+
+install-arch:
+	dh_testdir
+	dh_testroot
+	dh_clean -k -s 
+	dh_installdirs -s
+
+	# Add here commands to install the arch part of the package into 
+	# debian/tmp.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/wavbreaker install
+
+	dh_install -s
+
+# Must not depend on anything. This is to be called by
+# binary-arch/binary-indep
+# in another 'make' thread.
+#
+binary-common:
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+	dh_installmenu
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress 
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture dependant packages using the common target.
+binary-arch: build-arch install-arch
+	$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
+
+binary-indep:
+
+binary: binary-arch binary-indep
+.PHONY: build clean binary-arch binary-indep binary install install-arch 


Property changes on: wavbreaker/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: wavbreaker/trunk/debian/wavbreaker.menu
===================================================================
--- wavbreaker/trunk/debian/wavbreaker.menu	2007-05-10 22:21:57 UTC (rev 1309)
+++ wavbreaker/trunk/debian/wavbreaker.menu	2007-05-10 22:22:10 UTC (rev 1310)
@@ -0,0 +1,2 @@
+?package(wavbreaker):needs="X11" section="Apps/Sound"\
+  title="wavbreaker" command="/usr/bin/wavbreaker"




More information about the Demudi-commits mailing list