games-util/xpadneo - 9999 (natinst)

Search

Install

Install this version:

emerge -a =games-util/xpadneo-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =games-util/xpadneo-9999

Or alternatively:

emerge --autounmask-write -a =games-util/xpadneo-9999

Package Information

Description:
Advanced Linux Driver for Xbox One Wireless Controller
Homepage:
https://atar-axis.github.io/xpadneo/
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit dkms udev

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/atar-axis/xpadneo.git"
	EGIT_MIN_CLONE_TYPE="single"
else
	SRC_URI="https://github.com/atar-axis/xpadneo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
fi

DESCRIPTION="Advanced Linux Driver for Xbox One Wireless Controller"
HOMEPAGE="https://atar-axis.github.io/xpadneo/"

LICENSE="GPL-3"
SLOT="0"

CONFIG_CHECK="INPUT_FF_MEMLESS"

src_prepare() {
	default
	sed "s/@DO_NOT_CHANGE@/${PV}/" \
		hid-xpadneo/dkms.conf.in > hid-xpadneo/dkms.conf || die
	cp VERSION hid-xpadneo/VERSION || die
}

src_compile() {
	local modlist=( hid-${PN}=kernel/drivers/hid:hid-${PN}:hid-${PN}/src )
	local modargs=( KERNEL_SOURCE_DIR="${KV_OUT_DIR}" )

	dkms_src_compile
}

src_install() {
	dkms_src_install

	# install modprobe.d/rules.d files and docs
	emake PREFIX="${ED}" ETC_PREFIX=/usr/lib DOC_PREFIX=/usr/share/doc/${PF} install
}

pkg_postinst() {
	dkms_pkg_postinst
	udev_reload

	if [[ ! ${REPLACING_VERSIONS} ]]; then
		elog "To pair the gamepad and view module options, see documentation in:"
		elog "  ${EROOT}/usr/share/doc/${PF}/"
	fi
}

pkg_postrm() {
	udev_reload
}

Inherited Eclasses