[Demudi-commits] r719 - in fst/trunk: . debian

Free Ekanayaka free-guest at costa.debian.org
Sat Mar 4 10:38:59 UTC 2006


Author: free-guest
Date: 2006-03-04 10:38:58 +0000 (Sat, 04 Mar 2006)
New Revision: 719

Added:
   fst/trunk/debian/
   fst/trunk/debian/changelog
   fst/trunk/debian/compat
   fst/trunk/debian/control
   fst/trunk/debian/copyright
   fst/trunk/debian/dirs
   fst/trunk/debian/docs
   fst/trunk/debian/menu
   fst/trunk/debian/rules
   fst/trunk/debian/watch
Log:
Load newtrunk into fst/trunk.


Added: fst/trunk/debian/changelog
===================================================================
--- fst/trunk/debian/changelog	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/changelog	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,6 @@
+fst (1.7-0) unstable; urgency=low
+
+  * Initial release Closes: #nnnn  (nnnn is the bug number of your ITP)
+
+ -- Free Ekanayaka <free at agnula.org>  Sat,  4 Mar 2006 13:45:45 -0500
+

Added: fst/trunk/debian/compat
===================================================================
--- fst/trunk/debian/compat	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/compat	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1 @@
+4

Added: fst/trunk/debian/control
===================================================================
--- fst/trunk/debian/control	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/control	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,12 @@
+Source: fst
+Section: sound
+Priority: optional
+Maintainer: Free Ekanayaka <free at agnula.org>
+Build-Depends: debhelper (>= 4.0.0), dpatch, vstsdk, libjack-dev
+Standards-Version: 3.6.2
+
+Package: fst
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>

Added: fst/trunk/debian/copyright
===================================================================
--- fst/trunk/debian/copyright	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/copyright	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,26 @@
+This package was debianized by Free Ekanayaka <free at agnula.org> on
+Sat,  4 Mar 2006 13:45:45 -0500.
+
+It was downloaded from http://galan.sf.net/fst-1.7.tar.gz
+
+Copyright Holder: Torben Hohn <torbenh at users.sourceforge.net>
+
+License:
+
+   This package 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 package 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 package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+

Added: fst/trunk/debian/dirs
===================================================================
--- fst/trunk/debian/dirs	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/dirs	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1 @@
+usr/bin

Added: fst/trunk/debian/docs
===================================================================
--- fst/trunk/debian/docs	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/docs	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1 @@
+README

Added: fst/trunk/debian/menu
===================================================================
--- fst/trunk/debian/menu	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/menu	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,2 @@
+?package(fst):needs="X11" section="Apps/Sound
+  title="fst" command="/usr/bin/fst"

Added: fst/trunk/debian/rules
===================================================================
--- fst/trunk/debian/rules	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/rules	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,99 @@
+#!/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
+
+include /usr/share/dpatch/dpatch.make
+
+
+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: patch-stamp configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	ln -s /usr/include/vstsdk vstsdk2.3
+	$(MAKE)
+	#docbook-to-man debian/fst.sgml > fst.1
+
+	touch build-stamp
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+	-rm vstsdk2.3
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/fst.
+	cp fst fst.exe.so $(CURDIR)/debian/fst/usr/bin
+
+# 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_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+#	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


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

Added: fst/trunk/debian/watch
===================================================================
--- fst/trunk/debian/watch	2006-03-04 10:38:32 UTC (rev 718)
+++ fst/trunk/debian/watch	2006-03-04 10:38:58 UTC (rev 719)
@@ -0,0 +1,3 @@
+# Site		Directory	Pattern		Version	Script
+version=3
+http://galan.sf.net/fst-(.*)\.tar\.tar.gz	debian	uupdate




More information about the Demudi-commits mailing list