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