squash commits
README.md: edit readme games-action/multimc5: add games-action/multimc5 media-fonts/scientifica: add media-fonts/scientifica media-fonts/tewi-font: fix typos media-fonts/tewi-font: add manifest media-fonts/scientifica: add manifest media-fonts/berry: add media-fonts/berry media-fonts/undefined-medium: add media-fonts/undefined-medium x11-misc/lesbar: add x11-misc/lesbar app-text/kibi: add app-text/kibi sys-block/lethe: add sys-block/lethe
This commit is contained in:
commit
ebbc3a11c8
19 changed files with 801 additions and 0 deletions
55
games-action/multimc5/multimc5-9999.ebuild
Normal file
55
games-action/multimc5/multimc5-9999.ebuild
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils cmake-utils git-r3
|
||||
|
||||
DESCRIPTION="An advanced open-source launcher for Minecraft written in Qt5."
|
||||
HOMEPAGE="https://multimc.org/"
|
||||
EGIT_REPO_URI="https://github.com/MultiMC/MultiMC5.git"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qttest:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtxml:5
|
||||
dev-java/icedtea-bin
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
x11-apps/xrandr
|
||||
sys-libs/zlib
|
||||
virtual/opengl
|
||||
virtual/jdk
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
git submodule update --init
|
||||
cmake-utils_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_INSTALL_PREFIX="/usr"
|
||||
-DMultiMC_LAYOUT=lin-system
|
||||
-DMultiMC_NOTIFICATION_URL:STRING="https://files.multimc.org/notifications.json"
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
mkdir -p "${D}/usr/share/pixmaps" "${D}/usr/share/applications"
|
||||
cp "${S}/application/resources/multimc/scalable/multimc.svg" "${D}/usr/share/pixmaps/multimc5.svg"
|
||||
cp "${FILESDIR}/multimc5.desktop" "${D}/usr/share/applications/multimc5.desktop"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue