[PD-cvs] abstractions Makefile, 1.11, 1.12 Makefile.buildlayout, 1.3, 1.4

Hans-Christoph Steiner eighthave at users.sourceforge.net
Tue Nov 22 00:01:56 CET 2005


Update of /cvsroot/pure-data/abstractions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7562

Modified Files:
	Makefile Makefile.buildlayout 
Log Message:
created Pd-0.38.4-extendedRC3.app release

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/abstractions/Makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Makefile	21 Nov 2005 16:26:19 -0000	1.11
--- Makefile	21 Nov 2005 23:01:54 -0000	1.12
***************
*** 191,195 ****
  		grep -v '\-help.pd')  $(OBJECTS_DEST)/$(PDDP_NAME)
  	$(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(PDDP_NAME) \
- 		--author "Hans-Christoph Steiner" \
  		--license "GNU GPL" \
  		--description "support objects for the Pure Data Documentation Project"
--- 191,194 ----
***************
*** 200,203 ****
--- 199,203 ----
  #	install -d $(APPLICATIONS_DEST)/$(PDDP_NAME)
  
+ 
  #-------------------------------------------------------------------------------
  # RRADical

Index: Makefile.buildlayout
===================================================================
RCS file: /cvsroot/pure-data/abstractions/Makefile.buildlayout,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile.buildlayout	21 Nov 2005 04:49:15 -0000	1.3
--- Makefile.buildlayout	21 Nov 2005 23:01:54 -0000	1.4
***************
*** 57,61 ****
  endif
  
- 
  #==============================================================================#
  #
--- 57,60 ----
***************
*** 116,119 ****
--- 115,143 ----
  #==============================================================================#
  #
+ # PD VERSION AND PACKAGE NAMING
+ #
+ #==============================================================================#
+ 
+ 
+ PD_MAJOR_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \
+ 	sed 's/char pd_version\[\] = "Pd version \([0-9]\)\.[0-9]*[. TES-]*[0-9]*[0-9extndRC.-]*\\n";/\1/')
+ PD_MINOR_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \
+ 	sed 's/char pd_version\[\] = "Pd version [0-9]\.\([0-9]*\)[. TES-]*\([0-9]*\)[0-9extndRC.-]*\\n";/\1/')
+ PD_BUGFIX_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \
+ 	sed 's/char pd_version\[\] = "Pd version [0-9]\.[0-9]*[. TES-]*\([0-9]*\)[0-9extndRC.-]*\\n";/\1/')
+ # the separators [.-] need to be the same as in s_main.c or the regexps break
+ PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION)
+ 
+ 
+ # release version for this distro
+ PACKAGE_VERSION = extended-RC3
+ PACKAGE_NAME = Pd-$(PD_VERSION)-$(PACKAGE_VERSION)
+ DMG_NAME = $(PACKAGE_NAME)
+ 
+ 
+ 
+ 
+ #==============================================================================#
+ #
  # CLEAN TARGETS
  #





More information about the Pd-cvs mailing list