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/app-admin/verynice/verynice-1.1.ebuild

44 lines
1.2 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/verynice/verynice-1.1.ebuild,v 1.15 2011/05/09 21:55:41 xmw Exp $
inherit toolchain-funcs
DESCRIPTION="A tool for dynamically adjusting the nice-level of processes"
HOMEPAGE="http://thermal.cnde.iastate.edu/~sdh4/verynice/"
SRC_URI="http://thermal.cnde.iastate.edu/~sdh4/verynice/down/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
sed -i -e 's:CFLAGS=:CFLAGS+=:' "${S}"/Makefile \
|| die "sed of Makefile failed"
}
src_compile() {
emake CC="$(tc-getCC)" LINK="$(tc-getCC) ${LDFLAGS}" RPM_BUILD_ROOT="${D}" PREFIX=/usr || die "emake failed"
}
src_install(){
# the install looks for this directory.
dodir /etc/init.d
einstall RPM_BUILD_ROOT="${D}" PREFIX=/usr || die
# odd, the config file is installed +x
fperms a-x /etc/verynice.conf
# make the doc install Gentooish
mv "${D}"/usr/share/doc/${P}/* "${T}" || die "mv failed"
dodoc "${T}"/{CHANGELOG,README*}
dohtml "${T}"/*
doinitd "${FILESDIR}"/verynice || die "doinitd failed"
}