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 AF171138334 for ; Sat, 27 Oct 2018 19:57:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79510E0A04; Sat, 27 Oct 2018 19:57:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4AB2CE0A04 for ; Sat, 27 Oct 2018 19:57:57 +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 9C665335C7D for ; Sat, 27 Oct 2018 19:57:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 036B6449 for ; Sat, 27 Oct 2018 19:57:54 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1540670256.3c61cf387cbf669579427f4ae74ead6def746121.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcp/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmcp/wmcp-1.2.8.ebuild X-VCS-Directories: x11-plugins/wmcp/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3c61cf387cbf669579427f4ae74ead6def746121 X-VCS-Branch: master Date: Sat, 27 Oct 2018 19:57:54 +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: bf24a0f7-8f9e-4464-96d1-abc478f3652e X-Archives-Hash: ef5824a8611ce11e0e932b0ab39f2569 commit: 3c61cf387cbf669579427f4ae74ead6def746121 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Oct 27 19:57:36 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Oct 27 19:57:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c61cf38 x11-plugins/wmcp: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 x11-plugins/wmcp/wmcp-1.2.8.ebuild | 42 -------------------------------------- 1 file changed, 42 deletions(-) diff --git a/x11-plugins/wmcp/wmcp-1.2.8.ebuild b/x11-plugins/wmcp/wmcp-1.2.8.ebuild deleted file mode 100644 index eda159623e3..00000000000 --- a/x11-plugins/wmcp/wmcp-1.2.8.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="A pager dockapp" -HOMEPAGE="https://www.dockapps.net/wmcp" -SRC_URI="https://www.dockapps.net/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ~mips ppc sparc x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc33.patch - epatch "${FILESDIR}"/${P}-stdlibh.patch - sed -i -e "s:gcc:$(tc-getCC):g" Makefile - sed -i -e "s:i686-pc-linux-gnu-gcc -g:i686-pc-linux-gnu-gcc:g" Makefile - sed -i -e "s:i686-pc-linux-gnu-gcc -o:i686-pc-linux-gnu-gcc ${LDFLAGS} -o:" Makefile -} - -src_compile() { - emake -j1 INCLUDES="-I/usr/include/X11" \ - LIBINC="-L/usr/$(get_libdir)" \ - FLAGS="${CFLAGS}" || die "emake failed." -} - -src_install() { - dobin wmcp - dodoc README -}