blob: c0c2ea777363e622b15d520421d08c82559d8f3a (
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
36
37
38
39
40
41
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.1.ebuild,v 1.5 2009/08/01 06:13:55 mr_bones_ Exp $
EAPI="1"
CMAKE_IN_SOURCE_BUILD=1
inherit cmake-utils
DESCRIPTION="QtOctave is a Qt4 front-end for Octave"
HOMEPAGE="http://forja.rediris.es/projects/csl-qtoctave/"
SRC_URI="http://forja.rediris.es/frs/download.php/877/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4
x11-libs/qt-svg:4"
RDEPEND="${DEPEND}
>=sci-mathematics/octave-3.0.0"
S="${WORKDIR}"/${P}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc4.4.patch
}
src_compile() {
mycmakeargs="-DCMAKE_SKIP_RPATH:BOOL=YES"
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
dodoc readme.txt news.txt
}
|