Files
@ 973eab045010
Branch filter:
Location: ohnobinki_overlay/app-text/docbook2X/docbook2X-0.8.8-r2.ebuild - annotation
973eab045010
1.5 KiB
application/vnd.gentoo.ebuild
dev-util/cmake: Add a patch to cmake which enables kde-base/kdelibs to compile on systems where /usr/lib is neither a symlink to /usr/lib64 or /usr/lib32. This adds a FIND_LIBRARY_USE_LIB32_PATHS global property which is an analog to the FIND_LIBRARY_USE_LIB64_PATHS property.
(Portage version: 2.2_rc69-r1/hg/Linux x86_64, signed Manifest commit)
(Portage version: 2.2_rc69-r1/hg/Linux x86_64, signed Manifest commit)
927c558864c7 927c558864c7 927c558864c7 927c558864c7 8fde95ae1acd 8fde95ae1acd 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 8fde95ae1acd 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 8fde95ae1acd 927c558864c7 8fde95ae1acd 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 8fde95ae1acd 927c558864c7 927c558864c7 8fde95ae1acd 927c558864c7 927c558864c7 927c558864c7 8fde95ae1acd 8fde95ae1acd 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 927c558864c7 | # Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/docbook2X/docbook2X-0.8.8-r2.ebuild,v 1.15 2010/07/18 16:46:46 armin76 Exp $
EAPI=2
# bug 318297
WANT_AUTOMAKE="1.10"
inherit autotools eutils
DESCRIPTION="Tools to convert docbook to man and info"
SRC_URI="mirror://sourceforge/docbook2x/${P}.tar.gz"
HOMEPAGE="http://docbook2x.sourceforge.net/"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="test"
LICENSE="MIT"
# dev-perl/XML-LibXML - although not mentioned upstream is required
# for make check to complete.
RDEPEND="dev-lang/perl
dev-libs/libxslt
dev-perl/XML-NamespaceSupport
dev-perl/XML-SAX
dev-perl/XML-LibXML
app-text/docbook-xsl-stylesheets
=app-text/docbook-xml-dtd-4.2*"
DEPEND="test? ( ${RDEPEND} )"
src_prepare() {
# Patches from debian, for description see patches itself.
epatch "${FILESDIR}"/${P}-filename_whitespace_handling.patch
epatch "${FILESDIR}"/${P}-preprocessor_declaration_syntax.patch
epatch "${FILESDIR}"/${P}-error_on_missing_refentry.patch
eautoreconf #290284
}
src_configure() {
econf \
--with-xslt-processor=libxslt \
--program-transform-name='s,\(docbook2.*\),\1.pl,'
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die
}
pkg_postinst() {
elog "To avoid conflict with docbook-sgml-utils, which is much more widely used,"
elog "all executables have been renamed to *.pl."
}
|