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 B7AFB13835A for ; Mon, 18 Jan 2021 11:36:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F450E0887; Mon, 18 Jan 2021 11:36:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 85DFDE0887 for ; Mon, 18 Jan 2021 11:36:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1DAD0340E93 for ; Mon, 18 Jan 2021 11:36:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FEFF4AC for ; Mon, 18 Jan 2021 11:36:38 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1610969773.1566db475f44286916e1f035936fe74e1135ea3e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmmaiload/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmmaiload/wmmaiload-2.3.0-r1.ebuild X-VCS-Directories: x11-plugins/wmmaiload/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1566db475f44286916e1f035936fe74e1135ea3e X-VCS-Branch: master Date: Mon, 18 Jan 2021 11:36:38 +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: 59f104a2-749d-481c-a9ed-10ff095f7432 X-Archives-Hash: 871b8adaa0cb52aba2e6ec147f0a210a commit: 1566db475f44286916e1f035936fe74e1135ea3e Author: Jakov Smolic sartura hr> AuthorDate: Mon Jan 18 11:36:13 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Jan 18 11:36:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1566db47 x11-plugins/wmmaiload: Remove old Bug: https://bugs.gentoo.org/764125 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> x11-plugins/wmmaiload/wmmaiload-2.3.0-r1.ebuild | 48 ------------------------- 1 file changed, 48 deletions(-) diff --git a/x11-plugins/wmmaiload/wmmaiload-2.3.0-r1.ebuild b/x11-plugins/wmmaiload/wmmaiload-2.3.0-r1.ebuild deleted file mode 100644 index c0e09e89449..00000000000 --- a/x11-plugins/wmmaiload/wmmaiload-2.3.0-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit toolchain-funcs - -DESCRIPTION="dockapp that monitors one or more mailboxes" -HOMEPAGE="http://tnemeth.free.fr/projets/dockapps.html" -SRC_URI="http://tnemeth.free.fr/projets/programmes/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~ppc64 sparc x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - x11-libs/libXpm" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.2.1-checkthread.patch ) -src_prepare() { - sed -i -e "s/-lssl/\0 -lcrypto/" wmmaiload/Init.make || die - sed -e "s/SSLv2_client_method/SSLv23_client_method/" \ - -i wmmaiload/ssl.c || die - - default -} - -src_configure() { - # The ./configure script is not autoconf based, therefore don't use econf: - ./configure -p /usr || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - DEBUG_LDFLAGS="" \ - LDFLAGS="${LDFLAGS}" \ - DEBUG_CFLAGS="" -} - -src_install() { - dobin ${PN}/${PN} ${PN}-config/${PN}-config - doman doc/*.1 - dodoc AUTHORS ChangeLog FAQ NEWS README THANKS TODO doc/sample.${PN}rc -}