forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-util/xboxdrv: Repoint package to my own patched fork
I've been sitting on a pile of patches for some years and I've finally got around to putting them all together for use here. Meanwhile upstream has been largely dormant. The situation there is unclear. The patches are a mixture of stability fixes, bug fixes, build fixes, and support for more devices, authored by me and others. They don't include my Steam Controller patch as this does not work very well. I am aware that the daemon does occasionally still crash but it's a lot better than it was. Package-Manager: Portage-2.3.56, Repoman-2.3.12 Signed-off-by: James Le Cuirot <[email protected]>
- Loading branch information
Showing
3 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST xboxdrv-0.8.8_p20190116.tar.gz 322469 BLAKE2B 8827cafb98235f7ad9d83204c808eb6bc25fdfd48321050ab79b561fc6a1a3b628e4bd667f7f1be511420514ef7906efc803db4f50130c393d7fa3cb498fed26 SHA512 3f9f8346a5a8486fb9f1af3e27a947e37c73ceab8f433639adf890144844f4fb6d005da3c4c6c1abf0a1550b71aba8b89001f58965d67fdc21e5f41e50a21436 | ||
DIST xboxdrv-linux-0.8.8.tar.bz2 267919 BLAKE2B b6f09fc929ba561f0c18a777ca94f6972f366d29709d5fdcb168988311ca53eb813761df0f87d148795aa14d2d89b200e8123502c0b255ebe20e5f9caa18f8f1 SHA512 2978b33d23636431ee0cc393ea32d3d26ebe9f2b914f0bf8bc0e096f98202726768142e653bc5765ac55084b105ff3a6214bdf6e745fdd8aa167260c54c10494 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,8 @@ | |
<email>[email protected]</email> | ||
<name>Gentoo Games Project</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">chewi/xboxdrv</remote-id> | ||
<remote-id type="gitlab">xboxdrv/xboxdrv</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PYTHON_COMPAT=( python2_7 python3_6 ) | ||
|
||
inherit linux-info python-any-r1 scons-utils toolchain-funcs systemd udev | ||
|
||
COMMIT="0c0143b59b0fd9718af4968992c96b6b6b2a2557" | ||
DESCRIPTION="Userspace Xbox 360 Controller driver" | ||
HOMEPAGE="https://xboxdrv.gitlab.io" | ||
SRC_URI="https://github.com/chewi/xboxdrv/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" | ||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND=" | ||
dev-libs/boost:= | ||
dev-libs/dbus-glib | ||
dev-libs/glib:2 | ||
sys-apps/dbus | ||
virtual/libudev:= | ||
virtual/libusb:1 | ||
x11-libs/libX11 | ||
" | ||
|
||
DEPEND=" | ||
${RDEPEND} | ||
" | ||
|
||
BDEPEND=" | ||
virtual/pkgconfig | ||
" | ||
|
||
S="${WORKDIR}/${PN}-${COMMIT}" | ||
|
||
CONFIG_CHECK="~INPUT_EVDEV ~INPUT_JOYDEV ~INPUT_UINPUT ~!JOYSTICK_XPAD" | ||
|
||
src_prepare() { | ||
default | ||
|
||
# Make it clearer that this is a patched fork. | ||
echo -n "${PV%_*}.${PV#*_p}-gentoo" > VERSION || die | ||
} | ||
|
||
src_compile() { | ||
escons \ | ||
BUILD=custom \ | ||
CXX="$(tc-getCXX)" \ | ||
AR="$(tc-getAR)" \ | ||
RANLIB="$(tc-getRANLIB)" \ | ||
CXXFLAGS="-Wall ${CXXFLAGS}" \ | ||
LINKFLAGS="${LDFLAGS}" | ||
} | ||
|
||
src_install() { | ||
dobin xboxdrv | ||
doman doc/xboxdrv.1 | ||
dodoc AUTHORS NEWS PROTOCOL README.md TODO | ||
|
||
newinitd "${FILESDIR}"/xboxdrv.initd xboxdrv | ||
newconfd "${FILESDIR}"/xboxdrv.confd xboxdrv | ||
|
||
insinto /etc/dbus-1/system.d | ||
doins "${FILESDIR}"/org.seul.Xboxdrv.conf | ||
|
||
udev_newrules "${FILESDIR}"/xboxdrv.udev-rules 99-xbox-controller.rules | ||
systemd_dounit "${FILESDIR}"/xboxdrv.service | ||
} | ||
|
||
pkg_postinst() { | ||
udev_reload | ||
} |