]> granicus.if.org Git - docbook-dsssl/commitdiff
move release-related vars to separate makefile; thus reverting
authorMichael Smith <xmldoc@users.sourceforge.net>
Tue, 5 Apr 2005 13:47:23 +0000 (13:47 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Tue, 5 Apr 2005 13:47:23 +0000 (13:47 +0000)
this to what it was to begin with before I started messing around
with it...

cvstools/Makefile.incl

index 4e3561bf8777f0bca96288fbdf2f404b73746da0..de7819a4a6d07d667f8c04958e8cf8df9bfb6a45 100644 (file)
@@ -22,68 +22,3 @@ XSLT=$(CVSTOOLSROOT)/xslt
 XSLTOPT=
 XSLTPROC=
 RUNTRANG=$(CVSTOOLSROOT)/runtrang
-
-#-----------------------------------------------------------------
-#                VARIABLES FOR RELEASE BUILDS
-#-----------------------------------------------------------------
-# If you are doing normal (non-release) sandbox builds just for
-# your own use, you can ignore all the variables below. They are
-# used only when doing release builds.
-#-----------------------------------------------------------------
-
-# auto-determine distro (module) name based on directory name
-DISTRO=$(notdir $(shell pwd))
-
-# stylesheet for generating release notes
-DOC-LINK-STYLE=   $(DOCBOOK_CVS)/xsl/docsrc/doc-link-docbook.xsl
-# browser to use for making text version of release notes
-BROWSER=w3m
-BROWSER_OPTS=-dump
-
-# determine RELVER automatically by first figuring out if VERSION
-# file is an XSL stylesheet or not, and then grabbing the version
-# number from that file
-RELVER := $(shell \
- if [ -f VERSION ]; then \
-   if grep "<xsl:stylesheet" VERSION >/dev/null; then \
-     grep "Version>.\+<" VERSION \
-     | sed 's/^[^<]*<fm:Version>\(.\+\)<\/fm:Version>$$/\1/' \
-     | tr -d "\n"; \
-   else cat VERSION; \
-   fi \
- fi \
-)
-
-# the following are used to determine what version to compare to
-# in order to create the WhatsNew file
-NEXTVER=
-DIFFVER=
-
-# how to check to make sure working directory is up to date with CVS
-CVSCHECK = $(shell cvs -n update 2>&1 | grep -v ^cvs | cut -c3-)
-
-# remove dots from version number to create CVS tag
-TAGVER := $(shell echo "V$(RELVER)" | sed "s/\.//g")
-
-# stuff for "make zip", "make freshmeat", and "make install" targets
-TMP=/tmp
-# specifies options to feed to "freshmeat-submit"
-FMGO=-N
-# SFRELID specifies the Sourceforge release ID for the current
-# release. Before running "make freshmeat", you need to manually
-# create the new release at Sourceforge (via the SF web
-# interface), then copy down the release ID in the URI for the
-# release
-SFRELID=
-# specifies with FTP app to use for upload to SF incoming
-FTP=lftp
-FTP_OPTS=-e
-SCP=scp
-SCP_OPTS=
-SSH=ssh
-SSH_OPTS=
-SF_UPLOAD_HOST=upload.sf.net
-SF_UPLOAD_DIR=incoming
-PROJECT_HOST=docbook.sf.net
-RELEASE_DIR=/home/groups/d/do/docbook/htdocs/release
-PROJECT_USER:=`sed 's/^:.\+:\([^@]\+\)@.\+$$/\1/' CVS/Root`