Subversion Repositories prayer

Compare Revisions

Ignore whitespace Rev 103 → Rev 104

/trunk/debian/changelog
10,8 → 10,10
* Add symlinks so that template_set = xhtml_strict will still work.
* Update the names of the directories for locally modified templates
(under /etc/prayer/templates) to reflect the new template names.
* template_sdk.patch (new): Create makefile for building template set
libraries. Install it together with binaries and scripts needed.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 25 Oct 2009 18:50:51 +0100
-- Magnus Holmgren <holmgren@debian.org> Sun, 25 Oct 2009 19:10:40 +0100
 
prayer (1.3.2-dfsg1-1) unstable; urgency=low
 
/trunk/debian/patches/series
5,3 → 5,4
dlopen_templates.patch
unbrand_cam_template.patch
manpage_error.patch
template_sdk.patch
/trunk/debian/patches/template_sdk.patch
0,0 → 1,157
--- a/templates/src/Makefile
+++ b/templates/src/Makefile
@@ -11,7 +11,7 @@ LDFLAGS = $(BASELDFLAGS)
LIB= ../../lib/lib_nossl.a $(BASE_LIBS)
-all: template_expand template_compile
+all: template_expand template_compile template-set.make
template_expand: template_expand_main.o log.o empty.o $(LIB)
$(CC) $(LDFLAGS) -o template_expand log.o empty.o template_expand_main.o $(LIB)
@@ -19,10 +19,28 @@ template_expand: template_expand_main.o
template_compile: template_compile_main.o log.o empty.o $(LIB)
$(CC) $(LDFLAGS) -o template_compile log.o empty.o template_compile_main.o $(LIB)
+template-set.make: template-set.make.in
+ find_templates () { sed -rn 's/.*template_expand\("([^"]*)".*/\1/p' "$$@" | sort -u; };\
+ format_variable () { (echo $$1 '='; shift; echo -n ' '$$@) | fmt -c | sed '$$!s/$$/ \\/'; };\
+ (echo include $(PREFIX)/config.make; echo;\
+ format_variable TEMPLATES `find_templates ../../cmd/cmd_*`; echo;\
+ format_variable TEMPLATES_FRONTEND login `find_templates ../../servers/prayer*`; echo;\
+ cat template-set.make.in) > template-set.make
+
%.o: %.c Makefile
$(CC) $(CFLAGS) -I../../lib -c $<
install:
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_DIR) \
+ -d $(BROOT)$(LIB_PREFIX) $(BROOT)$(PREFIX) $(BROOT)/usr/include/prayer
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_EXEC) \
+ template_compile template_expand build_index.pl makedeps.pl ${BROOT}${LIB_PREFIX}
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_FILE) \
+ ../../lib/*.h ${BROOT}/usr/include/prayer
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_FILE) \
+ template-set.make ${BROOT}$(PREFIX)
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_FILE) \
+ ../../Config ${BROOT}$(PREFIX)/config.make
clean:
rm -f template_expand template_compile *.o *~ \#*\#
--- /dev/null
+++ b/templates/src/makedeps.pl
@@ -0,0 +1,45 @@
+#!/usr/bin/perl
+#
+# Generate proper list of dependancies between templates
+
+my %index = ();
+my %uses = ();
+
+sub scan {
+ my ($file) = @_;
+
+ if (!exists $uses{$file}) {
+ grep {
+ $_ ne '' and open(FILE, '<', "$_/${file}.t")
+ } '.', split(/ :/, $ENV{'VPATH'} || '')
+ or die "failed to open ${file}: $!\n";
+ while (<FILE>) {
+ $uses{$file}{$1} = 1 if /^%\s+CALL ([\w-_]+)/;
+ }
+ close(FILE);
+
+ foreach (keys %{$uses{$file}}) {
+ $uses{$file}{$_} = 1 foreach keys %{scan($_)};
+ }
+ $uses{$file}{$file} = 1;
+ $index{$file} = 1;
+ }
+ return $uses{$file}
+}
+
+my $suffix = '';
+if ($ARGV[0] eq '--frontend') {
+ shift;
+ $suffix = '_frontend';
+}
+my $name = shift;
+
+$, = ' '; $\ = "\n";
+foreach my $i (@ARGV) {
+ $i =~ s/([\w-_]+)\.t/$1/;
+ print "$i.html:", map {"$_.t"} sort keys %{scan($i)};
+}
+
+my @all = sort keys %index;
+print "_template_index$suffix.c:", map {"$_.t"} @all;
+print "$name$suffix.so:", "_template_index$suffix.o", map {"$_.o"} @all;
--- /dev/null
+++ b/templates/src/template-set.make.in
@@ -0,0 +1,66 @@
+ifndef NAME
+NAME := $(notdir $(CURDIR))
+endif
+
+CPPFLAGS = -I/usr/include/prayer
+LDFLAGS_TEMPLATELIB = -shared \
+ -Wl,--defsym=template_map=template_map_$(NAME) \
+ -Wl,--defsym=template_map_count=template_map_$(NAME)_count
+
+EXPAND = $(LIB_PREFIX)/template_expand
+COMPILE = $(LIB_PREFIX)/template_compile
+MKINDEX = $(LIB_PREFIX)/build_index.pl
+MKDEPS = $(LIB_PREFIX)/makedeps.pl
+
+SESSION_LIB = $(NAME)$(SHLIBEXT)
+FRONTEND_LIB = $(NAME)_frontend$(SHLIBEXT)
+TEMPLATE_LIBS ?= $(SESSION_LIB) $(FRONTEND_LIB)
+TARGETS ?= $(TEMPLATE_LIBS)
+
+VARS=$(filter-out common.vars,$(wildcard *.vars))
+HTML=$(VARS:.vars=.html)
+
+all: $(TARGETS)
+
+$(TEMPLATE_LIBS):
+ $(CC) $(LDFLAGS) $(LDFLAGS_TEMPLATELIB) -o $@ $^
+
+_template_index.c _template_index_frontend.c:
+ $(MKINDEX) $(NAME) $(^F) > $@
+
+%.c: %.t
+ $(COMPILE) $(NAME) $@ $(basename $<)
+
+install-sources:
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_DIR) \
+ -d $(DESTDIR)$(PREFIX)/templates/$(NAME)
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_FILE) \
+ *.t *.vars $(DESTDIR)$(PREFIX)/templates/$(NAME)
+
+install-libs: $(TEMPLATE_LIBS)
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_DIR) \
+ -d $(DESTDIR)$(LIB_PREFIX)/templates
+ $(INSTALL) -o $(RO_USER) -g $(RO_GROUP) -m $(PUBLIC_FILE) \
+ $(TEMPLATE_LIBS) $(DESTDIR)$(LIB_PREFIX)/templates/
+
+clean:
+ rm -f $(TARGETS) *.html *.o *.c
+distclean: clean
+ rm -f *.d
+
+test: $(HTML)
+
+%.html: %.t %.vars common.vars
+ $(EXPAND) $@ $* common.vars $*.vars
+
+%_frontend.d: FRONTEND_FLAG = --frontend
+%_frontend.d: TEMPLATES = $(TEMPLATES_FRONTEND)
+export VPATH
+$(TEMPLATE_LIBS:$(SHLIBEXT)=.d):
+ $(MKDEPS) $(FRONTEND_FLAG) $(NAME) $(TEMPLATES) > $@
+ sed -ri 's/^(_template_index[^:]*)/\1 $@/' $@
+
+include $(TEMPLATE_LIBS:$(SHLIBEXT)=.d)
+
+.PHONY: all install-sources install-libs clean distclean test
+.DELETE_ON_ERROR:
/trunk/debian/Config
128,6 → 128,8
 
PREFIX = /usr/share/prayer
LIB_PREFIX = /usr/lib/prayer
SHLIBEXT = .so
 
RO_USER = root
RO_GROUP = root