diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-text/xmlto | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-text/xmlto')
-rw-r--r-- | app-text/xmlto/Manifest | 1 | ||||
-rw-r--r-- | app-text/xmlto/files/xmlto-0.0.22-format_fo_passivetex_check.patch | 46 | ||||
-rw-r--r-- | app-text/xmlto/metadata.xml | 5 | ||||
-rw-r--r-- | app-text/xmlto/xmlto-0.0.26.ebuild | 40 |
4 files changed, 92 insertions, 0 deletions
diff --git a/app-text/xmlto/Manifest b/app-text/xmlto/Manifest new file mode 100644 index 000000000000..c1167f5075a6 --- /dev/null +++ b/app-text/xmlto/Manifest @@ -0,0 +1 @@ +DIST xmlto-0.0.26.tar.bz2 119819 SHA256 efb49b2fb3bc27c1a1e24fe34abf19b6bf6cbb40844e6fd58034cdf21c54b5ec SHA512 85110f22a7b5a5c8de4115ae5d0391645a223191b17455a4f9539b02f56f7003fd4ba70e48f0e5e46cdb91220a9027802e725f88ca8659e3ce1576f8609ccd18 WHIRLPOOL f7ded4ceb65adcfc7c06bfdb8a3d22ca7195c098b5bcf26b3884111f536b72efbf5e642eeeee8be17d4a33db3accc139d78178dba2fe5a98037712048c2410e4 diff --git a/app-text/xmlto/files/xmlto-0.0.22-format_fo_passivetex_check.patch b/app-text/xmlto/files/xmlto-0.0.22-format_fo_passivetex_check.patch new file mode 100644 index 000000000000..6c3dc7ce5127 --- /dev/null +++ b/app-text/xmlto/files/xmlto-0.0.22-format_fo_passivetex_check.patch @@ -0,0 +1,46 @@ +- Check for a passivetex format file and tell the user, if it's missing. +- Modified to use texmf-site directory by ssuominen at gentoo.org. +- http://bugs.debian.org/190840 + +diff -ur xmlto-0.0.22.orig/format/fo/dvi xmlto-0.0.22/format/fo/dvi +--- xmlto-0.0.22.orig/format/fo/dvi 2009-03-20 10:28:02.000000000 +0200 ++++ xmlto-0.0.22/format/fo/dvi 2009-05-22 15:20:33.000000000 +0300 +@@ -11,6 +11,10 @@ + echo >&2 "Can't process, xmltex tool not found at $XMLTEX_PATH." + exit 3 + fi ++ if [ ! -f /usr/share/texmf-site/tex/xmltex/passivetex/fotex.xmt ]; then ++ printf "PassiveTeX is needed for this format, but it is not installed. Please install\nthe passivetex package.\n" ++ exit 1 ++ fi + # Work around stupid tetex bug with '_' in filenames + # Also work around stupid tetex limitation with long lines (bug #101055) + sed -e "s,/>,\n/>,g" "$XSLT_PROCESSED" >tmp.fo +diff -ur xmlto-0.0.22.orig/format/fo/pdf xmlto-0.0.22/format/fo/pdf +--- xmlto-0.0.22.orig/format/fo/pdf 2009-03-20 10:28:33.000000000 +0200 ++++ xmlto-0.0.22/format/fo/pdf 2009-05-22 15:20:33.000000000 +0300 +@@ -13,6 +13,10 @@ + echo >&2 "Can't process, pdfxmltex tool not found at $PDFXMLTEX_PATH." + exit 3 + fi ++ if [ ! -f /usr/share/texmf-site/tex/xmltex/passivetex/fotex.xmt ]; then ++ printf "PassiveTeX is needed for this format, but it is not installed. Please install\nthe passivetex package.\n" ++ exit 1 ++ fi + # Work around stupid tetex bug with '_' in filenames + # Also work around stupid tetex limitation with long lines (bug #101055) + sed -e "s,/>,\n/>,g" "$XSLT_PROCESSED" >tmp.fo +diff -ur xmlto-0.0.22.orig/format/fo/ps xmlto-0.0.22/format/fo/ps +--- xmlto-0.0.22.orig/format/fo/ps 2009-03-17 18:39:52.000000000 +0200 ++++ xmlto-0.0.22/format/fo/ps 2009-05-22 15:20:33.000000000 +0300 +@@ -8,6 +8,10 @@ + then + echo >&2 "Post-process XSL-FO to DVI" + fi ++ if [ ! -f /usr/share/texmf-site/tex/xmltex/passivetex/fotex.xmt ]; then ++ printf "PassiveTeX is needed for this format, but it is not installed. Please install\nthe passivetex package.\n" ++ exit 1 ++ fi + # Work around stupid tetex bug with '_' in filenames + # Also work around stupid tetex limitation with long lines (bug #101055) + sed -e "s,/>,\n/>,g" "$XSLT_PROCESSED" >tmp.fo diff --git a/app-text/xmlto/metadata.xml b/app-text/xmlto/metadata.xml new file mode 100644 index 000000000000..4538a68724a6 --- /dev/null +++ b/app-text/xmlto/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer><email>maintainer-needed@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/app-text/xmlto/xmlto-0.0.26.ebuild b/app-text/xmlto/xmlto-0.0.26.ebuild new file mode 100644 index 000000000000..0d423a6dbf1c --- /dev/null +++ b/app-text/xmlto/xmlto-0.0.26.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="script for converting XML and DocBook formatted documents to a variety of output formats" +HOMEPAGE="https://fedorahosted.org/xmlto/" +SRC_URI="https://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="latex" + +RDEPEND=">=app-text/docbook-xsl-stylesheets-1.62.0-r1 + app-text/docbook-xml-dtd:4.2 + app-shells/bash + dev-libs/libxslt + sys-apps/sed + || ( >=sys-apps/coreutils-6.10-r1 sys-freebsd/freebsd-ubin ) + || ( sys-apps/util-linux app-misc/getopt ) + || ( sys-apps/which sys-freebsd/freebsd-ubin ) + latex? ( >=app-text/passivetex-1.25 >=dev-tex/xmltex-1.9-r2 )" +# We only depend on flex when we patch the imput lexer. +DEPEND="${RDEPEND}" + +DOCS="AUTHORS ChangeLog FAQ NEWS README THANKS" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.0.22-format_fo_passivetex_check.patch +} + +src_configure() { + # We don't want the script to detect /bin/sh if it is bash. + export ac_cv_path_BASH=/bin/bash + has_version sys-apps/util-linux || export GETOPT=getopt-long + econf +} |