De-couple the man page from dox MAIN page.

SVN revision: 9817
This commit is contained in:
Kim Woelders 2004-04-20 21:30:58 +00:00
parent 9913aad1fb
commit de15bfa155
4 changed files with 1328 additions and 17 deletions

View File

@ -1,11 +1,9 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
PKG_NAME="enlightenment"
THEDIR="`pwd`"
cd "$srcdir"
srcdir=`dirname $0`
DIE=0
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
@ -60,14 +58,13 @@ automake --add-missing
echo " autoconf"
autoconf
cd "$THEDIR"
cd "$THEDIR/man"
#conf_flags="--enable-maintainer-mode --enable-compile-warnings"
cat ../dox/E-docs/MAIN | ./e2mp > enlightenment.pod
pod2man --center="Enlightenment Man Pages" --release="Enlightenment 0.16.7" ./enlightenment.pod > enlightenment.1
cd "$THEDIR"
$srcdir/configure "$@" && echo && echo "Now type 'make' to compile Enlightenment."
if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
$srcdir/configure $conf_flags "$@" \
&& echo Now type \`make\' to compile $PKG_NAME
else
echo Skipping configure process.
fi

View File

@ -1,6 +1,2 @@
.icons
enlightenment.man
enlightenment.pod
enlightenment.1
Makefile.in
Makefile

View File

@ -2,3 +2,9 @@ man_MANS = enlightenment.1
EXTRA_DIST = enlightenment.1
enlightenment.man: enlightenment.pod
pod2man --center="Enlightenment Man Pages" \
--release="Enlightenment @ENLIGHTENMENT_VERSION@" $< > $@
enlightenment.pod: $(top_srcdir)/man/MAIN
$(top_srcdir)/man/e2mp < $< > $@

1312
man/enlightenment.1 Normal file

File diff suppressed because it is too large Load Diff