# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Niels Werensteijn # $Header: $ # NOTE: This is my first ebuild, se be kind :) DESCRIPTION="easy gui tool to install language dictionaries for OpenOffice.org" HOMEPAGE="http://ooodi.sourceforge.net/" SRC_URI="http://unc.dl.sourceforge.net/sourceforge/ooodi/OOodi-0.55.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="x86" DEPEND="virtual/glibc gtk? ( >=gtk+-1.2.10-r8 ) >=net-ftp/curl-7.9.7 >=app-arch/unzip-5.42-r1" S="${WORKDIR}/${P}" src_unpack() { unpack ${P}.tar.gz } src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" emake || die } src_install () { make DESTDIR=${D} install || die }