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 563D91382C5 for ; Sun, 22 Apr 2018 13:01:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A533E08EA; Sun, 22 Apr 2018 13:01:02 +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 4753DE08E8 for ; Sun, 22 Apr 2018 13:01:02 +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 2CBB0335C73 for ; Sun, 22 Apr 2018 13:01:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA061290 for ; Sun, 22 Apr 2018 13:00:59 +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: <1524402020.3f3c79f2ef815755b452718512d7426f4f7ad571.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/commonbox-styles-extra/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/commonbox-styles-extra/commonbox-styles-extra-0.2-r2.ebuild X-VCS-Directories: x11-themes/commonbox-styles-extra/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3f3c79f2ef815755b452718512d7426f4f7ad571 X-VCS-Branch: master Date: Sun, 22 Apr 2018 13:00:59 +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: 8ba173c5-3532-4b93-9b91-0a1826b67c11 X-Archives-Hash: 17052d488b901612201d3a995cfea58c commit: 3f3c79f2ef815755b452718512d7426f4f7ad571 Author: Marty E. Plummer startmail com> AuthorDate: Sat Apr 21 20:06:32 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 22 13:00:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3c79f2 x11-themes/commonbox-styles-extra: EAPI bump Package-Manager: Portage-2.3.31, Repoman-2.3.9 .../commonbox-styles-extra-0.2-r2.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/x11-themes/commonbox-styles-extra/commonbox-styles-extra-0.2-r2.ebuild b/x11-themes/commonbox-styles-extra/commonbox-styles-extra-0.2-r2.ebuild index 21c0b311513..c2576a37de8 100644 --- a/x11-themes/commonbox-styles-extra/commonbox-styles-extra-0.2-r2.ebuild +++ b/x11-themes/commonbox-styles-extra/commonbox-styles-extra-0.2-r2.ebuild @@ -1,27 +1,28 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -IUSE="" +EAPI=6 + DESCRIPTION="Extra styles pack for flux|black|open(box)" -SRC_URI="mirror://gentoo/${P}.tar.bz2 - http://mkeadle.org/distfiles/${P}.tar.bz2" HOMEPAGE="http://mkeadle.org/" +SRC_URI="mirror://gentoo/${P}.tar.bz2 + http://mkeadle.org/distfiles/${P}.tar.bz2" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="" # xv is there so *box can convert backgrounds/textures to use -DEPEND="" RDEPEND="media-gfx/xv - || ( x11-wm/fluxbox x11-wm/blackbox x11-wm/openbox )" + || ( x11-wm/fluxbox x11-wm/blackbox x11-wm/openbox )" src_install () { insinto /usr/share/commonbox/styles - doins "${S}"/styles/* + doins -r styles/. insinto /usr/share/commonbox/backgrounds - doins "${S}"/backgrounds/* + doins -r backgrounds/. dodoc README.commonbox-styles-extra }