diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-07-09 07:05:37 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-07-09 07:28:43 +0200 |
commit | a68c37cf61094b4554cafcb4354183b9e5cbdfeb (patch) | |
tree | 47521039e3d04ba364a7e46bcd72660fe3b777f1 /app-text | |
parent | dev-ruby/tidy-ext: cleanup (diff) | |
download | gentoo-a68c37cf61094b4554cafcb4354183b9e5cbdfeb.tar.gz gentoo-a68c37cf61094b4554cafcb4354183b9e5cbdfeb.tar.bz2 gentoo-a68c37cf61094b4554cafcb4354183b9e5cbdfeb.zip |
app-text/htmltidy: cleanup
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/htmltidy/htmltidy-20090325-r1.ebuild | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/app-text/htmltidy/htmltidy-20090325-r1.ebuild b/app-text/htmltidy/htmltidy-20090325-r1.ebuild deleted file mode 100644 index 823874927025..000000000000 --- a/app-text/htmltidy/htmltidy-20090325-r1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -MY_PN="tidy" -MY_P="${MY_PN}-${PV}" - -inherit eutils autotools - -DESCRIPTION="Tidy the layout and correct errors in HTML and XML documents" -HOMEPAGE="http://tidy.sourceforge.net/" -SRC_URI="mirror://gentoo/${MY_P}.tar.bz2 - mirror://gentoo/${MY_P}-doc.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="debug doc static-libs" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -S="${WORKDIR}"/${MY_P} - -src_prepare() { - # Required to setup the source dist for autotools - einfo "Setting up autotools for source build" - cp -R ./build/gnuauto/* . || die "could not prepare autotools environment" - - # Stop tidy from appending -O2 to our CFLAGS - epatch "${FILESDIR}"/htmltidy-5.10.26-strip-O2-flag.patch - - # Define /etc/tidyrc for system wide config, bug 154834 - epatch "${FILESDIR}"/htmltidy-20090325-tidyrc.patch - - eautoreconf -} - -src_compile() { - default - - if use doc ; then - doxygen htmldoc/doxygen.cfg || die "error making apidocs" - fi -} - -src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable static-libs static) -} - -src_install() { - default - - find "${ED}" -name '*.la' -exec rm -f {} + - - # Now the man page is provided as an xsl file, which - # we can't use until htmltidy is merged. - # I have generated the man page and quickref which is on - # the mirrors. (bug #132429) - doman "${WORKDIR}"/"${MY_P}"-doc/tidy.1 - - # Fix name before installing - mv "${WORKDIR}"/"${MY_P}"-doc/quickref-html \ - "${WORKDIR}"/"${MY_P}"-doc/quickref.html - - cd "${S}"/htmldoc - # Install basic html documentation - dohtml *.html *.css *.gif "${WORKDIR}"/"${MY_P}"-doc/quickref.html - - # If use 'doc' is set, then we also want to install the - # api documentation - use doc && dohtml -r api -} |