2012-01-10 11:51:19 +01:00
|
|
|
# Copyright (C) 1998,1999,2000,2001,2003,2010,2011,
|
|
|
|
# 2012 Free Software Foundation, Inc.
|
2002-06-29 16:15:02 +02:00
|
|
|
#
|
|
|
|
# This file is part of GnuPG.
|
|
|
|
#
|
|
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-10-23 12:48:09 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2002-06-29 16:15:02 +02:00
|
|
|
# (at your option) any later version.
|
2011-12-02 20:41:40 +01:00
|
|
|
#
|
2002-06-29 16:15:02 +02:00
|
|
|
# GnuPG 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.
|
2011-12-02 20:41:40 +01:00
|
|
|
#
|
2002-06-29 16:15:02 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-10-23 12:48:09 +02:00
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1997-11-18 15:06:00 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2003-10-25 18:26:09 +02:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2010-09-23 11:09:49 +02:00
|
|
|
# We can't use --enable-selinux-support because some of our regression
|
|
|
|
# tests are importing secret keys and that is not allowed if
|
|
|
|
# selinux-support is enabled.
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-mailto
|
2003-10-25 18:26:09 +02:00
|
|
|
|
2012-01-30 10:25:06 +01:00
|
|
|
GITLOG_TO_CHANGELOG=gitlog-to-changelog
|
|
|
|
|
1999-09-17 12:58:20 +02:00
|
|
|
if CROSS_COMPILING
|
|
|
|
checks =
|
|
|
|
else
|
|
|
|
checks = checks
|
|
|
|
endif
|
|
|
|
|
2012-01-13 10:57:42 +01:00
|
|
|
if HAVE_W32_SYSTEM
|
|
|
|
bzlib = bzlib
|
|
|
|
else
|
|
|
|
bzlib =
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS = m4 intl zlib ${bzlib} util mpi cipher tools \
|
|
|
|
g10 keyserver po doc ${checks}
|
2011-12-02 20:41:40 +01:00
|
|
|
|
|
|
|
EXTRA_DIST = scripts/config.rpath PROJECTS BUGS config.h.in \
|
|
|
|
autogen.sh ChangeLog-2011 po/ChangeLog-2011 \
|
|
|
|
util/ChangeLog-2011 scripts/ChangeLog-2011 \
|
|
|
|
doc/ChangeLog-2011 tools/ChangeLog-2011 \
|
|
|
|
zlib/ChangeLog-2011 m4/ChangeLog-2011 \
|
|
|
|
include/ChangeLog-2011 g10/ChangeLog-2011 \
|
|
|
|
checks/ChangeLog-2011 cipher/ChangeLog-2011 \
|
|
|
|
intl/ChangeLog-2011 keyserver/ChangeLog-2011 \
|
|
|
|
tests/ChangeLog-2011 mpi/ChangeLog-2011
|
|
|
|
|
|
|
|
|
|
|
|
DISTCLEANFILES =
|
2000-10-10 18:25:12 +02:00
|
|
|
|
2008-03-27 14:23:39 +01:00
|
|
|
# We do not install README into the doc directory because that would
|
|
|
|
# conflict with GnuPG-2.
|
|
|
|
# dist_doc_DATA = README
|
|
|
|
|
|
|
|
|
2000-10-10 18:25:12 +02:00
|
|
|
# Add all the files listed in "distfiles" files to the distribution,
|
2002-06-29 16:15:02 +02:00
|
|
|
# apply version numbers to some files and create a VERSION file which
|
2000-10-10 18:25:12 +02:00
|
|
|
# we need for the Prereq: patch file trick.
|
2011-12-02 20:41:40 +01:00
|
|
|
dist-hook: gen-ChangeLog
|
1997-12-23 18:30:18 +01:00
|
|
|
@set -e; \
|
2002-06-29 16:15:02 +02:00
|
|
|
for file in `cd $(top_srcdir); \
|
|
|
|
find scripts mpi include -type f -name distfiles`; do \
|
1997-12-23 18:30:18 +01:00
|
|
|
dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \
|
1998-10-07 15:30:43 +02:00
|
|
|
for i in distfiles `cat $(top_srcdir)/$$file` ; do \
|
|
|
|
ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \
|
|
|
|
|| cp -p $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i; \
|
1997-12-23 18:30:18 +01:00
|
|
|
done ; \
|
|
|
|
done
|
1998-09-18 17:24:53 +02:00
|
|
|
@set -e; \
|
1999-01-13 12:51:47 +01:00
|
|
|
sed -e 's/@pkg_version@/$(VERSION)/g' \
|
|
|
|
$(top_srcdir)/scripts/gnupg.spec.in \
|
2002-10-31 19:29:53 +01:00
|
|
|
> $(distdir)/gnupg.spec
|
2000-10-10 18:25:12 +02:00
|
|
|
echo "$(VERSION)" > $(distdir)/VERSION
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2016-08-17 14:39:26 +02:00
|
|
|
distcheck-hook:
|
|
|
|
set -e; ( \
|
|
|
|
pref="#+macro: gnupg1_" ;\
|
|
|
|
reldate="$$(date -u +%Y-%m-%d)" ;\
|
|
|
|
echo "$${pref}ver $(PACKAGE_VERSION)" ;\
|
|
|
|
echo "$${pref}date $${reldate}" ;\
|
|
|
|
list='$(DIST_ARCHIVES)'; for i in $$list; do \
|
|
|
|
case "$$i" in *.tar.bz2) \
|
|
|
|
echo "$${pref}size $$(wc -c <$$i|awk '{print int($$1/1024)}')k" ;\
|
|
|
|
echo "$${pref}sha1 $$(sha1sum <$$i|cut -d' ' -f1)" ;\
|
|
|
|
echo "$${pref}sha2 $$(sha256sum <$$i|cut -d' ' -f1)" ;;\
|
|
|
|
esac;\
|
|
|
|
done ) | tee $(distdir).swdb
|
2011-12-02 20:41:40 +01:00
|
|
|
|
|
|
|
gen_start_date = 2011-12-01T06:00:00
|
|
|
|
.PHONY: gen-ChangeLog
|
|
|
|
gen-ChangeLog:
|
2012-01-30 15:11:54 +01:00
|
|
|
set -e; \
|
2016-01-13 09:22:37 +01:00
|
|
|
if test -e $(top_srcdir)/.git; then \
|
2011-12-02 20:41:40 +01:00
|
|
|
(cd $(top_srcdir) && \
|
2012-01-30 10:25:06 +01:00
|
|
|
$(GITLOG_TO_CHANGELOG) --append-dot --tear-off \
|
2011-12-02 20:41:40 +01:00
|
|
|
--amend=scripts/git-log-fix \
|
|
|
|
--since=$(gen_start_date) ) > $(distdir)/cl-t; \
|
|
|
|
cat $(top_srcdir)/scripts/git-log-footer >> $(distdir)/cl-t; \
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
fi
|