blob: ed864ba77b68457aae7dae676f884011e3969ea2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/kunit/kunit-0.5.ebuild,v 1.4 2006/01/19 00:00:45 cryos Exp $
inherit eutils
DESCRIPTION="An excellent qt-based unit conversion tool"
SRC_URI="http://www.netmeister.org/apps/${P}.tar.gz"
HOMEPAGE="http://www.netmeister.org/apps/kunit/"
KEYWORDS="x86 ppc amd64"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
DEPEND="=x11-libs/qt-3*"
src_compile() {
cd kunit
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die
}
src_install() {
dobin kunit/kunit
dodoc AUTHORS COPYING README
dohtml kunit/docs/*
make_desktop_entry kunit KUnit kunit Utility
}
|