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 32ACC139085 for ; Mon, 6 Feb 2017 22:48:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C381721C18D; Mon, 6 Feb 2017 22:47:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 993F321C18E for ; Mon, 6 Feb 2017 22:47:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAA5F3416AA for ; Mon, 6 Feb 2017 22:47:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95EB83DD2 for ; Mon, 6 Feb 2017 22:47:28 +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: <1486421207.0e511dfe082cf36accc8e0793a97e027f8eb2f31.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/habak/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/habak/habak-0.2.5-r2.ebuild X-VCS-Directories: x11-misc/habak/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0e511dfe082cf36accc8e0793a97e027f8eb2f31 X-VCS-Branch: master Date: Mon, 6 Feb 2017 22:47: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: bbda2f7e-3553-41e4-ab71-78e0bdf18fd4 X-Archives-Hash: 14f2775d8dd57ee502bbc6dfca837559 commit: 0e511dfe082cf36accc8e0793a97e027f8eb2f31 Author: Harri Nieminen gmail com> AuthorDate: Mon Feb 6 15:42:21 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 6 22:46:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e511dfe x11-misc/habak: EAPI bump 2 -> 6 Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3848 x11-misc/habak/habak-0.2.5-r2.ebuild | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/x11-misc/habak/habak-0.2.5-r2.ebuild b/x11-misc/habak/habak-0.2.5-r2.ebuild new file mode 100644 index 00000000..ab1bd97 --- /dev/null +++ b/x11-misc/habak/habak-0.2.5-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="A simple but powerful tool to set desktop wallpaper" +HOMEPAGE="http://home.gna.org/fvwm-crystal/" +SRC_URI="http://download.gna.org/fvwm-crystal/${PN}/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="media-libs/imlib2[X] + x11-libs/libX11" +DEPEND="${RDEPEND} + x11-proto/xproto" + +# Skip into the src directory so we avoid a recursive make call that +# is going to break parallel make. +S="${WORKDIR}/${P}/src" + +DOCS=( ChangeLog README TODO "${FILESDIR}"/README.en ) + +src_prepare() { + default + sed -i \ + -e '/(LDFLAGS)/s:$: -lImlib2 -lm -lX11:' \ + -e 's:gcc:$(CC):' \ + "${S}"/Makefile || die "Makefile fixing failed" +} + +src_compile() { + emake CC="$(tc-getCC)" ${PN} +} + +src_install() { + dobin ${PN} + cd "${WORKDIR}/${P}" || die + einstalldocs +}