[pulseaudio-commits] r1059 - in /trunk: ./ Makefile.am README configure.ac doc/FAQ.html.in doc/Makefile.am doc/README.html.in doc/cli.html.in doc/daemon.html.in doc/modules.html.in doc/style.css
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Fri Jul 7 09:05:21 PDT 2006
Author: lennart
Date: Fri Jul 7 18:05:20 2006
New Revision: 1059
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1059&root=pulseaudio&view=rev
Log:
remove all docs from tarball since they are now available on pulseaudio.org
Added:
trunk/README (with props)
Removed:
trunk/doc/FAQ.html.in
trunk/doc/README.html.in
trunk/doc/cli.html.in
trunk/doc/daemon.html.in
trunk/doc/modules.html.in
trunk/doc/style.css
Modified:
trunk/ (props changed)
trunk/Makefile.am
trunk/configure.ac
trunk/doc/Makefile.am
Propchange: trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri Jul 7 18:05:20 2006
@@ -3,7 +3,6 @@
autoscan.log
configure.scan
*.tar.gz
-README
*.pc
compile
*.tmp
Modified: trunk/Makefile.am
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/Makefile.am?rev=1059&root=pulseaudio&r1=1058&r2=1059&view=diff
==============================================================================
--- trunk/Makefile.am (original)
+++ trunk/Makefile.am Fri Jul 7 18:05:20 2006
@@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-EXTRA_DIST = bootstrap.sh LICENSE GPL LGPL doxygen/Makefile.am doxygen/Makefile.in doxygen/doxygen.conf.in libtool.m4 ltdl.m4
+EXTRA_DIST = bootstrap.sh LICENSE GPL LGPL doxygen/Makefile.am doxygen/Makefile.in doxygen/doxygen.conf.in libtool.m4 ltdl.m4 README
SUBDIRS=libltdl src doc doxygen
MAINTAINERCLEANFILES =
@@ -41,27 +41,11 @@
libpulse-mainloop-glib12.pc
endif
-if USE_LYNX
-EXTRA_DIST += README
-MAINTAINERCLEANFILES += README
-noinst_DATA += README
-
-README:
- rm -f README
- $(MAKE) -C doc README
- cd $(srcdir) && ln -s doc/README README
-endif
-
homepage: all dist doxygen
test -d $$HOME/homepage/private
mkdir -p $$HOME/homepage/private/projects/pulseaudio $$HOME/homepage/private/projects/pulseaudio/doxygen
cp pulseaudio- at PACKAGE_VERSION@.tar.gz $$HOME/homepage/private/projects/pulseaudio
- cp doc/README.html doc/FAQ.html doc/cli.html doc/daemon.html doc/modules.html doc/style.css $$HOME/homepage/private/projects/pulseaudio
cp -a doxygen/html/* $$HOME/homepage/private/projects/pulseaudio/doxygen
- ln -sf $$HOME/homepage/private/projects/pulseaudio/README.html $$HOME/homepage/private/projects/pulseaudio/index.html
-
-#distcleancheck:
-# @:
doxygen:
$(MAKE) -C doxygen doxygen
Added: trunk/README
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/README?rev=1059&root=pulseaudio&view=auto
==============================================================================
--- trunk/README (added)
+++ trunk/README Fri Jul 7 18:05:20 2006
@@ -1,0 +1,1 @@
+For more information see http://pulseaudio.org/
Propchange: trunk/README
------------------------------------------------------------------------------
svn:keywords = Id
Modified: trunk/configure.ac
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/configure.ac?rev=1059&root=pulseaudio&r1=1058&r2=1059&view=diff
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Fri Jul 7 18:05:20 2006
@@ -100,29 +100,6 @@
done
fi
-# LYNX documentation generation
-AC_ARG_ENABLE(lynx,
- AC_HELP_STRING(--disable-lynx,Turn off lynx usage for documentation generation),
-[case "${enableval}" in
- yes) lynx=yes ;;
- no) lynx=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --disable-lynx) ;;
-esac],[lynx=auto])
-
-if test x$lynx != xno ; then
- AC_CHECK_PROG(have_lynx, lynx, yes, no)
-
- if test x$have_lynx = xno ; then
- if test x$lynx = xyes ; then
- AC_MSG_ERROR([*** lynx not found])
- else
- AC_MSG_WARN([*** lynx not found, plain text README will not be built ***])
- fi
- fi
-fi
-
-AM_CONDITIONAL([USE_LYNX], [test "x$have_lynx" = xyes])
-
#### libtool stuff ####
AC_LTDL_ENABLE_INSTALL
@@ -701,13 +678,8 @@
libpulse-mainloop-glib.pc
libpulse-mainloop-glib12.pc
doc/Makefile
-doc/README.html
-doc/cli.html
-doc/daemon.html
-doc/modules.html
doxygen/Makefile
doxygen/doxygen.conf
src/pulse/version.h
-doc/FAQ.html
])
AC_OUTPUT
Modified: trunk/doc/Makefile.am
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/doc/Makefile.am?rev=1059&root=pulseaudio&r1=1058&r2=1059&view=diff
==============================================================================
--- trunk/doc/Makefile.am (original)
+++ trunk/doc/Makefile.am Fri Jul 7 18:05:20 2006
@@ -16,26 +16,5 @@
# along with PulseAudio; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-noinst_DATA = README.html cli.html modules.html daemon.html FAQ.html
-EXTRA_DIST = $(noinst_DATA) style.css README.html.in cli.html.in modules.html.in daemon.html.in todo FAQ.html.in
+EXTRA_DIST = todo
-MAINTAINERCLEANFILES = README.html cli.html modules.html daemon.html FAQ.html
-CLEANFILES =
-
-if USE_LYNX
-README: README.html
- lynx --dump $^ | sed 's,file://localhost/.*/doc/README.html,README,' > $@
-
-noinst_DATA += README
-CLEANFILES += README
-endif
-
-tidy: README.html cli.html modules.html daemon.html
- tidy -qe < README.html ; true
- tidy -qe < cli.html ; true
- tidy -qe < daemon.html ; true
- tidy -qe < modules.html ; true
- tidy -qe < FAQ.html ; true
-
-.PHONY: tidy
-
More information about the pulseaudio-commits
mailing list