summaryrefslogtreecommitdiff
blob: c966413c94d6c50ad174b8ceaf92f405ef8ec2e1 (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
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.0.11-r3.ebuild,v 1.11 2004/04/17 23:02:17 aliz Exp $

IUSE="opengl"

DESCRIPTION="C++ user interface toolkit for X and OpenGL."
SRC_URI="ftp://ftp.fltk.org/pub/fltk/${PV}/${P}-source.tar.bz2"
HOMEPAGE="http://www.fltk.org"

SLOT="1.0"
LICENSE="FLTK | GPL-2"
KEYWORDS="x86 sparc"

DEPEND="virtual/x11
	opengl? ( virtual/opengl )"


src_compile() {

	local myconf
	myconf="--enable-shared"

	use opengl || myconf="${myconf} --disable-gl" #default enabled

	econf \
		--includedir=/usr/include/fltk-1.0 \
		--libdir=/usr/lib/fltk-1.0 \
		--program-suffix=-old \
		${myconf} || die "Configuration Failed"

	emake CXX="g++" || die "Parallel Make Failed"

}

src_install () {

	einstall \
		includedir=${D}/usr/include/fltk-1.0 \
		libdir=${D}/usr/lib/fltk-1.0 || die "Installation Failed"

	dodoc CHANGES COPYING README

	dodir /usr/share/doc/${PF}/html
	mv ${D}/usr/share/doc/fltk/* ${D}/usr/share/doc/${PF}/html
	rmdir ${D}/usr/share/doc/fltk

	echo "LDPATH=/usr/lib/fltk-1.0" > 99fltk1.0
	insinto /etc/env.d
	doins 99fltk1.0
}