summaryrefslogtreecommitdiff
blob: 5fbc18640ef720782919130afa04ae984526911b (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z.ebuild,v 1.4 2003/11/29 19:35:29 plasmaroo Exp $

S="${WORKDIR}/${PN}${PV}"
SRC_URI="mirror://sourceforge/blt/BLT2.4z.tar.gz"
HOMEPAGE="http://www.sourceforge.net/blt/"
DESCRIPTION="BLT is an extension to the Tk toolkit adding new widgets, geometry managers, and miscellaneous commands."

DEPEND=">=dev-lang/tk-8.0"

SLOT="0"
LICENSE="BSD"
KEYWORDS="x86"

src_unpack() {

	unpack ${A}
	epatch ${FILESDIR}/blt2.4z-install.diff

}

src_compile() {

	cd ${S}
	./configure --host=${CHOST} \
				--prefix=/usr \
				--mandir=/usr/share/man \
				--infodir=/usr/share/info \
				--with-x \
				--with-tcl=/usr/lib || die "./configure failed"

	make CFLAGS="${CFLAGS}" || die

}

src_install() {

	dodir /usr/bin
	dodir /usr/lib/blt2.4/demos/bitmaps
	dodir /usr/share/man/mann
	dodir /usr/include
	emake \
			INSTALL_ROOT=${D} \
			install || die

	dodoc NEWS PROBLEMS README

}