# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-20060824.ebuild,v 1.4 2007/02/07 18:46:34 calchan Exp $ HOMEPAGE="http://www.geda.seul.org" DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite" SRC_URI="http://www.geda.seul.org/devel/${PV}/libgeda-${PV}.tar.gz" IUSE="" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~sparc ~x86" SLOT="0" DEPEND=">=dev-libs/glib-2.4.8 >=x11-libs/gtk+-2.2 >=dev-scheme/guile-1.6.3" src_unpack() { unpack ${A} # Skip the share sub-directory, we'll install prolog.ps manually sed -i \ -e "s:SUBDIRS = src include scripts docs share:SUBDIRS = src include scripts docs:" \ ${S}/Makefile.in \ || die "Patch failed" } src_compile() { econf \ --disable-gdgeda \ --disable-dependency-tracking \ || die "Configuration failed" emake || die "Compilation failed" } src_install() { einstall || die "Installation failed" insinto /usr/share/gEDA doins share/prolog.ps dodoc AUTHORS BUGS ChangeLog README }