Overlay/x11-drivers/snail/snail-9999.ebuild

49 lines
935 B
Bash
Raw Normal View History

2012-05-16 18:24:05 +04:00
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
2021-06-21 14:22:01 +03:00
EAPI="6"
2012-05-16 18:24:05 +04:00
2018-03-28 19:04:39 +03:00
EGIT_REPO_URI="https://git.backbone.ws/kolan/snail.git"
2012-05-16 18:24:05 +04:00
2015-10-12 19:44:08 +03:00
[[ 9999 == ${PV} ]] && vcs=git-r3
inherit $vcs eutils
if [[ 9999 != ${PV} ]]; then
2018-03-28 19:04:39 +03:00
SRC_URI="https://git.backbone.ws/kolan/snail/archive/v${PVR}.tar.gz -> snail-${PVR}.tar.gz"
2012-05-16 18:24:05 +04:00
KEYWORDS="-* ~x86 ~amd64"
fi
DESCRIPTION="Snail - nVidia Optimus support"
2018-03-28 19:04:39 +03:00
HOMEPAGE="https://git.backbone.ws/kolan/Snail"
2012-05-16 18:24:05 +04:00
LICENSE="GPL-3"
SLOT="0"
2012-05-16 18:24:05 +04:00
IUSE=""
DEPEND="x11-drivers/nvidia-drivers
sys-power/bbswitch
sys-apps/dmidecode"
RDEPEND="${DEPEND}"
src_prepare() {
if [[ 9999 == ${PV} ]] ; then
2012-05-16 18:24:05 +04:00
# Allow user patches to be applied without modifying the ebuild
epatch_user
fi
}
src_install() {
if [[ 9999 == ${PV} ]] ; then
2012-05-16 18:24:05 +04:00
emake install DESTDIR="${D}"
else
emake install DESTDIR="${D}" || die
fi
}
pkg_postinst() {
snail.configure
}