From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6E2D1382FE for ; Sat, 9 Jul 2016 05:29:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 392F621C063; Sat, 9 Jul 2016 05:29:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6727421C063 for ; Sat, 9 Jul 2016 05:29:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD3DD340FD8 for ; Sat, 9 Jul 2016 05:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D5852444 for ; Sat, 9 Jul 2016 05:29:17 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1468042123.a68c37cf61094b4554cafcb4354183b9e5cbdfeb.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmltidy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/htmltidy/htmltidy-20090325-r1.ebuild X-VCS-Directories: app-text/htmltidy/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a68c37cf61094b4554cafcb4354183b9e5cbdfeb X-VCS-Branch: master Date: Sat, 9 Jul 2016 05:29:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 562b2bc8-39d5-422d-9cf5-62a171d52b9b X-Archives-Hash: 28b3d0b6e1f169538701b6a4dd7de498 commit: a68c37cf61094b4554cafcb4354183b9e5cbdfeb Author: Hans de Graaff gentoo org> AuthorDate: Sat Jul 9 05:05:37 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jul 9 05:28:43 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a68c37cf app-text/htmltidy: cleanup Package-Manager: portage-2.2.28 app-text/htmltidy/htmltidy-20090325-r1.ebuild | 77 --------------------------- 1 file changed, 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 8238749..0000000 --- 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 -}