summaryrefslogtreecommitdiffstats
path: root/perl-install/Makefile
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2002-06-18 21:37:38 +0000
committerFrederic Lepied <flepied@mandriva.com>2002-06-18 21:37:38 +0000
commit5e05057e40c6a049f9e0fb9c4d152984752dd1ee (patch)
tree833c687431285fc6039e1c92985e59bd87456746 /perl-install/Makefile
parent9a9ee245a914123f18d5141b3520d7e008d6cdc9 (diff)
downloaddrakx-backup-do-not-use-5e05057e40c6a049f9e0fb9c4d152984752dd1ee.tar
drakx-backup-do-not-use-5e05057e40c6a049f9e0fb9c4d152984752dd1ee.tar.gz
drakx-backup-do-not-use-5e05057e40c6a049f9e0fb9c4d152984752dd1ee.tar.bz2
drakx-backup-do-not-use-5e05057e40c6a049f9e0fb9c4d152984752dd1ee.tar.xz
drakx-backup-do-not-use-5e05057e40c6a049f9e0fb9c4d152984752dd1ee.zip
added targets to build test and distribution rpms and srpms (localrpm,
localsrpm, rpm, srpm).
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r--perl-install/Makefile56
1 files changed, 49 insertions, 7 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile
index 0704e3367..cdfd3b0ae 100644
--- a/perl-install/Makefile
+++ b/perl-install/Makefile
@@ -1,3 +1,8 @@
+PACKAGE=drakxtools
+PKGVERSION:=$(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec|head -1)
+RELEASE:=$(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec|head -1)
+TAG := $(shell echo "V$(PKGVERSION)_$(RELEASE)" | tr -- '-.' '__')
+
include Makefile.config
POFILES = $(shell ls share/po/*.po)
@@ -20,15 +25,15 @@ check:
perl -I. -Mlang -e 'lang::check'
perl -I. -Mkeyboard -e 'keyboard::check'
-tar-drakxtools: clean
+localcopy: clean
rm -rf standalone/pixmaps
$(MAKE) -C ../tools clean
- cd .. ; rm -rf drakxtools ; cp -af perl-install drakxtools ; cp -af tools/rpcinfo-flushed.c tools/ddcprobe tools/serial_probe drakxtools
- cd ../drakxtools ; perl -pi -e 's/^C_RPM.*/C_RPM=0/; s/^C_DRAKX.*/C_DRAKX=0/' c/Makefile
- cd ../drakxtools ; perl -pi -e 's/^all: help/all:/' share/po/Makefile
- cd ../drakxtools ; rm -rf install* pkgs.pm help.pm ftp.pm http.pm crypto.pm t.pm */CVS ; mv Makefile.drakxtools Makefile
- cd .. ; tar cfj drakxtools.tar.bz2 --exclude CVS $(patsubst %,drakxtools/%,Makefile Makefile.config Newt diskdrake c ddcprobe serial_probe share/po sbus_probing resize_fat share/diskdrake.rc share/wizard.rc $(STANDALONEPMS) standalone/icons pixmaps network standalone/interactive_http rpcinfo-flushed.c *.pm security)
- cd .. ; rm -rf drakxtools
+ cd .. ; rm -rf $(PACKAGE)-$(PKGVERSION) ; cp -af perl-install $(PACKAGE)-$(PKGVERSION) ; cp -af tools/rpcinfo-flushed.c tools/ddcprobe tools/serial_probe $(PACKAGE)-$(PKGVERSION)
+ cd ../$(PACKAGE)-$(PKGVERSION) ; perl -pi -e 's/^C_RPM.*/C_RPM=0/; s/^C_DRAKX.*/C_DRAKX=0/' c/Makefile
+ cd ../$(PACKAGE)-$(PKGVERSION) ; perl -pi -e 's/^all: help/all:/' share/po/Makefile
+ cd ../$(PACKAGE)-$(PKGVERSION) ; rm -rf install* pkgs.pm help.pm ftp.pm http.pm crypto.pm t.pm */CVS ; mv Makefile.drakxtools Makefile
+ cd .. ; tar cfj $(PACKAGE)-$(PKGVERSION).tar.bz2 --exclude CVS $(patsubst %,$(PACKAGE)-$(PKGVERSION)/%,Makefile Makefile.config Newt apps.net_monitor diskdrake c ddcprobe drakxtools.spec pam.net_monitor serial_probe share/po sbus_probing resize_fat share/diskdrake.rc share/wizard.rc $(STANDALONEPMS) standalone/icons pixmaps network standalone/interactive_http rpcinfo-flushed.c *.pm security)
+ cd .. ; rm -rf $(PACKAGE)-$(PKGVERSION)
$(DIRS):
install -d auto
@@ -181,3 +186,40 @@ full_stage2:
stage2:
$(MAKE) install_pms
$(ROOTDEST)/misc/make_mdkinst_stage2 $(DEST) $(ROOTDEST)/Mandrake/base/mdkinst_stage2
+
+# rules to build a test rpm
+
+localrpm: localdist buildrpm
+
+localsrpm: localdist buildsrpm
+
+localdist: cleandist localcopy
+
+cleandist:
+ rm -rf ../$(PACKAGE)-$(PKGVERSION) ../$(PACKAGE)-$(PKGVERSION).tar.bz2
+
+tar:
+ tar cvf ../$(PACKAGE)-$(PKGVERSION).tar ../$(PACKAGE)-$(PKGVERSION)
+ bzip2 -9vf ../$(PACKAGE)-$(PKGVERSION).tar
+ rm -rf ../$(PACKAGE)-$(PKGVERSION)
+
+buildrpm:
+ rpm -ta ../$(PACKAGE)-$(PKGVERSION).tar.bz2
+
+buildsrpm:
+ rpm -ts ../$(PACKAGE)-$(PKGVERSION).tar.bz2
+
+# rules to build a distributable rpm
+
+rpm: cvstag dist buildrpm
+
+srpm: cvstag dist buildsrpm
+
+dist: cleandist export tar
+
+export:
+ cd ..; cvs export -d $(PACKAGE)-$(PKGVERSION) -r $(TAG) $(PACKAGE)
+
+cvstag:
+ cvs tag $(CVSTAGOPT) $(TAG)
+