blob: 371b03ca8905c3be9f30da09f7ce53eac8f4c3a1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/monica/monica-3.7.ebuild,v 1.5 2009/11/09 12:50:48 maekke Exp $
inherit eutils
DESCRIPTION="Monica is a Monitor Calibration Tool"
HOMEPAGE="http://www.pcbypaul.com/software/monica.html"
SRC_URI="http://www.pcbypaul.com/software/dl/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="<x11-libs/fltk-2"
RDEPEND="${DEPEND}
x11-apps/xgamma"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-3.6-makefile-cleanup.patch
epatch "${FILESDIR}"/${P}-gcc44.patch
emake clean || die "emake clean failed"
}
src_compile() {
emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
dobin monica || die "dobin failed"
dodoc authors ChangeLog news readme
}
|