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 59C9B158041 for ; Sun, 5 Sep 2021 19:25:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A21EAE070D; Sun, 5 Sep 2021 19:25:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 819E2E070D for ; Sun, 5 Sep 2021 19:25:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2AE713404A5 for ; Sun, 5 Sep 2021 19:25:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 826CF7A for ; Sun, 5 Sep 2021 19:25:42 +0000 (UTC) From: "Max Grinberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Max Grinberg" Message-ID: <1630869877.ef71fd6c4c04e393f596d3c8eab828144be693e8.max3227@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/grub-customizer/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/grub-customizer/Manifest app-admin/grub-customizer/grub-customizer-5.1.0.ebuild app-admin/grub-customizer/metadata.xml X-VCS-Directories: app-admin/grub-customizer/ X-VCS-Committer: max3227 X-VCS-Committer-Name: Max Grinberg X-VCS-Revision: ef71fd6c4c04e393f596d3c8eab828144be693e8 X-VCS-Branch: dev Date: Sun, 5 Sep 2021 19:25:42 +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: 00a0f8d3-3285-4007-9d29-519ecc787798 X-Archives-Hash: 22b33473678ccb70961d73a0fe245c55 commit: ef71fd6c4c04e393f596d3c8eab828144be693e8 Author: Max Grinberg protonmail com> AuthorDate: Sun Sep 5 19:24:09 2021 +0000 Commit: Max Grinberg gmail com> CommitDate: Sun Sep 5 19:24:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ef71fd6c app-admin/grub-customizer: New package v5.1.0 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Max Grinberg protonmail.com> app-admin/grub-customizer/Manifest | 1 + .../grub-customizer/grub-customizer-5.1.0.ebuild | 39 ++++++++++++++++++++++ app-admin/grub-customizer/metadata.xml | 14 ++++++++ 3 files changed, 54 insertions(+) diff --git a/app-admin/grub-customizer/Manifest b/app-admin/grub-customizer/Manifest new file mode 100644 index 000000000..2d50cbb5b --- /dev/null +++ b/app-admin/grub-customizer/Manifest @@ -0,0 +1 @@ +DIST grub-customizer_5.1.0.tar.gz 578046 BLAKE2B 3d32db2523e70968786bd2d6b620ee3a42a312d0b892e38121b8869a155c23aa5ead9219e56e0a84109c0bcf84a4c1f00130a3565c8d28c77b1e23bbf669a2c4 SHA512 d79c7996afd8486483d4460432207dc19315d7377dcfd2fd6a4594e64c6750bbae36f96c395c4a9748d0ff43c6095399d822fc6a23beedbc8769802818dfa11f diff --git a/app-admin/grub-customizer/grub-customizer-5.1.0.ebuild b/app-admin/grub-customizer/grub-customizer-5.1.0.ebuild new file mode 100644 index 000000000..ac63aa61b --- /dev/null +++ b/app-admin/grub-customizer/grub-customizer-5.1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit cmake flag-o-matic + +DESCRIPTION="A graphical grub2 settings manager" +HOMEPAGE="https://launchpad.net/grub-customizer" +SRC_URI="https://launchpad.net/grub-customizer/5.1/5.1.0/+download/grub-customizer_5.1.0.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-cpp/gtkmm:3.0 + dev-libs/openssl + x11-themes/hicolor-icon-theme + sys-boot/grub:2 + sys-apps/hwinfo + app-arch/libarchive" + +RDEPEND="${DEPEND}" + +src_configure() { + CMAKE_BUILD_TYPE="release" + glib_path="/usr/include/"$(ls /usr/include/ | sed -n "/^glib-/p") + local mycmakeargs=(-DCMAKE_INSTALL_PREFIX=/usr -DEO_SOURCE_DIR:PATH=$glib_path) + append-cxxflags -I$glib_path -std=c++11 + append-cflags -I$glib_path + #append-cppflags -I$glib_path -std=c++11 + cmake_src_configure +} + +src_install() { + cmake_src_install + insinto /etc/grub-customizer +} diff --git a/app-admin/grub-customizer/metadata.xml b/app-admin/grub-customizer/metadata.xml new file mode 100644 index 000000000..30fb43bb0 --- /dev/null +++ b/app-admin/grub-customizer/metadata.xml @@ -0,0 +1,14 @@ + + + + + codeswhite@pm.me + Max Grinberg + + + Grub Customizer is a graphical interface to configure the GRUB2/BURG settings and menuentries + + + grub-customizer + +