blob: a02a48322fc075af31689c64957875a10234f72e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/monica/monica-3.6.ebuild,v 1.1 2007/11/15 09:11:33 robbat2 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="~x86 ~ppc ~amd64"
IUSE=""
DEPEND="x11-libs/fltk"
RDEPEND="x11-apps/xgamma
${DEPEND}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-makefile-cleanup.patch
cd "${S}"
make clean
}
src_compile() {
emake CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin monica
dodoc AUTHORS ChangeLog NEWS README
}
|