Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 153160 | Differences between
and this patch

Collapse All | Expand All

(-)/var/portage/portage/x11-misc/xcalib/xcalib-0.6.ebuild (-5 / +17 lines)
Lines 2-28 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcalib/xcalib-0.6.ebuild,v 1.2 2006/10/22 21:25:30 malc Exp $
3
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcalib/xcalib-0.6.ebuild,v 1.2 2006/10/22 21:25:30 malc Exp $
4
4
5
inherit toolchain-funcs eutils
6
5
DESCRIPTION="xcalib is a tiny monitor calibration loader for X.org"
7
DESCRIPTION="xcalib is a tiny monitor calibration loader for X.org"
6
HOMEPAGE="http://www.etg.e-technik.uni-erlangen.de/web/doe/xcalib/"
8
HOMEPAGE="http://www.etg.e-technik.uni-erlangen.de/web/doe/xcalib/"
7
SRC_URI="http://www.etg.e-technik.uni-erlangen.de/web/doe/xcalib/xcalib-source-${PV}.tar.gz"
9
SRC_URI="http://www.etg.e-technik.uni-erlangen.de/web/doe/xcalib/xcalib-source-${PV}.tar.gz"
8
10
9
LICENSE="GPL-2"
11
LICENSE="GPL-2"
10
SLOT="0"
12
SLOT="0"
11
KEYWORDS="~amd64 ~ppc"
13
KEYWORDS="~amd64 ~ppc ~x86"
12
IUSE=""
14
IUSE=""
13
15
14
DEPEND="
16
RDEPEND="
15
	x11-libs/libX11
17
	x11-libs/libX11
16
	x11-libs/libXext
18
	x11-libs/libXext
17
	x11-libs/libXxf86vm
19
	x11-libs/libXxf86vm
20
"
21
DEPEND="
22
	${RDEPEND}
18
	x11-proto/xf86vidmodeproto
23
	x11-proto/xf86vidmodeproto
19
"
24
"
20
RDEPEND=""
25
26
src_unpack() {
27
	unpack ${A}
28
	cd "${S}"
29
	epatch "${FILESDIR}"/${PV}-Makefile.patch
30
}
21
31
22
src_compile() {
32
src_compile() {
23
	emake || die 'make failed'
33
	emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
34
		|| die 'make failed'
24
}
35
}
25
36
26
src_install() {
37
src_install() {
27
	dobin xcalib
38
	dobin xcalib || die "dobin failed"
39
	dodoc README || die "dodoc failed"
28
}
40
}

Return to bug 153160