diff options
author | Alex Alexander <wired@gentoo.org> | 2013-02-02 03:33:51 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2013-02-02 03:33:51 +0000 |
commit | 23d48b005b05aa1410dfa1a54e30cc37afadda19 (patch) | |
tree | b69cb81db8a2c64f876d2340412223cf19e862c0 /media-gfx/viewnior | |
parent | vanilla-3.2.37 + genpatches-3.2-16 + grsecurity-2.9.1-3.2.37-201301311810 (diff) | |
download | gentoo-2-23d48b005b05aa1410dfa1a54e30cc37afadda19.tar.gz gentoo-2-23d48b005b05aa1410dfa1a54e30cc37afadda19.tar.bz2 gentoo-2-23d48b005b05aa1410dfa1a54e30cc37afadda19.zip |
fixed underlinking bug #454230
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key EB9B4AFA)
Diffstat (limited to 'media-gfx/viewnior')
-rw-r--r-- | media-gfx/viewnior/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/viewnior/viewnior-1.3.ebuild | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/media-gfx/viewnior/ChangeLog b/media-gfx/viewnior/ChangeLog index ace8fed3b45e..532018ed0d55 100644 --- a/media-gfx/viewnior/ChangeLog +++ b/media-gfx/viewnior/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/viewnior -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/ChangeLog,v 1.13 2012/06/14 07:47:36 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/ChangeLog,v 1.14 2013/02/02 03:33:51 wired Exp $ + + 02 Feb 2013; Alex Alexander <wired@gentoo.org> viewnior-1.3.ebuild: + fixed underlinking bug #454230 *viewnior-1.3 (14 Jun 2012) diff --git a/media-gfx/viewnior/viewnior-1.3.ebuild b/media-gfx/viewnior/viewnior-1.3.ebuild index 35c19edf1efd..b14c72a6776b 100644 --- a/media-gfx/viewnior/viewnior-1.3.ebuild +++ b/media-gfx/viewnior/viewnior-1.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/viewnior-1.3.ebuild,v 1.1 2012/06/14 07:47:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/viewnior-1.3.ebuild,v 1.2 2013/02/02 03:33:51 wired Exp $ EAPI="4" -inherit fdo-mime gnome2-utils +inherit fdo-mime gnome2-utils autotools DESCRIPTION="Fast and simple image viewer" HOMEPAGE="http://xsisqox.github.com/Viewnior/index.html" @@ -21,6 +21,14 @@ RDEPEND="${DEPEND}" DOCS="AUTHORS ChangeLog* NEWS README TODO" +src_prepare() { + # fix for bug #454230 + sed -r -i "s:(PKG_CHECK_MODULES):AC_CHECK_LIB([m],[cos])\n\n\1:" configure.ac + sed -r -i "/^SHAVE_INIT/d" configure.ac + + eautoreconf +} + pkg_preinst() { gnome2_icon_savelist } |