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 2D9BD139083 for ; Tue, 19 Dec 2017 01:56:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40F95E10AF; Tue, 19 Dec 2017 01:56:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F531E10AF for ; Tue, 19 Dec 2017 01:56:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D9DF33BF05 for ; Tue, 19 Dec 2017 01:56:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26227AE8B for ; Tue, 19 Dec 2017 01:56:03 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1513648514.dc2543cba4ac3779d1380cb9a7c1946f5198883d.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/gtkmathview/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild X-VCS-Directories: x11-libs/gtkmathview/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: dc2543cba4ac3779d1380cb9a7c1946f5198883d X-VCS-Branch: master Date: Tue, 19 Dec 2017 01:56:03 +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: 9dc6e523-e2ae-47a8-be70-02e7b613eefb X-Archives-Hash: f5e99d4d8ceeec72b44cdd5ab31335c6 commit: dc2543cba4ac3779d1380cb9a7c1946f5198883d Author: Mart Raudsepp gentoo org> AuthorDate: Tue Dec 19 01:46:16 2017 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Tue Dec 19 01:55:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc2543cb x11-libs/gtkmathview: remove old Package-Manager: Portage-2.3.19, Repoman-2.3.6 x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild | 77 ------------------------ 1 file changed, 77 deletions(-) diff --git a/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild b/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild deleted file mode 100644 index 4b57785e9a4..00000000000 --- a/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils - -DESCRIPTION="Rendering engine for MathML documents" -HOMEPAGE="http://helm.cs.unibo.it/mml-widget/" -SRC_URI="http://helm.cs.unibo.it/mml-widget/sources/${P}.tar.gz" - -LICENSE="LGPL-3" - -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="gtk mathml svg t1lib" - -RDEPEND=">=dev-libs/glib-2.2.1:2 - >=dev-libs/popt-1.7 - >=dev-libs/libxml2-2.6.7:2 - gtk? ( >=x11-libs/gtk+-2.2.1:2 - >=media-libs/t1lib-5:5 - x11-libs/pango - || ( x11-libs/pangox-compat =media-libs/t1lib-5:5 )" -DEPEND="${RDEPEND} - dev-libs/libxslt - virtual/pkgconfig" - -DOCS="ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc43.patch \ - "${FILESDIR}"/${P}-gcc44.patch \ - "${FILESDIR}"/${P}-cond-t1.patch - - # Fix building against libxml2[icu], bug #356095 - epatch "${FILESDIR}"/${P}-fix-template.patch - - # Fix building with gold, bug #369117; requires eautoreconf - epatch "${FILESDIR}/${P}-underlinking.patch" - - epatch "${FILESDIR}/${P}-gcc47.patch" - - # m4 macros from upstream git, required for eautoreconf - if [[ ! -d ac-helpers ]]; then - mkdir ac-helpers || die "mkdir failed" - cp "${FILESDIR}/binreloc.m4" ac-helpers || die "cp failed" - fi - - sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die - - AT_M4DIR=ac-helpers eautoreconf -} - -src_configure() { - # --disable-popt will build only the library and not the frontend - # TFM is needed for SVG, default value is 2 - econf $(use_enable gtk) \ - $(use_enable svg) \ - $(use_with t1lib) \ - --with-popt \ - --enable-libxml2 \ - --enable-libxml2-reader \ - --enable-ps \ - --enable-tfm=2 \ - --enable-builder-cache \ - --enable-breaks \ - --enable-boxml \ - --disable-gmetadom \ - --disable-static -} - -src_install() { - default - prune_libtool_files -}