# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=3 HOMEPAGE="http://code.google.com/p/ardesia/" SRC_URI="http://ardesia.googlecode.com/files/${PN}_${PV}-source-1.tar.bz2" DESCRIPTION="Makes colored free-hand annotations on computer screen, record it and share on the network." LICENSE="GPL-3" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="-cwiid" DEPEND="" RDEPEND=">=x11-libs/gtk+-2.14 dev-libs/atk media-libs/libpng media-libs/fontconfig sci-libs/gsl " if use cwiid ; then RDEPEND="${RDEPEND} app-misc/cwiid" fi src_configure() { cd ${PN}_${PV}-source-1 sed 's|--enable-maintainer-mode|--prefix=/usr|' autogen.sh -i ./autogen.sh } src_compile() { cd ${PN}_${PV}-source-1 make || die "died running emake in ardesia" } src_install() { cd ${PN}_${PV}-source-1 make DESTDIR="${D}" install || die "make install ardesia failed" }