blob: e41f716792212f152826b5622ee06b1aef5125b3 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/surf/surf-1.0.6.ebuild,v 1.1 2010/05/08 07:30:39 matsuu Exp $
EAPI="2"
DESCRIPTION="a tool to visualize algebraic curves and algebraic surfaces"
HOMEPAGE="http://surf.sourceforge.net/"
SRC_URI="mirror://sourceforge/surf/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="cups"
RDEPEND="x11-libs/gtk+:1
cups? ( net-print/cups )
>=dev-libs/gmp-2
sys-libs/zlib
media-libs/tiff
media-libs/jpeg"
DEPEND="${RDEPEND}
>=sys-devel/flex-2.5"
src_configure() {
econf $(use_enable cups) || die
}
src_install() {
emake DESTDIR="${D}" install install-man || die
dodoc AUTHORS ChangeLog NEWS README TODO || die
for d in examples/*
do
docinto ${d} || die
dodoc ${d}/* || die
done
}
|