diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2010-10-30 07:42:51 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2010-10-30 07:42:51 +0000 |
| commit | 7f6401f990026d73f2a5edcc8d9fdf22882c4518 (patch) | |
| tree | b0c7f68f7228b2c1520ac2293289e28643431433 /skins | |
| parent | 66c20453851876c3747b787ce0598e0650486626 (diff) | |
| download | xxv-7f6401f990026d73f2a5edcc8d9fdf22882c4518.tar.gz xxv-7f6401f990026d73f2a5edcc8d9fdf22882c4518.tar.bz2 | |
* Release XXV-1.6.1
Diffstat (limited to 'skins')
| -rw-r--r-- | skins/Makefile | 2 | ||||
| -rw-r--r-- | skins/jason/Makefile | 72 | ||||
| -rw-r--r-- | skins/stone/Makefile | 2 | ||||
| -rw-r--r-- | skins/xstyle/Makefile | 2 |
4 files changed, 75 insertions, 3 deletions
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: |
