diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-05-15 21:48:49 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-05-15 21:48:49 +0000 |
commit | 3e8886a23cc16f468293e6e3c074c629a3e324b5 (patch) | |
tree | 010e3f0e75e83aad04655c23eb431cf066dfbc7f | |
parent | Last rites for net-dialup/{mclient,mserver,linesrv,xlc}. (diff) | |
download | gentoo-2-3e8886a23cc16f468293e6e3c074c629a3e324b5.tar.gz gentoo-2-3e8886a23cc16f468293e6e3c074c629a3e324b5.tar.bz2 gentoo-2-3e8886a23cc16f468293e6e3c074c629a3e324b5.zip |
bump to 0.1.15. i18n update, fix broken png files.
(Portage version: 2.1.5_rc10)
-rw-r--r-- | media-gfx/gtkam/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/gtkam/gtkam-0.1.15.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/media-gfx/gtkam/ChangeLog b/media-gfx/gtkam/ChangeLog index 8c61f311d0ea..feaf2b0354e5 100644 --- a/media-gfx/gtkam/ChangeLog +++ b/media-gfx/gtkam/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/gtkam # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtkam/ChangeLog,v 1.49 2008/05/15 19:36:36 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtkam/ChangeLog,v 1.50 2008/05/15 21:48:49 eva Exp $ + +*gtkam-0.1.15 (15 May 2008) + + 15 May 2008; Gilles Dartiguelongue <eva@gentoo.org> +gtkam-0.1.15.ebuild: + bump to 0.1.15. i18n update, fix broken png files. 15 May 2008; Markus Meier <maekke@gentoo.org> metadata.xml: graphics herd will help to maintain this package diff --git a/media-gfx/gtkam/gtkam-0.1.15.ebuild b/media-gfx/gtkam/gtkam-0.1.15.ebuild new file mode 100644 index 000000000000..b668755fce05 --- /dev/null +++ b/media-gfx/gtkam/gtkam-0.1.15.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gtkam/gtkam-0.1.15.ebuild,v 1.1 2008/05/15 21:48:49 eva Exp $ + +inherit autotools eutils gnome2 + +DESCRIPTION="A frontend for gPhoto 2" +HOMEPAGE="http://gphoto.org/proj/gtkam" +SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="gimp gnome nls" + +# FIXME: why is exif not optional ? + +RDEPEND=">=x11-libs/gtk+-2.0 + >media-libs/libgphoto2-2.4 + >=media-libs/libexif-0.3.2 + media-libs/libexif-gtk + gimp? ( >=media-gfx/gimp-2 ) + gnome? ( + >=gnome-base/libbonobo-2 + >=gnome-base/libgnomeui-2 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + app-text/scrollkeeper + nls? ( >=sys-devel/gettext-0.14.1 )" + +DOCS="AUTHORS CHANGES NEWS README TODO" + +pkg_setup() { + G2CONF="${G2CONF} + $(use_with gimp) + $(use_with gnome) + $(use_with gnome bonobo) + $(use_enable nls) + --disable-scrollkeeper + --with-rpmbuild=/bin/false" +} + +src_unpack() { + gnome2_src_unpack + + # Fix --as-needed, bug #169661 + epatch "${FILESDIR}/${PN}-0.1.14-as-needed.patch" + + eautomake +} + +src_install() { + gnome2_src_install + + rm -rf "${D}"/usr/share/doc/gtkam +} |