diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-09-18 09:41:22 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-09-18 09:41:22 +0000 |
commit | cc0950e2962230c0bfd29e270e8db13a79922ef7 (patch) | |
tree | 9b1a5721bedfca9b6f1801e2b9cd7dc9d85ac01f /app-text/gtkspell | |
parent | Version bump. Bug #376371 (diff) | |
download | gentoo-2-cc0950e2962230c0bfd29e270e8db13a79922ef7.tar.gz gentoo-2-cc0950e2962230c0bfd29e270e8db13a79922ef7.tar.bz2 gentoo-2-cc0950e2962230c0bfd29e270e8db13a79922ef7.zip |
Remove libgtkspell.la which is causing problems for libpng upgrade (unnecessary reference of -lpng14 in dependency_libs)
(Portage version: 2.2.0_alpha58/cvs/Linux x86_64)
Diffstat (limited to 'app-text/gtkspell')
-rw-r--r-- | app-text/gtkspell/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/gtkspell/gtkspell-2.0.16.ebuild | 21 |
2 files changed, 14 insertions, 13 deletions
diff --git a/app-text/gtkspell/ChangeLog b/app-text/gtkspell/ChangeLog index 1ce0fb33d858..c9db5971e8c9 100644 --- a/app-text/gtkspell/ChangeLog +++ b/app-text/gtkspell/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/gtkspell # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/ChangeLog,v 1.87 2011/03/16 10:09:30 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/ChangeLog,v 1.88 2011/09/18 09:41:22 ssuominen Exp $ + + 18 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> gtkspell-2.0.16.ebuild: + Remove libgtkspell.la which is causing problems for libpng upgrade + (unnecessary reference of -lpng14 in dependency_libs) 16 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> gtkspell-2.0.16.ebuild: diff --git a/app-text/gtkspell/gtkspell-2.0.16.ebuild b/app-text/gtkspell/gtkspell-2.0.16.ebuild index d40b72a19327..617ee681253b 100644 --- a/app-text/gtkspell/gtkspell-2.0.16.ebuild +++ b/app-text/gtkspell/gtkspell-2.0.16.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.16.ebuild,v 1.8 2011/03/16 10:09:30 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.16.ebuild,v 1.9 2011/09/18 09:41:22 ssuominen Exp $ -EAPI="2" +EAPI=4 DESCRIPTION="Spell checking widget for GTK2" HOMEPAGE="http://gtkspell.sourceforge.net/" @@ -14,20 +14,18 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" IUSE="doc" -RDEPEND=">=x11-libs/gtk+-2:2 +RDEPEND="x11-libs/gtk+:2 >=app-text/enchant-1.1.6" - DEPEND="${RDEPEND} dev-util/pkgconfig >=dev-util/intltool-0.35.0 - doc? ( - >=dev-util/gtk-doc-1 - =app-text/docbook-xml-dtd-4.2* )" + doc? ( dev-util/gtk-doc app-text/docbook-xml-dtd:4.2 )" + +DOCS=( AUTHORS ChangeLog README ) # NEWS file is empty src_prepare() { # Fix intltoolize broken file, see upstream #577133 - sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \ - || die "sed failed" + sed -i -e "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" po/Makefile.in.in || die } src_configure() { @@ -37,7 +35,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "make install failed" - # not installing NEWS, it's empty - dodoc AUTHORS ChangeLog README || die "dodoc failed" + default + find "${ED}" -name '*.la' -exec rm -f {} + } |