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 8DEB9138334 for ; Sun, 12 May 2019 21:04:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DA98E089C; Sun, 12 May 2019 21:04:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 63797E0899 for ; Sun, 12 May 2019 21:04:39 +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 402B6344187 for ; Sun, 12 May 2019 21:04:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36318600 for ; Sun, 12 May 2019 21:04:35 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1557694921.6659bf94d92e6e7bc788723977c8c3255aed1e0b.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-menus/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-base/mate-menus/mate-menus-1.22.0-r1.ebuild X-VCS-Directories: mate-base/mate-menus/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 6659bf94d92e6e7bc788723977c8c3255aed1e0b X-VCS-Branch: master Date: Sun, 12 May 2019 21:04: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: c0c8ac2f-07dc-429f-adba-5bbc4111f3c3 X-Archives-Hash: 44b11d24cce6e7954e0444b3de8e62f3 commit: 6659bf94d92e6e7bc788723977c8c3255aed1e0b Author: NP-Hardass gentoo org> AuthorDate: Sun May 12 20:20:14 2019 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Sun May 12 21:02:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6659bf94 mate-base/mate-menus: remove unnecessary postinst Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek gentoo.org> mate-base/mate-menus/mate-menus-1.22.0-r1.ebuild | 44 ++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/mate-base/mate-menus/mate-menus-1.22.0-r1.ebuild b/mate-base/mate-menus/mate-menus-1.22.0-r1.ebuild new file mode 100644 index 00000000000..5fa032f4de2 --- /dev/null +++ b/mate-base/mate-menus/mate-menus-1.22.0-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +GNOME2_LA_PUNT="yes" + +inherit mate + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +DESCRIPTION="MATE menu system, implementing the F.D.O cross-desktop spec" +LICENSE="GPL-2 LGPL-2" +SLOT="0" + +IUSE="debug +introspection" + +COMMON_DEPEND=">=dev-libs/glib-2.50:2 + virtual/libintl + introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )" + +RDEPEND="${COMMON_DEPEND}" + +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.40 + sys-devel/gettext:* + virtual/pkgconfig:*" + +src_configure() { + # Do NOT compile with --disable-debug/--enable-debug=no as it disables API + # usage checks. + mate_src_configure \ + --enable-debug=$(usex debug yes minimum) \ + $(use_enable introspection) +} + +src_install() { + mate_src_install + + exeinto /etc/X11/xinit/xinitrc.d/ + doexe "${FILESDIR}/10-xdg-menu-mate" +}