blob: 44ed375cde67ca47027e40e1630188971a16ddb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="A graphical grub2 settings manager"
HOMEPAGE="https://launchpad.net/grub-customizer"
SRC_URI="https://launchpad.net/grub-customizer/$(ver_cut 1-2)/${PV}/+download/grub-customizer_${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
app-arch/libarchive:=
dev-cpp/gtkmm:3.0
dev-libs/openssl:=
"
RDEPEND="
${DEPEND}
sys-apps/hwinfo
"
BDEPEND="virtual/pkgconfig"
PATCHES=(
# prevent -fPIE being added
"${FILESDIR}/${P}-fix-flags.patch"
)
src_prepare() {
cmake_src_prepare
gunzip misc/manpage.gz || die
sed -i -e 's/manpage.gz/manpage/' -e 's/\(grub-customizer.1\).gz/\1/' CMakeLists.txt || die
}
|