You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/phctool/phctool-0.5.2.2-r2.ebuild

79 lines
1.9 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
PYTHON_DEPEND="2"
inherit eutils python user
DESCRIPTION="Processor Hardware Control userland configuration tool"
HOMEPAGE="http://www.linux-phc.org/"
SRC_URI="http://www.linux-phc.org/forum/download/file.php?id=50 -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc sudo"
RDEPEND="dev-python/egg-python
dev-python/pygtk:2
sudo? ( app-admin/sudo )"
S="${WORKDIR}/${PV%.*}-${PV##*.}/${PN}"
pkg_setup() {
MY_PROGDIR="/usr/share/${PN}"
if use sudo ; then
MY_GROUPNAME="phcusers"
enewgroup ${MY_GROUPNAME}
fi
python_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}"/${P}_all_paths_tray.patch
if use sudo ; then
epatch "${FILESDIR}"/${P}_all_paths_tool_sudo.patch
else
epatch "${FILESDIR}"/${P}_all_paths_tool_no_sudo.patch
fi
epatch "${FILESDIR}"/${P}_kernel_2.6.36.patch
epatch "${FILESDIR}"/${P}_gui_kernel_2.6.38.patch
find . -name "*.pyc" -delete || die
}
src_install() {
newbin phctool.sh phctool
newbin phctray.sh phctray
exeinto ${MY_PROGDIR}
doexe phc{tool,tray}.py subphctool.sh
insinto ${MY_PROGDIR}
doins -r inc
if use sudo ; then
fowners -R ":${MY_GROUPNAME}" "${MY_PROGDIR}"
fperms g+rX "${MY_PROGDIR}"
dodir /etc/sudoers.d
echo "#%${MY_GROUPNAME} ALL=(root) NOPASSWD:${MY_PROGDIR}/subphctool.sh" \
> "${ED}"/etc/sudoers.d/${PN} || die
fperms a-w,o-r /etc/sudoers.d/${PN}
fi
dodoc CHANGELOG
if use doc; then
dohtml -r doc/docfiles doc/index.htm
fi
}
pkg_postinst() {
if use sudo; then
einfo "You have to add a line to /etc/sudoers to get access to"
einfo "/sys/devices/system/cpu/cpu1/cpufreq/phc_controls from the phctool/phctray"
einfo "Please check and uncomment the content of /etc/sudoers.d/${PN}"
else
einfo "Group not automatically added. Please run phctool as root."
fi
}