From 22568919e9bdf29557be5aa3c69857d815a93751 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 29 Oct 2009 22:00:30 -0400 Subject: rework rvs's build system, currently, it doesn't build :( it fails on the plugins, the wrapper works fine --- rvs/plugins/Makefile | 42 ---------------------- rvs/plugins/filedata/info.mk | 2 -- rvs/plugins/filedata/info.mk.in | 2 ++ rvs/plugins/files/info.mk | 2 -- rvs/plugins/files/info.mk.in | 2 ++ rvs/plugins/main.mk.in | 71 ++++++++---------------------------- rvs/plugins/plugin.mk.in | 79 +++++++++++++++++++++++++++++++++++++++++ rvs/plugins/users/info.mk | 2 -- rvs/plugins/users/info.mk.in | 2 ++ 9 files changed, 100 insertions(+), 104 deletions(-) delete mode 100644 rvs/plugins/Makefile delete mode 100644 rvs/plugins/filedata/info.mk create mode 100644 rvs/plugins/filedata/info.mk.in delete mode 100644 rvs/plugins/files/info.mk create mode 100644 rvs/plugins/files/info.mk.in create mode 100644 rvs/plugins/plugin.mk.in delete mode 100644 rvs/plugins/users/info.mk create mode 100644 rvs/plugins/users/info.mk.in (limited to 'rvs/plugins') diff --git a/rvs/plugins/Makefile b/rvs/plugins/Makefile deleted file mode 100644 index 53ebc17..0000000 --- a/rvs/plugins/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/make -f -name=rvs plugins -#version='1.0' -# Copyright (C) 2009 Luke Shumaker -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; see the file COPYING. -# If not, see . - -# programs -SHELL = /bin/sh - -# variables -mods = $(patsubst ./%,%,$(shell find ./* -maxdepth 0 -type d)) - -.PHONY : all -all : build - -.PHONY : install build -install : $(addprefix install-,$(mods)) -build : $(addprefix build-,$(mods)) - -.SECONDARY: - -%/main.mk : main.mk %/; cp $< $@ - -complete-% : %/ %/main.mk -build-% : %/ complete-% %/main.mk; $(MAKE) -C $< -install-% : %/ complete-% %/main.mk; $(MAKE) -C $< install -clean-% : %/ complete-% %/main.mk; $(MAKE) -C $< clean -distclean-% : %/ complete-% %/main.mk; $(MAKE) -C $< distclean - diff --git a/rvs/plugins/filedata/info.mk b/rvs/plugins/filedata/info.mk deleted file mode 100644 index 77643cd..0000000 --- a/rvs/plugins/filedata/info.mk +++ /dev/null @@ -1,2 +0,0 @@ -name = filedata -ver = 0.9 diff --git a/rvs/plugins/filedata/info.mk.in b/rvs/plugins/filedata/info.mk.in new file mode 100644 index 0000000..77643cd --- /dev/null +++ b/rvs/plugins/filedata/info.mk.in @@ -0,0 +1,2 @@ +name = filedata +ver = 0.9 diff --git a/rvs/plugins/files/info.mk b/rvs/plugins/files/info.mk deleted file mode 100644 index d7ccb97..0000000 --- a/rvs/plugins/files/info.mk +++ /dev/null @@ -1,2 +0,0 @@ -name = files -ver = 0.9 diff --git a/rvs/plugins/files/info.mk.in b/rvs/plugins/files/info.mk.in new file mode 100644 index 0000000..d7ccb97 --- /dev/null +++ b/rvs/plugins/files/info.mk.in @@ -0,0 +1,2 @@ +name = files +ver = 0.9 diff --git a/rvs/plugins/main.mk.in b/rvs/plugins/main.mk.in index ed5dca8..8ffa1d7 100644 --- a/rvs/plugins/main.mk.in +++ b/rvs/plugins/main.mk.in @@ -1,7 +1,6 @@ #!/usr/bin/make -f -#name=rvs plugin Makefile -#ver=0.9 -include info.mk # this contains the actuall name/version for the plugin +#name=rvs plugins +#version='1.0' # Copyright (C) 2009 Luke Shumaker # # This program is free software; you can redistribute it and/or @@ -18,62 +17,22 @@ include info.mk # this contains the actuall name/version for the plugin # along with this program; see the file COPYING. # If not, see . -rvs = @name@ -id = $(name)-$(ver) +mods = $(patsubst ./%,%,$(shell find ./* -maxdepth 0 -type d)) -# phony targets #################################################### -all : $(name) -.PHONY : $(name) install uninstall clean distclean dist -.SUFFIXES : +.PHONY : all +all : build -# build ############################################################ -mysrcdir = $(srcdir)/plugins/$(name) -myoutdir = out +.PHONY : install build +install : $(addprefix install-,$(mods)) +build : $(addprefix build-,$(mods)) -srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f)) +.SECONDARY: -shSrcFiles = $(filter %.sh,$(srcFiles)) -shOutFiles = $(patsubst $(mysrcdir)/%,$(myoutdir)/%,$(basename $(shSrcFiles))) +%/main.mk : plugin.mk %/; cp $< $@ -$(name) : $(myoutdir) $(shOutFiles) $(myoutdir)/plugin.conf - -$(myoutdir)/plugin.conf : $(mysrcdir)/plugin.conf - $(INSTALL_DATA) $< $@ - -# (un)install ###################################################### - -install : all - $(RVS) install $(name)-$(ver) $(myoutdir) - -uninstall : - $(RVS) uninstall $(name) - -# clean ############################################################ - -clean : - -distclean : clean - $(RM) Makefile - $(RM) -r out - -# implicit rules ################################################### - -b := @ -# build shell scripts -$(myoutdir)/% : $(mysrcdir)/%.sh $(myoutdir) - $(INSTALL_PROGRAM) $< $@ - $(SED) -i \ - -e 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' \ - -e 's/$blibexecdir@/$(subst /,\/,$(libexecdir))/g' \ - -e 's/$bID@/$(subst /,\/,$(id))/g' \ - $@ - -plugin.conf : plugin.conf.in - $(SED) \ - -e 's/$bname@/$(subst /,\/,$(name))/g' \ - -e 's/$bver@/$(subst /,\/,$(ver))/g' \ - $< > $@ - -$(DESTDIR)$(libexecdir)/$(rvs) $(myoutdir) : - $(MKDIR) $@ +complete-% : %/ %/main.mk +build-% : %/ complete-% %/main.mk; $(MAKE) -C $< +install-% : %/ complete-% %/main.mk; $(MAKE) -C $< install +clean-% : %/ complete-% %/main.mk; $(MAKE) -C $< clean +distclean-% : %/ complete-% %/main.mk; $(MAKE) -C $< distclean diff --git a/rvs/plugins/plugin.mk.in b/rvs/plugins/plugin.mk.in new file mode 100644 index 0000000..ed5dca8 --- /dev/null +++ b/rvs/plugins/plugin.mk.in @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +#name=rvs plugin Makefile +#ver=0.9 +include info.mk # this contains the actuall name/version for the plugin +# Copyright (C) 2009 Luke Shumaker +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING. +# If not, see . + +rvs = @name@ +id = $(name)-$(ver) + +# phony targets #################################################### +all : $(name) +.PHONY : $(name) install uninstall clean distclean dist +.SUFFIXES : + +# build ############################################################ +mysrcdir = $(srcdir)/plugins/$(name) +myoutdir = out + +srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f)) + +shSrcFiles = $(filter %.sh,$(srcFiles)) +shOutFiles = $(patsubst $(mysrcdir)/%,$(myoutdir)/%,$(basename $(shSrcFiles))) + +$(name) : $(myoutdir) $(shOutFiles) $(myoutdir)/plugin.conf + +$(myoutdir)/plugin.conf : $(mysrcdir)/plugin.conf + $(INSTALL_DATA) $< $@ + +# (un)install ###################################################### + +install : all + $(RVS) install $(name)-$(ver) $(myoutdir) + +uninstall : + $(RVS) uninstall $(name) + +# clean ############################################################ + +clean : + +distclean : clean + $(RM) Makefile + $(RM) -r out + +# implicit rules ################################################### + +b := @ +# build shell scripts +$(myoutdir)/% : $(mysrcdir)/%.sh $(myoutdir) + $(INSTALL_PROGRAM) $< $@ + $(SED) -i \ + -e 's/$bSHELL@/$(subst /,\/,$(SHELL))/g' \ + -e 's/$blibexecdir@/$(subst /,\/,$(libexecdir))/g' \ + -e 's/$bID@/$(subst /,\/,$(id))/g' \ + $@ + +plugin.conf : plugin.conf.in + $(SED) \ + -e 's/$bname@/$(subst /,\/,$(name))/g' \ + -e 's/$bver@/$(subst /,\/,$(ver))/g' \ + $< > $@ + +$(DESTDIR)$(libexecdir)/$(rvs) $(myoutdir) : + $(MKDIR) $@ + diff --git a/rvs/plugins/users/info.mk b/rvs/plugins/users/info.mk deleted file mode 100644 index 8289128..0000000 --- a/rvs/plugins/users/info.mk +++ /dev/null @@ -1,2 +0,0 @@ -name = users -ver = 0.9 diff --git a/rvs/plugins/users/info.mk.in b/rvs/plugins/users/info.mk.in new file mode 100644 index 0000000..8289128 --- /dev/null +++ b/rvs/plugins/users/info.mk.in @@ -0,0 +1,2 @@ +name = users +ver = 0.9 -- cgit v1.2.3-54-g00ecf