From 7f6401f990026d73f2a5edcc8d9fdf22882c4518 Mon Sep 17 00:00:00 2001 From: Andreas Brachold Date: Sat, 30 Oct 2010 07:42:51 +0000 Subject: * Release XXV-1.6.1 --- skins/Makefile | 2 +- skins/jason/Makefile | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++ skins/stone/Makefile | 2 +- skins/xstyle/Makefile | 2 +- 4 files changed, 75 insertions(+), 3 deletions(-) create mode 100644 skins/jason/Makefile diff --git a/skins/Makefile b/skins/Makefile index cedd02a..11eb905 100644 --- a/skins/Makefile +++ b/skins/Makefile @@ -3,7 +3,7 @@ # # $Id$ -VERSION = 1.6 +VERSION = 1.6.1 ARCHIVE = skins PACKAGE = xxv-$(ARCHIVE)-$(VERSION) diff --git a/skins/jason/Makefile b/skins/jason/Makefile new file mode 100644 index 0000000..d40572d --- /dev/null +++ b/skins/jason/Makefile @@ -0,0 +1,72 @@ +# +# jason - Javascript based skin for xxv +# Copyright(c) 2008-2010, anbr +# +# http://xxv.berlios.de/ +# +# $Id$ +# + +include files.lst + +#all.js: $(FILES) +# cat $(FILES) > all.tmp + +#alljs: all.js +# java -jar ./temp/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --line-break 80 --nomunge --type js all.tmp > all.js + + +SKIN = $(shell basename `pwd`) +VERSION = 1.6.1 + +### The name of the distribution archive: + +ARCHIVE = $(SKIN) +PACKAGE = xxv-$(ARCHIVE)-$(VERSION) +TMPDIR = /tmp + +### Targets: + +all: dist + +dist: clean preparepkg copy removedevel postpkg + @tar czfh ../$(PACKAGE).tgz --exclude=.svn -C $(TMPDIR) $(ARCHIVE) + @echo Distribution package created as $(PACKAGE).tgz + @-rm -rf $(TMPDIR)/$(ARCHIVE) + +preparepkg: + @-rm -rf $(TMPDIR)/$(ARCHIVE) + +copy: + @svn export . $(TMPDIR)/$(ARCHIVE) + +full: clean preparepkg copy removedevel postpkg + +devel: clean preparepkg copy postpkg + +removedevel: + @-rm -f $(TMPDIR)/$(ARCHIVE)/Makefile + @-rm -rf $(TMPDIR)/$(ARCHIVE)/artwork + +postpkg: + @find $(TMPDIR)/$(ARCHIVE) -type d -exec chmod 755 {} \; + @find $(TMPDIR)/$(ARCHIVE) -type f -exec chmod 644 {} \; + @chown root.root -R $(TMPDIR)/$(ARCHIVE)/* + + +backup: clean + @-rm -rf $(TMPDIR)/$(ARCHIVE) + @mkdir -p $(TMPDIR)/$(ARCHIVE) + @cp -a * $(TMPDIR)/$(ARCHIVE) + @-rm -f $(TMPDIR)/$(ARCHIVE)/xxv-$(ARCHIVE)-*.tgz + @find $(TMPDIR)/$(ARCHIVE) -type d -exec chmod 755 {} \; + @find $(TMPDIR)/$(ARCHIVE) -type f -exec chmod 644 {} \; + @chown root.root -R $(TMPDIR)/$(ARCHIVE)/* + @tar czf ../$(PACKAGE).tgz --exclude=.svn -C $(TMPDIR) $(ARCHIVE) + @-rm -rf $(TMPDIR)/$(ARCHIVE) + @echo Backup package created as $(PACKAGE).tgz + +clean: + @-find -name "*~" -print -exec rm -f {} \; + @-rm -f *~ all.tmp all.js + @-rm -f $(PACKAGE).tgz diff --git a/skins/stone/Makefile b/skins/stone/Makefile index 7323d28..75da3db 100644 --- a/skins/stone/Makefile +++ b/skins/stone/Makefile @@ -4,7 +4,7 @@ # $Id$ SKIN = $(shell basename `pwd`) -VERSION = 1.6 +VERSION = 1.6.1 ### The name of the distribution archive: diff --git a/skins/xstyle/Makefile b/skins/xstyle/Makefile index d745a98..565f71b 100644 --- a/skins/xstyle/Makefile +++ b/skins/xstyle/Makefile @@ -4,7 +4,7 @@ # $Id$ SKIN = xstyle -VERSION = 1.6 +VERSION = 1.6.1 ### The name of the distribution archive: -- cgit v1.2.3