You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-util/antimicro/antimicro-2.23.ebuild

56 lines
1.1 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake xdg
DESCRIPTION="Map keyboard and mouse buttons to gamepad buttons"
HOMEPAGE="https://github.com/AntiMicro/antimicro"
SRC_URI="https://github.com/AntiMicro/antimicro/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
media-libs/libsdl2[X,joystick]
x11-libs/libX11
x11-libs/libXtst
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${P}-linking-errors.patch
"${FILESDIR}"/${PN}-2.23-no-compress-man-page.patch
"${FILESDIR}"/${PN}-2.23-SDL2-include.patch
"${FILESDIR}"/${PN}-2.23-gcc11-ptr-compare.patch
)
src_prepare() {
xdg_environment_reset
cmake_src_prepare
}
src_configure() {
# TODO: Currently does not build w/o X
# (!X would be: -DWITH_XTEST=OFF -DWITH_UINPUT=ON)
local mycmakeargs=(
-DUSE_QT5=ON
-DUSE_SDL_2=ON
-DWITH_X11=ON
-DWITH_XTEST=ON
-DWITH_UINPUT=OFF
)
cmake_src_configure
}