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 53A6F139695 for ; Mon, 29 May 2017 12:19:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4D5B21C039; Mon, 29 May 2017 12:19:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84BC221C039 for ; Mon, 29 May 2017 12:19:31 +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 404413416E8 for ; Mon, 29 May 2017 12:19:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADCC9746C for ; Mon, 29 May 2017 12:19:28 +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: <1496060352.54dad47e478953c0eb8d892682aa39cf7039f500.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-r3.ebuild X-VCS-Directories: x11-plugins/wmdrawer/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 54dad47e478953c0eb8d892682aa39cf7039f500 X-VCS-Branch: master Date: Mon, 29 May 2017 12:19:28 +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: 196ef794-6e2c-4b35-89da-fe85a2fb8e53 X-Archives-Hash: 14e032b0cda394c4f3d32de8a35d3a62 commit: 54dad47e478953c0eb8d892682aa39cf7039f500 Author: Bernard Cafarelli gentoo org> AuthorDate: Mon May 29 12:18:00 2017 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Mon May 29 12:19:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54dad47e x11-plugins/wmdrawer: decompress manpage, bug #619980 Also update EAPI Package-Manager: Portage-2.3.6, Repoman-2.3.2 x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild new file mode 100644 index 00000000000..b27b454cb21 --- /dev/null +++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +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/gtk+:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( README TODO AUTHORS ChangeLog wmdrawerrc.example ) +PATCHES=( "${FILESDIR}"/${P}-gtk+-2.patch ) + +src_prepare() { + default + + gunzip doc/wmdrawer.1x.gz || die + + # 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 + doman doc/wmdrawer.1x + einstalldocs +}