[Demudi-commits] r694 - in dssi-vst/trunk/debian: . patches

Free Ekanayaka free-guest at costa.debian.org
Thu Feb 9 11:06:37 UTC 2006


Author: free-guest
Date: 2006-02-09 11:06:37 +0000 (Thu, 09 Feb 2006)
New Revision: 694

Added:
   dssi-vst/trunk/debian/patches/
   dssi-vst/trunk/debian/patches/Makefile.in.diff
   dssi-vst/trunk/debian/patches/errno.h.diff
Modified:
   dssi-vst/trunk/debian/changelog
   dssi-vst/trunk/debian/control
   dssi-vst/trunk/debian/dirs
   dssi-vst/trunk/debian/docs
   dssi-vst/trunk/debian/rules
   dssi-vst/trunk/debian/watch
Log:
* Fixed paths in Makefile
* Added missing errno.h include

Modified: dssi-vst/trunk/debian/changelog
===================================================================
--- dssi-vst/trunk/debian/changelog	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/changelog	2006-02-09 11:06:37 UTC (rev 694)
@@ -1,6 +1,8 @@
-dssi-vst (0.3.1-1) unstable; urgency=low
+dssi-vst (0.3.1-1) UNRELEASED; urgency=low
 
   * Initial release Closes: #nnnn  (nnnn is the bug number of your ITP)
+  * Fixed paths in Makefile
+  * Added missing errno.h include
 
  -- Free Ekanayaka <free at agnula.org>  Tue,  7 Feb 2006 19:47:40 +0100
 

Modified: dssi-vst/trunk/debian/control
===================================================================
--- dssi-vst/trunk/debian/control	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/control	2006-02-09 11:06:37 UTC (rev 694)
@@ -2,11 +2,11 @@
 Section: sound
 Priority: optional
 Maintainer: Free Ekanayaka <free at agnula.org>
-Build-Depends: cdbs, debhelper (>= 4.1.0), dpatch
+Build-Depends: cdbs, debhelper (>= 4.1.0), dpatch, vstsdk
 Standards-Version: 3.6.2
 
 Package: dssi-vst
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, vstsdk
 Description: <insert up to 60 chars description>
  <insert long description, indented with spaces>

Modified: dssi-vst/trunk/debian/dirs
===================================================================
--- dssi-vst/trunk/debian/dirs	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/dirs	2006-02-09 11:06:37 UTC (rev 694)
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin

Modified: dssi-vst/trunk/debian/docs
===================================================================
--- dssi-vst/trunk/debian/docs	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/docs	2006-02-09 11:06:37 UTC (rev 694)
@@ -1 +0,0 @@
-README

