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 CE900138335 for ; Tue, 11 Dec 2018 14:29:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7228E0B0F; Tue, 11 Dec 2018 14:29:38 +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 B7886E0B0F for ; Tue, 11 Dec 2018 14:29:38 +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 8D112335CCD for ; Tue, 11 Dec 2018 14:29:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E990A4E1 for ; Tue, 11 Dec 2018 14:29:35 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1544538475.4dfe7de61cea57922e79346461997acd3ff2e8b5.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild X-VCS-Directories: x11-plugins/wmdrawer/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 4dfe7de61cea57922e79346461997acd3ff2e8b5 X-VCS-Branch: master Date: Tue, 11 Dec 2018 14:29:35 +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: 5132a667-d20e-4992-8710-2d5d99bf15ce X-Archives-Hash: 8529a76d540aad550def39e32b7aba74 commit: 4dfe7de61cea57922e79346461997acd3ff2e8b5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Dec 7 14:08:35 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Dec 11 14:27:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dfe7de6 x11-plugins/wmdrawer: drop old Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild | 42 -------------------------- 1 file changed, 42 deletions(-) diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild deleted file mode 100644 index bc88d1485ea..00000000000 --- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils - -DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications" -HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/" -SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" -IUSE="" - -RDEPEND="x11-libs/gdk-pixbuf:2[X] - x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gtk+-2.patch - - # Honour Gentoo CFLAGS - sed -i -e "s|-O3|${CFLAGS}|" Makefile || die - # Fix LDFLAGS ordering per bug #248640 - sed -i -e 's/$(CC) $(LDFLAGS) -o $@ $(OBJS)/$(CC) -o $@ $(OBJS) $(LDFLAGS)/' Makefile || die - # Do not auto-strip binaries - sed -i -e 's/ strip $@//' Makefile || die - # Honour Gentoo LDFLAGS - sed -i -e 's/$(CC) -o/$(CC) $(REAL_LDFLAGS) -o/' Makefile || die -} - -src_compile() { - emake REAL_LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin wmdrawer - dodoc README TODO AUTHORS ChangeLog wmdrawerrc.example - doman doc/wmdrawer.1x.gz -}