summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun McCance <shaunm@redhat.com>2021-02-01 20:15:25 -0500
committerShaun McCance <shaunm@redhat.com>2021-02-01 20:15:25 -0500
commite1fe3fb6f7a412a281a515f1127f5cc73f851e12 (patch)
tree0393bb8b2217440accb7746bc1c517be15a1de75
parenta97c9ed35baa68ddefa8034cf97e13718034a246 (diff)
downloadyelp-tools-e1fe3fb6f7a412a281a515f1127f5cc73f851e12.tar.gz
Remove autotools stuff and fix up some data filespython-port
-rw-r--r--MAINTAINERS10
-rw-r--r--Makefile.am11
-rw-r--r--README3
-rwxr-xr-xautogen.sh19
-rw-r--r--configure.ac104
-rw-r--r--templates/Makefile.am12
-rw-r--r--tools/Makefile.am6
-rw-r--r--xslt/Makefile.am17
8 files changed, 3 insertions, 179 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index a38ba1c..a2c439c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1,14 +1,4 @@
-PLEASE USE THE MAILING LIST:
-gnome-doc-devel-list@gnome.org
-http://mail.gnome.org/archives/gnome-doc-devel-list/
-
# Primary Maintainer:
Shaun McCance
E-mail: shaunm@gnome.org
Userid: shaunm
-
-# xml2po Maintainer:
-Danilo Ĺ egan
-E-mail: danilo@gnome.org
-Userid: danilo
-
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 94736d0..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
-SUBDIRS = templates tools xslt
-
-EXTRA_DIST = COPYING.GPL
-
-ChangeLog:
- @if test -f $(top_srcdir)/.git/HEAD; then \
- git log --stat > $@; \
- fi
-
-dist: ChangeLog
-.PHONY: ChangeLog
diff --git a/README b/README
index 72cb97c..d4e44c3 100644
--- a/README
+++ b/README
@@ -8,6 +8,9 @@ wraps things up in a developer-friendly way.
ORGANIZATION
============
+templates/
+ The templates directory contains page templates used by yelp-new.
+
tools/
The tools directory contains scripts like yelp-build and yelp-check,
as well as the yelp.m4 file that provides autotools integration.
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 302e578..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-test -n "$srcdir" || srcdir=`dirname "$0"`
-test -n "$srcdir" || srcdir=.
-
-olddir=`pwd`
-cd $srcdir
-
-AUTORECONF=`which autoreconf`
-if test -z $AUTORECONF; then
- echo "*** No autoreconf found, please intall it ***"
- exit 1
-fi
-
-autoreconf --force --install --verbose
-
-cd $olddir
-test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 67f8e7d..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,104 +0,0 @@
-AC_INIT([yelp-tools], [3.38.0],
- [http://bugzilla.gnome.org/enter_bug.cgi?product=yelp-tools])
-AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2])
-
-dnl In the interest of portability, we don't use GNU awk extensions,
-dnl even though they rule. To prevent accidental use and subsequent
-dnl bug reports after busted tarballs were shipped, we use -W compat
-dnl whenever our awk is gawk.
-AC_PROG_AWK
-if test x$AWK = xgawk; then
- GDU_AWK='gawk -W compat';
-else
- GDU_AWK=$AWK;
-fi
-AC_SUBST(GDU_AWK)
-
-AC_PROG_LN_S
-
-AC_CHECK_PROG(XMLLINT, xmllint, xmllint)
-if test x"$XMLLINT" = x; then
- AC_MSG_ERROR([xmllint not found])
-fi
-if test `$XMLLINT --version 2>&1 | head -n1 | cut -d' ' -f5` -lt 20612 ; then
- AC_MSG_ERROR([xmllint too old; 2.6.12 required])
-fi
-
-AC_CHECK_PROG(XSLTPROC, xsltproc, xsltproc)
-if test x"$XSLTPROC" = x; then
- AC_MSG_ERROR([xsltproc not found])
-fi
-if test `$XSLTPROC --version 2>&1 | head -n1 | cut -d' ' -f5` -lt 10108 ; then
- AC_MSG_ERROR([xsltproc too old; 1.1.8 required])
-fi
-
-AC_CHECK_PROG(ITSTOOL, itstool, itstool)
-if test x"$ITSTOOL" = x; then
- AC_MSG_ERROR([itstool not found])
-fi
-
-PKG_CHECK_MODULES(YELP_XSL,
-[
- yelp-xsl >= 3.17.3
-])
-
-XSL_PATH="`$PKG_CONFIG --variable=xsltdir yelp-xsl`"
-
-DATADIR=`(
- case $prefix in
- NONE) prefix=$ac_default_prefix ;;
- *) ;;
- esac
- eval echo $(eval echo $datadir)/yelp-tools
-)`
-AC_SUBST([DATADIR])
-
-XSL_MAL_CACHE="$XSL_PATH""/mallard/cache/mal-cache.xsl"
-AC_SUBST(XSL_MAL_CACHE)
-
-XSL_MAL_LINK="$XSL_PATH""/mallard/common/mal-link.xsl"
-AC_SUBST(XSL_MAL_LINK)
-
-XSL_MAL_SORT="$XSL_PATH""/mallard/common/mal-sort.xsl"
-AC_SUBST(XSL_MAL_SORT)
-
-XSL_DB2HTML="`$PKG_CONFIG --variable=db2html yelp-xsl`"
-AC_SUBST(XSL_DB2HTML)
-
-XSL_DB2XHTML="`$PKG_CONFIG --variable=db2xhtml yelp-xsl`"
-AC_SUBST(XSL_DB2XHTML)
-
-XSL_MAL2HTML="`$PKG_CONFIG --variable=mal2html yelp-xsl`"
-AC_SUBST(XSL_MAL2HTML)
-
-XSL_MAL2XHTML="`$PKG_CONFIG --variable=mal2xhtml yelp-xsl`"
-AC_SUBST(XSL_MAL2XHTML)
-
-YELP_ICON_DIR="`$PKG_CONFIG --variable=icondir yelp-xsl`"/hicolor/24x24/status
-AC_SUBST(YELP_ICON_DIR)
-
-YELP_JS_DIR="`$PKG_CONFIG --variable=jsdir yelp-xsl`"
-AC_SUBST(YELP_JS_DIR)
-
-YELP_TMPL_DIR=`(
- case $prefix in
- NONE) prefix=$ac_default_prefix ;;
- *) ;;
- esac
- eval echo $(eval echo $datadir)/yelp-tools/templates/
-)`
-AC_SUBST(YELP_TMPL_DIR)
-
-AC_CONFIG_FILES([
-Makefile
-templates/Makefile
-tools/Makefile
-tools/yelp-build
-tools/yelp-check
-tools/yelp-new
-xslt/Makefile
-xslt/mal-ncx.xsl
-xslt/mal-opf.xsl
-])
-
-AC_OUTPUT
diff --git a/templates/Makefile.am b/templates/Makefile.am
deleted file mode 100644
index 1535f3a..0000000
--- a/templates/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-tmpldir = $(datadir)/yelp-tools/templates
-tmpl_DATA = \
- concept.duck \
- concept.page \
- guide.duck \
- guide.page \
- reference.duck \
- reference.page \
- task.duck \
- task.page
-
-EXTRA_DIST = $(tmpl_DATA)
diff --git a/tools/Makefile.am b/tools/Makefile.am
deleted file mode 100644
index fcbd6fc..0000000
--- a/tools/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-aclocaldir = $(datadir)/aclocal
-aclocal_DATA = yelp.m4
-
-bin_SCRIPTS = yelp-build yelp-check yelp-new
-
-EXTRA_DIST = yelp-build.in yelp-check.in yelp-new.in $(aclocal_DATA)
diff --git a/xslt/Makefile.am b/xslt/Makefile.am
deleted file mode 100644
index f4e62af..0000000
--- a/xslt/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-xsldir=$(datadir)/yelp-tools/xslt
-
-xsl_DATA = \
- comments.xsl \
- mal-epub.xsl \
- mal-opf.xsl \
- mal-files.xsl \
- mal-license.xsl \
- mal-ncx.xsl \
- mal-status.xsl \
- mal-rng.xsl \
- media.xsl
-
-EXTRA_DIST = \
- mal-ncx.xsl.in \
- mal-opf.xsl.in \
- $(xsl_DATA)