Added: dssi-vst/trunk/debian/patches/Makefile.in.diff
===================================================================
--- dssi-vst/trunk/debian/patches/Makefile.in.diff	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/patches/Makefile.in.diff	2006-02-09 11:06:37 UTC (rev 694)
@@ -0,0 +1,33 @@
+--- Makefile.in.orig	2006-02-09 12:25:44.529440608 -0500
++++ Makefile.in	2006-02-09 12:26:14.828834400 -0500
+@@ -1,8 +1,10 @@
+ 
+ ### Most commonly changed configuration variables
+ 
+-TARGET_DSSI_DIR       = /usr/local/lib/dssi
+-INCLUDE_PATH          = -I$(HOME)/vst/vstsdk2.3/source/common
++DESTDIR=
++
++TARGET_DSSI_DIR       = $(DESTDIR)/usr/lib/dssi
++INCLUDE_PATH          = -I/usr/include/vstsdk/source/common
+ 
+ 
+ ### Generic autoconf variables
+@@ -126,7 +128,7 @@
+ 	$(LDPATH) $(WINEBUILD) -o $@ --debug -C$(SRCDIR) $(dssi-vst-server_exe_C_SRCS) $(dssi-vst-server_exe_CXX_SRCS)
+ 
+ $(dssi-vst-server_exe_MODULE).spec.c: $(dssi-vst-server_exe_SPEC_SRCS) $(dssi-vst-server_exe_RC_SRCS:.rc=.res) $(dssi-vst-server_exe_OBJS)
+-	$(LDPATH) $(WINEBUILD) -fPIC -o $@ --exe $(dssi-vst-server_exe_MODULE) -m$(dssi-vst-server_exe_APPMODE) $(dssi-vst-server_exe_SPEC_SRCS:%=--spec %) $(dssi-vst-server_exe_RC_SRCS:%.rc=%.res) $(dssi-vst-server_exe_OBJS) $(dssi-vst-server_exe_DLL_PATH) $(WINE_DLL_PATH) $(GLOBAL_DLL_PATH) $(dssi-vst-server_exe_DLLS:%=-l%) $(GLOBAL_DLLS:%=-l%)
++	$(LDPATH) $(WINEBUILD) -fPIC -o $@ --exe -F $(dssi-vst-server_exe_MODULE) -m$(dssi-vst-server_exe_APPMODE) $(dssi-vst-server_exe_SPEC_SRCS:%=--spec %) $(dssi-vst-server_exe_RC_SRCS:%.rc=%.res) $(dssi-vst-server_exe_OBJS) $(dssi-vst-server_exe_DLL_PATH) $(WINE_DLL_PATH) $(GLOBAL_DLL_PATH) $(dssi-vst-server_exe_DLLS:%=-l%) $(GLOBAL_DLLS:%=-l%)
+ 
+ $(dssi-vst-server_exe_MODULE).so: $(dssi-vst-server_exe_MODULE).dbg.o $(dssi-vst-server_exe_MODULE).spec.o $(dssi-vst-server_exe_OBJS) $(dssi-vst-server_exe_DEPENDS)
+ 	$(LDXXSHARED) $(LDDLLFLAGS) -o $@ $(dssi-vst-server_exe_OBJS) $(dssi-vst-server_exe_MODULE).dbg.o $(dssi-vst-server_exe_MODULE).spec.o $(dssi-vst-server_exe_LIBRARY_PATH) $(ALL_LIBRARY_PATH) $(dssi-vst-server_exe_LIBRARIES:%=-l%) $(ALL_LIBRARIES) $(LIBS)
+@@ -137,7 +139,7 @@
+ 	$(LDPATH) $(WINEBUILD) -o $@ --debug -C$(SRCDIR) $(dssi-vst-scanner_exe_C_SRCS) $(dssi-vst-scanner_exe_CXX_SRCS)
+ 
+ $(dssi-vst-scanner_exe_MODULE).spec.c: $(dssi-vst-scanner_exe_SPEC_SRCS) $(dssi-vst-scanner_exe_RC_SRCS:.rc=.res) $(dssi-vst-scanner_exe_OBJS)
+-	$(LDPATH) $(WINEBUILD) -fPIC -o $@ --exe $(dssi-vst-scanner_exe_MODULE) -m$(dssi-vst-scanner_exe_APPMODE) $(dssi-vst-scanner_exe_SPEC_SRCS:%=--spec %) $(dssi-vst-scanner_exe_RC_SRCS:%.rc=%.res) $(dssi-vst-scanner_exe_OBJS) $(dssi-vst-scanner_exe_DLL_PATH) $(WINE_DLL_PATH) $(GLOBAL_DLL_PATH) $(dssi-vst-scanner_exe_DLLS:%=-l%) $(GLOBAL_DLLS:%=-l%)
++	$(LDPATH) $(WINEBUILD) -fPIC -o $@ --exe -F $(dssi-vst-scanner_exe_MODULE) -m$(dssi-vst-scanner_exe_APPMODE) $(dssi-vst-scanner_exe_SPEC_SRCS:%=--spec %) $(dssi-vst-scanner_exe_RC_SRCS:%.rc=%.res) $(dssi-vst-scanner_exe_OBJS) $(dssi-vst-scanner_exe_DLL_PATH) $(WINE_DLL_PATH) $(GLOBAL_DLL_PATH) $(dssi-vst-scanner_exe_DLLS:%=-l%) $(GLOBAL_DLLS:%=-l%)
+ 
+ $(dssi-vst-scanner_exe_MODULE).so: $(dssi-vst-scanner_exe_MODULE).dbg.o $(dssi-vst-scanner_exe_MODULE).spec.o $(dssi-vst-scanner_exe_OBJS) $(dssi-vst-scanner_exe_DEPENDS)
+ 	$(LDXXSHARED) $(LDDLLFLAGS) -o $@ $(dssi-vst-scanner_exe_OBJS) $(dssi-vst-scanner_exe_MODULE).dbg.o $(dssi-vst-scanner_exe_MODULE).spec.o $(dssi-vst-scanner_exe_LIBRARY_PATH) $(ALL_LIBRARY_PATH) $(dssi-vst-scanner_exe_LIBRARIES:%=-l%) $(ALL_LIBRARIES) $(LIBS)

Added: dssi-vst/trunk/debian/patches/errno.h.diff
===================================================================
--- dssi-vst/trunk/debian/patches/errno.h.diff	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/patches/errno.h.diff	2006-02-09 11:06:37 UTC (rev 694)
@@ -0,0 +1,10 @@
+--- remotevstclient.cpp.orig	2006-02-09 12:21:17.716002416 -0500
++++ remotevstclient.cpp	2006-02-09 12:21:41.123443944 -0500
+@@ -16,6 +16,7 @@
+ #include <unistd.h>
+ #include <sys/types.h>
+ #include <sys/wait.h>
++#include <errno.h>
+ 
+ #include "rdwrops.h"
+ #include "paths.h"

Modified: dssi-vst/trunk/debian/rules
===================================================================
--- dssi-vst/trunk/debian/rules	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/rules	2006-02-09 11:06:37 UTC (rev 694)
@@ -6,9 +6,8 @@
 DEB_AUTO_CLEANUP_RCS            := yes
 
 # Add here any variable or target overrides you need
-
-  
-include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
+ 
 include /usr/share/cdbs/1/rules/tarball.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
 include /usr/share/cdbs/1/rules/simple-patchsys.mk

Modified: dssi-vst/trunk/debian/watch
===================================================================
--- dssi-vst/trunk/debian/watch	2006-02-09 11:00:52 UTC (rev 693)
+++ dssi-vst/trunk/debian/watch	2006-02-09 11:06:37 UTC (rev 694)
@@ -1,3 +1,3 @@
 # Site		Directory	Pattern		Version	Script
 version=3
-ftp://heanet.dl.sourceforge.net/d/ds/dssi/dssi-vst-(.*)\.tar\.tar.gz	debian	uupdate
+http://heanet.dl.sourceforge.net/d/ds/dssi/ dssi-vst-(.*)\.tar\.gz debian uupdate




More information about the Demudi-commits mailing list