blob: 95461e1665d7f6136aaa753a36937aa687cbaa47 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp/tilp-6.76.ebuild,v 1.2 2004/12/28 21:20:38 ribosome Exp $
inherit eutils
DESCRIPTION="TiLP - A linking program for Texas Instruments' graphing calculators"
HOMEPAGE="http://tilp.info/"
SRC_URI="mirror://sourceforge/tilp/${P}.tar.gz
mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="nls"
DEPEND=">=dev-libs/libticables-3.8.6
>=dev-libs/libticalcs-4.5.5
>=sci-libs/libtifiles-0.6.1
app-text/dos2unix
>=x11-libs/gtk+-2
>=gnome-base/libglade-2
nls? sys-devel/gettext"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-makefile.patch
epatch ${FILESDIR}/${PV}-makefile-desktop.patch
epatch ${FILESDIR}/keepdir.patch
}
src_compile() {
# Note the special option --with-fontpath-prefix below.
cd ${WORKDIR}/${P}/
./configure \
$(use_enable nls) \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--with-fontpath-prefix=${D}/usr/X11R6/lib/X11/fonts \
--enable-exit-homedir || die
emake || die
}
src_install() {
# The SHARE_DIR is required since it isn't set properly in a makefile.
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog NEWS README README.linux RELEASE THANKS TODO
keepdir /usr/lib/tilp
}
|