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 51EEE1382C5 for ; Sun, 14 Mar 2021 23:41:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34DCEE088A; Sun, 14 Mar 2021 23:41:10 +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 BD23CE088A for ; Sun, 14 Mar 2021 23:41:09 +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 4ED50340DB4 for ; Sun, 14 Mar 2021 23:41:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72F7E3F9 for ; Sun, 14 Mar 2021 23:41:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1615764812.76f1eb909d43aae1b76d420ddb54e4afa5c305b1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxde-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxde-base/lxde-common/lxde-common-0.99.2-r1.ebuild X-VCS-Directories: lxde-base/lxde-common/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 76f1eb909d43aae1b76d420ddb54e4afa5c305b1 X-VCS-Branch: master Date: Sun, 14 Mar 2021 23:41:04 +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: 046cb3f2-0745-4abc-a416-8f01e8f91d41 X-Archives-Hash: fe367c1296a7a20e93418e332c3ee8b1 commit: 76f1eb909d43aae1b76d420ddb54e4afa5c305b1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 14 00:23:17 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 14 23:33:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f1eb90 lxde-base/lxde-common: EAPI-7 bump, drop bogus GTK2 RDEPEND Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> lxde-base/lxde-common/lxde-common-0.99.2-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lxde-base/lxde-common/lxde-common-0.99.2-r1.ebuild b/lxde-base/lxde-common/lxde-common-0.99.2-r1.ebuild new file mode 100644 index 00000000000..764cf19a11d --- /dev/null +++ b/lxde-base/lxde-common/lxde-common-0.99.2-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="LXDE Session default configuration files and nuoveXT2 iconset" +HOMEPAGE="https://wiki.lxde.org/en/LXDE_Common" +SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86 ~x86-linux" +IUSE="" + +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig +" +PDEPEND="lxde-base/lxde-icon-theme" + +src_install() { + emake DESTDIR="${D}" install + # install session file + insinto /etc/X11/Sessions/ + doins "${FILESDIR}/lxde" + fperms 755 /etc/X11/Sessions/lxde + dodoc AUTHORS ChangeLog README +}