diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-05-15 15:12:59 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-05-15 15:12:59 +0000 |
commit | 0edd462140da77946937eca29d3857d02881e81a (patch) | |
tree | 546a6fd4a3330d4a18a7fdcfa34d24c6a3222dd0 /app-i18n | |
parent | Fix nagstamon-0.9.6.1-system-beautifulsoup.patch, thanks to Dawid Stawiarski ... (diff) | |
download | gentoo-2-0edd462140da77946937eca29d3857d02881e81a.tar.gz gentoo-2-0edd462140da77946937eca29d3857d02881e81a.tar.bz2 gentoo-2-0edd462140da77946937eca29d3857d02881e81a.zip |
Missing dev-util/pkgconfig DEPEND wrt #367395 by Nikoli.
(Portage version: 2.2.0_alpha33/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/poedit/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/poedit/poedit-1.4.6.1.ebuild | 21 |
2 files changed, 14 insertions, 14 deletions
diff --git a/app-i18n/poedit/ChangeLog b/app-i18n/poedit/ChangeLog index ec9aa83fb913..a3bd8ea8237c 100644 --- a/app-i18n/poedit/ChangeLog +++ b/app-i18n/poedit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-i18n/poedit -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/poedit/ChangeLog,v 1.71 2010/08/31 02:51:37 dirtyepic Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/poedit/ChangeLog,v 1.72 2011/05/15 15:12:59 ssuominen Exp $ + + 15 May 2011; Samuli Suominen <ssuominen@gentoo.org> poedit-1.4.6.1.ebuild: + Missing dev-util/pkgconfig DEPEND wrt #367395 by Nikoli. 31 Aug 2010; Ryan Hill <dirtyepic@gentoo.org> -poedit-1.4.2.ebuild, -poedit-1.4.3.ebuild, -poedit-1.4.4.ebuild, -poedit-1.4.5.ebuild: diff --git a/app-i18n/poedit/poedit-1.4.6.1.ebuild b/app-i18n/poedit/poedit-1.4.6.1.ebuild index 51d514d49103..9dbe7af84251 100644 --- a/app-i18n/poedit/poedit-1.4.6.1.ebuild +++ b/app-i18n/poedit/poedit-1.4.6.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/poedit/poedit-1.4.6.1.ebuild,v 1.6 2010/07/18 13:12:11 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/poedit/poedit-1.4.6.1.ebuild,v 1.7 2011/05/15 15:12:59 ssuominen Exp $ EAPI=2 WX_GTK_VER=2.8 @@ -8,30 +8,27 @@ WX_GTK_VER=2.8 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/" +SRC_URI="mirror://sourceforge/poedit/${P}.tar.gz" -SLOT="0" LICENSE="MIT" +SLOT="0" KEYWORDS="amd64 hppa ppc sparc x86" IUSE="spell" -DEPEND="x11-libs/wxGTK:2.8[X] +RDEPEND="x11-libs/wxGTK:2.8[X] >=sys-libs/db-3.1 spell? ( >=app-text/gtkspell-2.0.0 )" - -RDEPEND=${DEPEND} +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_configure() { append-flags -fno-strict-aliasing - - econf \ - $(use_enable spell spellchecking) \ - || die "Configure failed!" + econf $(use_enable spell spellchecking) } src_install () { - emake DESTDIR="${D}" install || die "Install failed" + emake DESTDIR="${D}" install || die dodoc AUTHORS NEWS README TODO } |