diff options
author | Florian Schmaus <flow@gentoo.org> | 2021-06-28 11:13:33 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2021-06-28 11:29:10 +0200 |
commit | 18018454bd6a64cac7aeee5d959734796a6596d5 (patch) | |
tree | f9291d8d07ca9cd024c99e0149184561ff64f374 /x11-misc/autorandr/autorandr-9999.ebuild | |
parent | dev-python/asgiref: Bump to 3.4.0 (diff) | |
download | gentoo-18018454bd6a64cac7aeee5d959734796a6596d5.tar.gz gentoo-18018454bd6a64cac7aeee5d959734796a6596d5.tar.bz2 gentoo-18018454bd6a64cac7aeee5d959734796a6596d5.zip |
x11-misc/autorandr: initial import
Closes: https://bugs.gentoo.org/602516
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'x11-misc/autorandr/autorandr-9999.ebuild')
-rw-r--r-- | x11-misc/autorandr/autorandr-9999.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/x11-misc/autorandr/autorandr-9999.ebuild b/x11-misc/autorandr/autorandr-9999.ebuild new file mode 100644 index 000000000000..ed4862997200 --- /dev/null +++ b/x11-misc/autorandr/autorandr-9999.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..10} ) + +inherit bash-completion-r1 distutils-r1 systemd udev + +if [[ "${PV}" = "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/phillipberndt/${PN}.git" +else + SRC_URI="https://github.com/phillipberndt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Automatically select a display configuration based on connected devices" +HOMEPAGE="https://github.com/phillipberndt/autorandr" + +LICENSE="GPL-3" +SLOT="0" +IUSE="launcher udev" + +RDEPEND=" + launcher? ( x11-libs/libxcb ) + udev? ( virtual/udev ) +" +DEPEND=" + virtual/pkgconfig + ${RDEPEND} +" + +src_compile() { + distutils-r1_src_compile + + if use launcher; then + emake contrib/autorandr_launcher/autorandr-launcher + fi +} + +src_install() { + distutils-r1_src_install + + doman autorandr.1 + + local targets=( + autostart_config + bash_completion + systemd + $(usev launcher) + $(usev udev) + ) + + emake DESTDIR="${D}" \ + BASH_COMPLETIONS_DIR="$(get_bashcompdir)" \ + SYSTEMD_UNIT_DIR="$(systemd_get_systemunitdir)" \ + UDEV_RULES_DIR="$(get_udevdir)"/rules.d \ + $(printf "install_%s " "${targets[@]}") +} + +pkg_postinst() { + if use udev; then + udev_reload + fi +} |