# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/gnustep-gui-0.16.0-r1.ebuild,v 1.1 2010/03/09 18:43:56 grobian Exp $ EAPI="3" inherit gnustep-base multilib DESCRIPTION="Library of GUI classes written in Obj-C" HOMEPAGE="http://www.gnustep.org/" SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" SLOT="0" LICENSE="LGPL-2.1" IUSE="jpeg gif png portaudio cups" DEPEND="${GNUSTEP_CORE_DEPEND} >=gnustep-base/gnustep-base-1.18.0 x11-libs/libXt >=media-libs/tiff-3 jpeg? ( >=media-libs/jpeg-6b:0 ) gif? ( >=media-libs/giflib-4.1 ) png? ( >=media-libs/libpng-1.2 ) !x86-fbsd? ( portaudio? ( =media-libs/portaudio-19* ) ) cups? ( >=net-print/cups-1.1 ) media-libs/audiofile app-text/aspell" RDEPEND="${DEPEND}" src_configure() { egnustep_env local myconf= use gif && myconf="--disable-ungif --enable-libgif" econf \ --with-tiff-include="${EPREFIX}"/usr/include \ --with-tiff-library="${EPREFIX}"/usr/$(get_libdir) \ $(use_enable jpeg) \ $(use_enable png) \ $(use_enable portaudio gsnd) \ $(use_enable cups) \ ${myconf} || die "configure failed" } pkg_postinst() { ewarn "The shared library version has changed in this release." ewarn "You will need to recompile all Applications/Tools/etc in order" ewarn "to use this library. Please run revdep-rebuild to do so" }