# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 inherit bash-completion-r1 udev DESCRIPTION="Automatically select a display configuration based on connected devices" HOMEPAGE="https://github.com/phillipberndt/autorandr" SRC_URI="https://github.com/phillipberndt/autorandr/archive/${PV}.zip" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="pm-utils systemd udev" DEPEND=" virtual/pkgconfig ${RDEPEND} " RDEPEND=" pm-utils? ( sys-power/pm-utils ) systemd? ( sys-apps/systemd ) udev? ( virtual/udev ) " src_install() { targets="autorandr" if use pm-utils; then targets="$targets pmutils" fi if use systemd; then targets="$targets systemd" fi if use udev; then targets="$targets udev" fi emake DESTDIR="${D}" install TARGETS="$targets" || die "Make failed!" newbashcomp contrib/bash_completion/${PN} ${PN} } pkg_postinst() { if use udev; then udev_reload fi }