blob: d9283c92c3ebea6b8c49655fcf9824be3e42e3c5 (
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-2008 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.2 2008/11/14 20:59:15 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-2"
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
}
|