# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-sci/tilp/tilp-6.74.ebuild,v 1.2 2004/09/03 15:28:15 dholm Exp $ inherit eutils DESCRIPTION="TiLP - A linking program for Texas Instruments' graphing calculators" HOMEPAGE="http://tilp.info/" SRC_URI="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.3 >=dev-libs/libtifiles-0.5.9 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 }