diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2007-03-30 16:50:04 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2007-03-30 16:50:04 +0000 |
commit | 44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573 (patch) | |
tree | d9c6ea973381437071e67361a26b19a92969b4be /trunk/Makefile | |
parent | efda78d9da13ea30ded443b5e53b60023466b90c (diff) | |
download | common-data-44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573.tar common-data-44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573.tar.gz common-data-44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573.tar.bz2 common-data-44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573.tar.xz common-data-44b5f83a6dcd9d5b69478ccf5daf7c6d349f2573.zip |
V2007_1_9mdv
Diffstat (limited to 'trunk/Makefile')
-rw-r--r-- | trunk/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/trunk/Makefile b/trunk/Makefile new file mode 100644 index 0000000..f9c048a --- /dev/null +++ b/trunk/Makefile @@ -0,0 +1,50 @@ +PACKAGE = desktop-common-data +NAME = desktop-common-data +TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__') +mandir=/usr/share/man +SVNROOT = svn+ssh://svn.mandriva.com/svn/soft/$(PACKAGE) + +checktag: + @if [ "x$(VERSION)" == "x" -o "x$(RELEASE)" = "x" ]; then \ + echo usage is "make VERSION=version_number RELEASE=release_number dist" ; \ + exit 1 ; \ + fi + +clean: + find . -type d -name '.xvpics' -o -name '*~' |xargs rm -rf + +# rules to build a test rpm + +localdist: cleandist dir localcopy tar + +cleandist: checktag + rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2 + +dir: checktag + mkdir $(PACKAGE)-$(VERSION) + +localcopy: checktag + find . -not -name "$(PACKAGE)-$(VERSION)"|cpio -pd $(PACKAGE)-$(VERSION)/ + find $(PACKAGE)-$(VERSION) -type d -name CVS -o -name .cvsignore -name '*~' -o name '.svn' |xargs rm -rf + +tar: checktag + tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION) + bzip2 -9vf $(PACKAGE)-$(VERSION).tar + rm -rf $(PACKAGE)-$(VERSION) + +# rules to build a distributable rpm + +dist: checktag cleandist svntag export tar + + +export: checktag + svn export $(SVNROOT)/tags/$(TAG) $(PACKAGE)-$(VERSION) + +svntag: checktag + svn copy $(SVNROOT)/trunk $(SVNROOT)/tags/$(TAG) -m "$(TAG)" + +changelog: ../common/username +#svn2cl is available in our contrib. + svn2cl --authors ../common/username.xml --accum + rm -f ChangeLog.bak + svn commit -m "Generated by svn2cl the `date '+%c'`" ChangeLog |