e167e9
#! /bin/sh
e167e9
e167e9
# This script builds the PDF version of the PostgreSQL documentation.
e167e9
#
e167e9
# In principle we could do this as part of the RPM build, but there are
e167e9
# good reasons not to:
e167e9
# 1. The build would take longer and have a larger BuildRequires footprint.
e167e9
# 2. The generated PDF has timestamps in it, which would inevitably result
e167e9
#    in multilib conflicts due to slightly different timestamps.
e167e9
# So instead, we run this manually when rebasing to a new upstream release,
e167e9
# and treat the resulting PDF as a separate Source file.
e167e9
#
e167e9
# You will need to have the docbook packages installed to run this.
e167e9
# Expect it to take about 20 minutes and use about 160MB of disk.
e167e9
e167e9
set -e
e167e9
e167e9
# Pass package version (e.g., 9.1.2) as argument
e167e9
VERSION=$1
e167e9
e167e9
test -z "$VERSION" && VERSION=`awk '/^Version:/ { print $2; }' postgresql.spec`
e167e9
e167e9
TARGETFILE=postgresql-$VERSION-US.pdf
e167e9
test -f "$TARGETFILE" && echo "$TARGETFILE exists" && exit 1
e167e9
e167e9
echo Building $TARGETFILE ...
e167e9
e167e9
# Unpack postgresql
e167e9
e167e9
rm -rf postgresql-$VERSION
e167e9
e167e9
tar xfj postgresql-$VERSION.tar.bz2
e167e9
e167e9
cd postgresql-$VERSION
e167e9
e167e9
# Apply any patches that affect the PDF documentation
e167e9
e167e9
# patch -p1 < ../xxx.patch
e167e9
e167e9
# Configure ...
e167e9
e167e9
./configure >/dev/null
e167e9
e167e9
# Build the PDF docs
e167e9
e167e9
cd doc/src/sgml
e167e9
e167e9
make postgres-US.pdf >make.log
e167e9
e167e9
mv -f postgres-US.pdf ../../../../$TARGETFILE
e167e9
e167e9
# Clean up
e167e9
e167e9
cd ../../../..
e167e9
e167e9
rm -rf postgresql-$VERSION
e167e9
e167e9
exit 0