summaryrefslogtreecommitdiff
blob: ec25ad2d9210829ae363bc019cbff7fa4a48e4c7 (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
52
53
54
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.1.0_beta10-r1.ebuild,v 1.4 2002/07/11 06:30:56 drobbins Exp $

MYVER=${PV/_beta/b}
S=${WORKDIR}/${PN}-${MYVER}

DESCRIPTION="C++ user interface toolkit for X and OpenGL."
LICENSE="FLTK | GPL-2"
SLOT="0"
KEYWORDS="x86"

SRC_URI="ftp://ftp.easysw.com/pub/fltk/${MYVER}/${PN}-${MYVER}-source.tar.bz2"

HOMEPAGE="http://www.fltk.org"

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


src_compile() {

	local myconf
	#shared libraries diabled by default
	myconf="--enable-shared"

	use opengl || myconf="$myconf --disable-gl" #default enabled
	
#Learned '${prefix}' trick from studying python ebuild
#There are no info files 
    ./configure \
		--prefix=/usr \
		--mandir='${prefix}'/share/man \
		--host=${CHOST} \
		${myconf} || die "Configuration Failed"
		
    emake || die "Parallel Make Failed"

}

src_install () {

    make prefix=${D}/usr/ \
		install || 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

}