* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-06-21 18:53 Hanno Boeck (hanno)
0 siblings, 0 replies; 6+ messages in thread
From: Hanno Boeck (hanno) @ 2008-06-21 18:53 UTC (permalink / raw
To: gentoo-commits
hanno 08/06/21 18:53:45
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
change gimp ebuild to use gnome2 eclass and fix automagic on curl
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.4 i686)
Revision Changes Path
1.2 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.1&r2=1.2
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gimp-2.4.6.ebuild 2 Jun 2008 13:28:21 -0000 1.1
+++ gimp-2.4.6.ebuild 21 Jun 2008 18:53:45 -0000 1.2
@@ -1,8 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.1 2008/06/02 13:28:21 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.2 2008/06/21 18:53:45 hanno Exp $
-inherit fdo-mime flag-o-matic multilib python eutils autotools
+inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
DESCRIPTION="GNU Image Manipulation Program"
HOMEPAGE="http://www.gimp.org/"
@@ -52,6 +52,8 @@
>=sys-devel/gettext-0.17
doc? ( >=dev-util/gtk-doc-1 )"
+DOCS="AUTHORS ChangeLog* HACKING NEWS README*"
+
pkg_setup() {
if use pdf && ! built_with_use app-text/poppler-bindings gtk; then
eerror "This package requires app-text/poppler-bindings compiled with GTK+ support."
@@ -61,40 +63,13 @@
eerror "This package requires media-libs/alsa-lib compiled with midi support."
die "Please reemerge media-libs/alsa-lib with USE=\"midi\"."
fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/gimp-web-browser.patch"
-
- # Workaround for MIME-type, this is fixed in gimp trunk, so we can
- # remove this with >= 2.5
- use svg && epatch "${FILESDIR}/gimp-svg.diff"
-
- eautoreconf
-}
-
-src_compile() {
- # workaround portage variable leakage
- local AA=
-
- # gimp uses inline functions (e.g. plug-ins/common/grid.c) (#23078)
- # gimp uses floating point math, needs accuracy (#98685)
- filter-flags "-fno-inline" "-ffast-math"
- # gimp assumes char is signed (fixes preview corruption)
- if use ppc || use ppc64; then
- append-flags "-fsigned-char"
- fi
- econf --enable-default-binary \
+ G2CONF="--enable-default-binary \
--with-x \
$(use_with aalib aa) \
$(use_with alsa) \
$(use_enable altivec) \
- $(use_with curl) \
- $(use_enable debug) \
- $(use_enable doc gtk-doc) \
+ $(use_with curl libcurl) \
$(use_with dbus) \
$(use_with hal) \
$(use_with gnome gnomevfs) \
@@ -111,21 +86,37 @@
$(use_enable sse) \
$(use_with svg librsvg) \
$(use_with tiff libtiff) \
- $(use_with wmf) \
- || die "econf failed"
+ $(use_with wmf)"
+}
+
+src_unpack() {
+ gnome2_src_unpack
+ epatch "${FILESDIR}/gimp-web-browser.patch"
- emake || die "emake failed"
+ # Workaround for MIME-type, this is fixed in gimp trunk, so we can
+ # remove this with >= 2.5
+ use svg && epatch "${FILESDIR}/gimp-svg.diff"
+
+ eautoreconf
}
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
+src_compile() {
+ # workaround portage variable leakage
+ local AA=
+
+ # gimp uses inline functions (e.g. plug-ins/common/grid.c) (#23078)
+ # gimp uses floating point math, needs accuracy (#98685)
+ filter-flags "-fno-inline" "-ffast-math"
+ # gimp assumes char is signed (fixes preview corruption)
+ if use ppc || use ppc64; then
+ append-flags "-fsigned-char"
+ fi
- dodoc AUTHORS ChangeLog* HACKING NEWS README*
+ gnome2_src_compile
}
pkg_postinst() {
- fdo-mime_desktop_database_update
- fdo-mime_mime_database_update
+ gnome2_pkg_postinst
elog
elog "If you want Postscript file support, emerge ghostscript."
@@ -136,8 +127,7 @@
}
pkg_postrm() {
- fdo-mime_desktop_database_update
- fdo-mime_mime_database_update
+ gnome2_pkg_postrm
python_mod_cleanup /usr/$(get_libdir)/gimp/2.0/python \
/usr/$(get_libdir)/gimp/2.0/plug-ins
}
1.256 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.256&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.256&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.255&r2=1.256
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog 2 Jun 2008 13:28:21 -0000 1.255
+++ ChangeLog 21 Jun 2008 18:53:45 -0000 1.256
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.255 2008/06/02 13:28:21 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.256 2008/06/21 18:53:45 hanno Exp $
+
+ 21 Jun 2008; Hanno Boeck <hanno@gentoo.org> gimp-2.4.6.ebuild:
+ Use gnome2 eclass and fix automagic curl dep.
*gimp-2.4.6 (02 Jun 2008)
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-10-06 21:11 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2008-10-06 21:11 UTC (permalink / raw
To: gentoo-commits
maekke 08/10/06 21:11:21
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
amd64/x86 stable, bug #239923
(Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc8 i686)
Revision Changes Path
1.3 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.2&r2=1.3
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gimp-2.4.6.ebuild 21 Jun 2008 18:53:45 -0000 1.2
+++ gimp-2.4.6.ebuild 6 Oct 2008 21:11:21 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.2 2008/06/21 18:53:45 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.3 2008/10/06 21:11:21 maekke Exp $
inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 -mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 -mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="alsa aalib altivec curl dbus debug doc exif gtkhtml gnome hal lcms mmx mng pdf png python smp sse svg tiff wmf"
# jpeg temporarily removed, disabling jpeg requires upstream fix which will come in 2.5
1.259 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.259&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.259&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.258&r2=1.259
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.258
retrieving revision 1.259
diff -u -r1.258 -r1.259
--- ChangeLog 14 Sep 2008 11:29:02 -0000 1.258
+++ ChangeLog 6 Oct 2008 21:11:21 -0000 1.259
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.258 2008/09/14 11:29:02 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.259 2008/10/06 21:11:21 maekke Exp $
+
+ 06 Oct 2008; Markus Meier <maekke@gentoo.org> gimp-2.4.6.ebuild:
+ amd64/x86 stable, bug #239923
*gimp-2.4.7 (14 Sep 2008)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-10-07 13:34 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-10-07 13:34 UTC (permalink / raw
To: gentoo-commits
nixnut 08/10/07 13:34:22
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
Stable on ppc wrt bug 239923
(Portage version: 2.1.4.4)
Revision Changes Path
1.5 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.4&r2=1.5
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gimp-2.4.6.ebuild 7 Oct 2008 02:54:22 -0000 1.4
+++ gimp-2.4.6.ebuild 7 Oct 2008 13:34:22 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.4 2008/10/07 02:54:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.5 2008/10/07 13:34:22 nixnut Exp $
inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 hppa ~ia64 -mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 hppa ~ia64 -mips ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="alsa aalib altivec curl dbus debug doc exif gtkhtml gnome hal lcms mmx mng pdf png python smp sse svg tiff wmf"
# jpeg temporarily removed, disabling jpeg requires upstream fix which will come in 2.5
1.262 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.261&r2=1.262
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog 7 Oct 2008 02:54:22 -0000 1.261
+++ ChangeLog 7 Oct 2008 13:34:22 -0000 1.262
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.261 2008/10/07 02:54:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.262 2008/10/07 13:34:22 nixnut Exp $
+
+ 07 Oct 2008; nixnut <nixnut@gentoo.org> gimp-2.4.6.ebuild:
+ Stable on ppc wrt bug 239923
07 Oct 2008; Jeroen Roovers <jer@gentoo.org> gimp-2.4.6.ebuild:
Stable for HPPA (bug #239923).
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-10-07 22:33 Friedrich Oslage (bluebird)
0 siblings, 0 replies; 6+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-10-07 22:33 UTC (permalink / raw
To: gentoo-commits
bluebird 08/10/07 22:33:00
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
Stable on sparc, bug #239923
(Portage version: 2.1.4.4)
Revision Changes Path
1.6 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.5&r2=1.6
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gimp-2.4.6.ebuild 7 Oct 2008 13:34:22 -0000 1.5
+++ gimp-2.4.6.ebuild 7 Oct 2008 22:33:00 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.5 2008/10/07 13:34:22 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.6 2008/10/07 22:33:00 bluebird Exp $
inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 hppa ~ia64 -mips ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 hppa ~ia64 -mips ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="alsa aalib altivec curl dbus debug doc exif gtkhtml gnome hal lcms mmx mng pdf png python smp sse svg tiff wmf"
# jpeg temporarily removed, disabling jpeg requires upstream fix which will come in 2.5
1.263 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.263&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.263&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.262&r2=1.263
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog 7 Oct 2008 13:34:22 -0000 1.262
+++ ChangeLog 7 Oct 2008 22:33:00 -0000 1.263
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.262 2008/10/07 13:34:22 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.263 2008/10/07 22:33:00 bluebird Exp $
+
+ 07 Oct 2008; Friedrich Oslage <bluebird@gentoo.org> gimp-2.4.6.ebuild:
+ Stable on sparc, bug #239923
07 Oct 2008; nixnut <nixnut@gentoo.org> gimp-2.4.6.ebuild:
Stable on ppc wrt bug 239923
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-10-08 20:37 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2008-10-08 20:37 UTC (permalink / raw
To: gentoo-commits
armin76 08/10/08 20:37:42
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
alpha/ia64 stable wrt #239223
(Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 i686)
Revision Changes Path
1.7 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.6&r2=1.7
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gimp-2.4.6.ebuild 7 Oct 2008 22:33:00 -0000 1.6
+++ gimp-2.4.6.ebuild 8 Oct 2008 20:37:42 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.6 2008/10/07 22:33:00 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.7 2008/10/08 20:37:42 armin76 Exp $
inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 hppa ~ia64 -mips ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 -mips ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="alsa aalib altivec curl dbus debug doc exif gtkhtml gnome hal lcms mmx mng pdf png python smp sse svg tiff wmf"
# jpeg temporarily removed, disabling jpeg requires upstream fix which will come in 2.5
1.266 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.266&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.266&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.265&r2=1.266
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -r1.265 -r1.266
--- ChangeLog 8 Oct 2008 09:17:26 -0000 1.265
+++ ChangeLog 8 Oct 2008 20:37:42 -0000 1.266
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.265 2008/10/08 09:17:26 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.266 2008/10/08 20:37:42 armin76 Exp $
+
+ 08 Oct 2008; Raúl Porcel <armin76@gentoo.org> gimp-2.4.6.ebuild:
+ alpha/ia64 stable wrt #239223
08 Oct 2008; Hanno Boeck <hanno@gentoo.org> gimp-2.6.0.ebuild:
Fix wrong SRC_URI (see #240445).
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog
@ 2008-10-14 20:25 Brent Baude (ranger)
0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2008-10-14 20:25 UTC (permalink / raw
To: gentoo-commits
ranger 08/10/14 20:25:54
Modified: gimp-2.4.6.ebuild ChangeLog
Log:
stable ppc64, bug 239923
(Portage version: 2.1.4.5)
Revision Changes Path
1.8 media-gfx/gimp/gimp-2.4.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild?r1=1.7&r2=1.8
Index: gimp-2.4.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gimp-2.4.6.ebuild 8 Oct 2008 20:37:42 -0000 1.7
+++ gimp-2.4.6.ebuild 14 Oct 2008 20:25:54 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.7 2008/10/08 20:37:42 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.4.6.ebuild,v 1.8 2008/10/14 20:25:54 ranger Exp $
inherit gnome2 fdo-mime flag-o-matic multilib python eutils autotools
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="alpha amd64 hppa ia64 -mips ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 -mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="alsa aalib altivec curl dbus debug doc exif gtkhtml gnome hal lcms mmx mng pdf png python smp sse svg tiff wmf"
# jpeg temporarily removed, disabling jpeg requires upstream fix which will come in 2.5
1.269 media-gfx/gimp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.269&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.269&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.268&r2=1.269
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog 13 Oct 2008 16:30:11 -0000 1.268
+++ ChangeLog 14 Oct 2008 20:25:54 -0000 1.269
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/gimp
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.268 2008/10/13 16:30:11 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.269 2008/10/14 20:25:54 ranger Exp $
+
+ 14 Oct 2008; Brent Baude <ranger@gentoo.org> gimp-2.4.6.ebuild:
+ stable ppc64, bug 239923
*gimp-2.6.1 (13 Oct 2008)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-10-14 20:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-14 20:25 [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: gimp-2.4.6.ebuild ChangeLog Brent Baude (ranger)
-- strict thread matches above, loose matches on Subject: below --
2008-10-08 20:37 Raul Porcel (armin76)
2008-10-07 22:33 Friedrich Oslage (bluebird)
2008-10-07 13:34 Gysbert Wassenaar (nixnut)
2008-10-06 21:11 Markus Meier (maekke)
2008-06-21 18:53 Hanno Boeck (hanno)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox