# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-i18n/poedit/poedit-1.3.7.ebuild,v 1.2 2007/09/15 23:29:11 dirtyepic Exp $ inherit eutils wxwidgets flag-o-matic fdo-mime DESCRIPTION="Cross-platform gettext catalogs (.po files) editor." SRC_URI="mirror://sourceforge/poedit/${P}.tar.gz" HOMEPAGE="http://poedit.sourceforge.net/" SLOT="0" LICENSE="MIT" KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" IUSE="spell" DEPEND="=x11-libs/wxGTK-2.6* >=sys-libs/db-3.1 spell? ( >=app-text/gtkspell-2.0.0 )" WX_GTK_VER="2.6" pkg_setup() { echo; check_wxuse unicode; echo } src_compile() { need-wxwidgets unicode append-flags -fno-strict-aliasing econf \ $(use_enable spell spellchecking) \ --with-wx-config="${WX_CONFIG}" \ || die "Configure failed!" emake || die "Build failed!" } src_install () { make DESTDIR="${D}" install || die "Install failed" dodoc AUTHORS NEWS README TODO } pkg_postinst() { fdo-mime_desktop_database_update } pkg_postrm() { fdo-mime_desktop_database_update }