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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5624F15800F for ; Mon, 9 Jan 2023 01:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83F67E07D3; Mon, 9 Jan 2023 01:38:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 613F9E07D3 for ; Mon, 9 Jan 2023 01:38:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 387D433B864 for ; Mon, 9 Jan 2023 01:38:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9594E771 for ; Mon, 9 Jan 2023 01:38:18 +0000 (UTC) From: "Jonas Stein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Stein" Message-ID: <1673228161.ff9c90b3f6a765a0662dd13a2f80bde741e92e75.jstein@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/dillo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/dillo/dillo-9999.ebuild X-VCS-Directories: www-client/dillo/ X-VCS-Committer: jstein X-VCS-Committer-Name: Jonas Stein X-VCS-Revision: ff9c90b3f6a765a0662dd13a2f80bde741e92e75 X-VCS-Branch: master Date: Mon, 9 Jan 2023 01:38:18 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 04034d2c-84f8-4483-988a-e39e0473b257 X-Archives-Hash: d1092d2f757264e152d4ef8675438711 commit: ff9c90b3f6a765a0662dd13a2f80bde741e92e75 Author: Jonas Stein gentoo org> AuthorDate: Mon Jan 9 01:36:01 2023 +0000 Commit: Jonas Stein gentoo org> CommitDate: Mon Jan 9 01:36:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9c90b3 www-client/dillo: drop 9999 Signed-off-by: Jonas Stein gentoo.org> www-client/dillo/dillo-9999.ebuild | 63 -------------------------------------- 1 file changed, 63 deletions(-) diff --git a/www-client/dillo/dillo-9999.ebuild b/www-client/dillo/dillo-9999.ebuild deleted file mode 100644 index 4432d6a7d224..000000000000 --- a/www-client/dillo/dillo-9999.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools desktop mercurial toolchain-funcs - -DESCRIPTION="Lean FLTK based web browser" -HOMEPAGE="https://www.dillo.org/" -SRC_URI="mirror://gentoo/${PN}.png" -EHG_REPO_URI="https://hg.dillo.org/dillo" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="" -IUSE="doc +gif ipv6 +jpeg +png ssl +xembed" - -RDEPEND=" - >=x11-libs/fltk-1.3 - sys-libs/zlib - jpeg? ( virtual/jpeg:0 ) - png? ( >=media-libs/libpng-1.2:0 ) - ssl? ( net-libs/mbedtls:= ) -" -DEPEND=" - ${RDEPEND} - doc? ( app-doc/doxygen ) -" -PATCHES=( - "${FILESDIR}"/${PN}2-inbuf.patch - "${FILESDIR}"/${PN}-3.0.5-fno-common.patch -) -DOCS="AUTHORS ChangeLog README NEWS doc/*.txt doc/README" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable gif) \ - $(use_enable ipv6) \ - $(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable ssl) \ - $(use_enable xembed) -} - -src_compile() { - emake AR="$(tc-getAR)" - if use doc; then - doxygen Doxyfile || die - fi -} - -src_install() { - default - - use doc && dodoc -r html - - doicon "${DISTDIR}"/${PN}.png - make_desktop_entry ${PN} Dillo -}