# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils qt4 DESCRIPTION="Catalan - English dictionary frontend" HOMEPAGE="http://dacco.sourceforge.net" SRC_URI="mirror://sourceforge/dacco/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" #app-dicts/dacco is actually an RDEPEND, but qdacco is pretty useless if not installed DEPEND="app-dicts/dacco $(qt4_min_version 4)" RDEPEND="${DEPEND}" src_unpack() { unpack ${A} || die "unpack failed" mv qdacco ${P} } src_compile() { # --with-qtdir=$(QTDIR) not recommended unset QTDIR ./configure --prefix=${D} || die "configure failed" emake || die "emake failed" } src_install() { einstall || die "einstall failed" dodoc changelog.txt INSTALL.ca INSTALL.en LICENSE README TODO }