blob: 58152aaa94ea9eed47bf1285b53a2e97e5d4c199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nvoption/nvoption-0_alpha-r1.ebuild,v 1.6 2004/08/22 05:19:07 obz Exp $
MY_P="${P/-0/}"
DESCRIPTION="grapich front-end to change NVIDIA options in X mode"
HOMEPAGE="http://www.sorgonet.com/linux/nvoption/"
SRC_URI="http://www.sorgonet.com/linux/nvoption/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE="nls"
DEPEND="gnome-base/gnome-libs
=gnome-base/orbit-0*
=x11-libs/gtk+-1.2*"
RDEPEND="nls? ( sys-devel/gettext )"
S="${WORKDIR}/${PN}"
src_compile() {
local myconf="--with-gnome"
use nls \
&& myconf="${myconf} --disable-nls" \
|| myconf="${myconf} --enable-nls"
rm -rf config.cache
econf ${myconf} || die "econf failed"
cp Makefile Makefile.old
sed -e 's:intl po macros src:src:' Makefile.old > Makefile
emake || die "make failed"
}
src_install() {
einstall
dodoc AUTHORS ChangeLog NEWS README
insinto /usr/share/pixmaps/${PN}
newins ${FILESDIR}/nvidiaok.png nvidiaok.pix
}
|