public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-07-25 22:33 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 8+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-07-25 22:33 UTC (permalink / raw
  To: gentoo-commits

ulm         08/07/25 22:33:20

  Modified:             ChangeLog
  Added:                openmotif-2.3.1-r1.ebuild
  Log:
  Fix bugs 215984 and 232742.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r6 i686)

Revision  Changes    Path
1.192                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.191&r2=1.192

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog	1 Jul 2008 19:30:39 -0000	1.191
+++ ChangeLog	25 Jul 2008 22:33:19 -0000	1.192
@@ -1,6 +1,16 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.191 2008/07/01 19:30:39 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.192 2008/07/25 22:33:19 ulm Exp $
+
+*openmotif-2.3.1-r1 (25 Jul 2008)
+
+  25 Jul 2008; Ulrich Mueller <ulm@gentoo.org>
+  +files/openmotif-2.3.1-fix-grace-crash.patch,
+  +files/openmotif-2.3.1-multilist-stipple.patch,
+  +openmotif-2.3.1-r1.ebuild:
+  Display stippled multilist items correctly, fixes bug 215984 again.
+  Fix crash with sci-visualization/grace, bug 232742; patch by S. Umar at
+  upstream bug 1381.
 
   01 Jul 2008; Ulrich Mueller <ulm@gentoo.org>
   files/openmotif-2.3.0-freebsd-libiconv.patch, openmotif-2.3.1.ebuild:



1.1                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: openmotif-2.3.1-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.1 2008/07/25 22:33:19 ulm Exp $

inherit eutils flag-o-matic multilib autotools

DOC_P=${PN}-2.3.0
DESCRIPTION="Open Motif"
HOMEPAGE="http://www.motifzone.org/"
SRC_URI="ftp://ftp.ics.com/openmotif/${PV%.*}/${PV}/${P}.tar.gz
	doc? ( http://www.motifzone.net/files/documents/${DOC_P}-manual.pdf.tgz )"

LICENSE="MOTIF libXpm doc? ( OPL )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc examples jpeg png unicode xft"

# make people unmerge motif-config and all previous slots
# since the slotting is finally gone now
RDEPEND="!x11-libs/motif-config
	!x11-libs/lesstif
	!<=x11-libs/openmotif-2.3.0
	x11-libs/libXmu
	x11-libs/libXp
	unicode? ( virtual/libiconv )
	xft? ( x11-libs/libXft )
	jpeg? ( media-libs/jpeg )
	png? ( media-libs/libpng )"

DEPEND="${RDEPEND}
	sys-devel/flex
	x11-misc/xbitmaps"

pkg_setup() {
	# clean up orphaned cruft left over by motif-config
	local i l count=0
	for i in "${ROOT}"usr/bin/{mwm,uil,xmbind} \
		"${ROOT}"usr/include/{Xm,uil,Mrm} \
		"${ROOT}"usr/$(get_libdir)/lib{Xm,Uil,Mrm}.*; do
		[[ -L "${i}" ]] || continue
		l=$(readlink "${i}")
		if [[ ${l} == *openmotif-* || ${l} == *lesstif-* ]]; then
			einfo "Cleaning up orphaned ${i} symlink ..."
			rm -f "${i}"
		fi
	done

	cd "${ROOT}"usr/share/man
	for i in $(find . -type l); do
		l=$(readlink "${i}")
		if [[ ${l} == *-openmotif-* || ${l} == *-lesstif-* ]]; then
			(( count++ ))
			rm -f "${i}"
		fi
	done
	[[ ${count} -ne 0 ]] && \
		einfo "Cleaned up ${count} orphaned symlinks in ${ROOT}usr/share/man"
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	# fix linking problem on FreeBSD, bug 219040
	epatch "${FILESDIR}/${PN}-2.3.0-freebsd-libiconv.patch"

	# add missing conditional for USE=-xft, bug 229779
	epatch "${FILESDIR}/${P}-XmRenderT-no-xft.patch"

	# display stippled multilist items correctly, bug 215984
	epatch "${FILESDIR}/${P}-multilist-stipple.patch"

	# fix crash with sci-visualization/grace, bug 232742
	epatch "${FILESDIR}/${P}-fix-grace-crash.patch"

	# disable compilation of demo binaries
	sed -i -e '/^SUBDIRS/{:x;/\\$/{N;bx;};s/[ \t\n\\]*demos//;}' Makefile.am

	# fix libtool-2.2 breakage, bug 220599
	sed -i -e 's/LT_HAVE/FINDXFT_HAVE/g' ac_find_xft.m4

	# add X.Org vendor string to aliases for virtual bindings
	echo -e '"The X.Org Foundation"\t\t\t\t\tpc' >>bindings/xmbind.alias

	AT_M4DIR=. eautoreconf
}

src_compile() {
	# get around some LANG problems in make (#15119)
	unset LANG

	# bug #80421
	filter-flags -ftracer

	# multilib includes don't work right in this package...
	has_multilib_profile && append-flags "-I$(get_ml_incdir)"

	# feel free to fix properly if you care
	append-flags -fno-strict-aliasing

	econf --with-x \
		$(use_enable unicode utf8) \
		$(use_enable xft) \
		$(use_enable jpeg) \
		$(use_enable png)

	emake -j1 || die "emake failed"
}

src_install() {
	emake -j1 DESTDIR="${D}" install || die "emake install failed"

	# mwm default configs
	insinto /usr/share/X11/app-defaults
	newins "${FILESDIR}"/Mwm.defaults Mwm

	dodir /etc/X11/mwm
	mv -f "${D}"/usr/$(get_libdir)/X11/system.mwmrc "${D}"/etc/X11/mwm
	dosym /etc/X11/mwm/system.mwmrc /usr/$(get_libdir)/X11/

	if use examples; then
		emake -j1 -C demos DESTDIR="${D}" install-data \
			|| die "installation of demos failed"
		dodir /usr/share/doc/${PF}/demos
		mv "${D}"/usr/share/Xm/* "${D}"/usr/share/doc/${PF}/demos
	fi
	rm -rf "${D}"/usr/share/Xm

	dodoc README RELEASE RELNOTES BUGREPORT TODO
	use doc && cp "${WORKDIR}"/*.pdf "${D}"/usr/share/doc/${PF}
}

pkg_postinst() {
	local line
	while read line; do elog "${line}"; done <<-EOF
	Gentoo is no longer providing slotted Open Motif libraries.
	See bug 204249 and its dependencies for the reasons.

	From the Open Motif 2.3.0 (upstream) release notes:
	"Open Motif 2.3 is an updated version of 2.2. Any applications
	built against a previous 2.x release of Open Motif will be binary
	compatible with this release."

	If you have binary-only applications requiring libXm.so.3, you may
	therefore create a symlink from libXm.so.3 to libXm.so.4.
	Please note, however, that there will be no Gentoo support for this.
	Alternatively, you may install x11-libs/openmotif-compat-2.2* for
	the Open Motif 2.2 libraries.
	EOF
}






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-22 18:23 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-08-22 18:23 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/08/22 18:23:49

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  Stable on ppc wrt bug 235459
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.196                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.196&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.196&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.195&r2=1.196

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- ChangeLog	6 Aug 2008 16:43:09 -0000	1.195
+++ ChangeLog	22 Aug 2008 18:23:49 -0000	1.196
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.195 2008/08/06 16:43:09 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.196 2008/08/22 18:23:49 nixnut Exp $
+
+  22 Aug 2008; nixnut <nixnut@gentoo.org> openmotif-2.3.1-r1.ebuild:
+  Stable on ppc wrt bug 235459
 
   06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
   Add USE flag description to metadata wrt GLEP 56.



1.2                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.1&r2=1.2

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openmotif-2.3.1-r1.ebuild	25 Jul 2008 22:33:19 -0000	1.1
+++ openmotif-2.3.1-r1.ebuild	22 Aug 2008 18:23:49 -0000	1.2
@@ -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.1 2008/07/25 22:33:19 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.2 2008/08/22 18:23:49 nixnut Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-22 21:30 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2008-08-22 21:30 UTC (permalink / raw
  To: gentoo-commits

maekke      08/08/22 21:30:46

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  amd64/x86 stable, bug #235459
  (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc4 i686)

Revision  Changes    Path
1.197                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.197&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.197&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.196&r2=1.197

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog	22 Aug 2008 18:23:49 -0000	1.196
+++ ChangeLog	22 Aug 2008 21:30:46 -0000	1.197
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.196 2008/08/22 18:23:49 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.197 2008/08/22 21:30:46 maekke Exp $
+
+  22 Aug 2008; Markus Meier <maekke@gentoo.org> openmotif-2.3.1-r1.ebuild:
+  amd64/x86 stable, bug #235459
 
   22 Aug 2008; nixnut <nixnut@gentoo.org> openmotif-2.3.1-r1.ebuild:
   Stable on ppc wrt bug 235459



1.3                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.2&r2=1.3

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openmotif-2.3.1-r1.ebuild	22 Aug 2008 18:23:49 -0000	1.2
+++ openmotif-2.3.1-r1.ebuild	22 Aug 2008 21:30:46 -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.2 2008/08/22 18:23:49 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.3 2008/08/22 21:30:46 maekke Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-22 22:02 Friedrich Oslage (bluebird)
  0 siblings, 0 replies; 8+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-08-22 22:02 UTC (permalink / raw
  To: gentoo-commits

bluebird    08/08/22 22:02:27

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  Stable on sparc, bug #235459
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.198                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.197&r2=1.198

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog	22 Aug 2008 21:30:46 -0000	1.197
+++ ChangeLog	22 Aug 2008 22:02:27 -0000	1.198
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.197 2008/08/22 21:30:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.198 2008/08/22 22:02:27 bluebird Exp $
+
+  22 Aug 2008; Friedrich Oslage <bluebird@gentoo.org>
+  openmotif-2.3.1-r1.ebuild:
+  Stable on sparc, bug #235459
 
   22 Aug 2008; Markus Meier <maekke@gentoo.org> openmotif-2.3.1-r1.ebuild:
   amd64/x86 stable, bug #235459



1.4                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.3&r2=1.4

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openmotif-2.3.1-r1.ebuild	22 Aug 2008 21:30:46 -0000	1.3
+++ openmotif-2.3.1-r1.ebuild	22 Aug 2008 22:02:27 -0000	1.4
@@ -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.3 2008/08/22 21:30:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.4 2008/08/22 22:02:27 bluebird Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-24 14:09 Markus Rothe (corsair)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Rothe (corsair) @ 2008-08-24 14:09 UTC (permalink / raw
  To: gentoo-commits

corsair     08/08/24 14:09:25

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  Stable on ppc64; bug #235459
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.199                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.198&r2=1.199

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog	22 Aug 2008 22:02:27 -0000	1.198
+++ ChangeLog	24 Aug 2008 14:09:24 -0000	1.199
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.198 2008/08/22 22:02:27 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.199 2008/08/24 14:09:24 corsair Exp $
+
+  24 Aug 2008; Markus Rothe <corsair@gentoo.org> openmotif-2.3.1-r1.ebuild:
+  Stable on ppc64; bug #235459
 
   22 Aug 2008; Friedrich Oslage <bluebird@gentoo.org>
   openmotif-2.3.1-r1.ebuild:



1.5                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.4&r2=1.5

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openmotif-2.3.1-r1.ebuild	22 Aug 2008 22:02:27 -0000	1.4
+++ openmotif-2.3.1-r1.ebuild	24 Aug 2008 14:09:24 -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.4 2008/08/22 22:02:27 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.5 2008/08/24 14:09:24 corsair Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-25 18:07 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2008-08-25 18:07 UTC (permalink / raw
  To: gentoo-commits

armin76     08/08/25 18:07:17

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  alpha/ia64 stable wrt #235459
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.200                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.200&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.200&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.199&r2=1.200

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog	24 Aug 2008 14:09:24 -0000	1.199
+++ ChangeLog	25 Aug 2008 18:07:17 -0000	1.200
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.199 2008/08/24 14:09:24 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.200 2008/08/25 18:07:17 armin76 Exp $
+
+  25 Aug 2008; Raúl Porcel <armin76@gentoo.org> openmotif-2.3.1-r1.ebuild:
+  alpha/ia64 stable wrt #235459
 
   24 Aug 2008; Markus Rothe <corsair@gentoo.org> openmotif-2.3.1-r1.ebuild:
   Stable on ppc64; bug #235459



1.6                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.5&r2=1.6

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openmotif-2.3.1-r1.ebuild	24 Aug 2008 14:09:24 -0000	1.5
+++ openmotif-2.3.1-r1.ebuild	25 Aug 2008 18:07:17 -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.5 2008/08/24 14:09:24 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.6 2008/08/25 18:07:17 armin76 Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-08-26  0:42 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2008-08-26  0:42 UTC (permalink / raw
  To: gentoo-commits

jer         08/08/26 00:42:48

  Modified:             ChangeLog openmotif-2.3.1-r1.ebuild
  Log:
  Stable for HPPA (bug #235459).
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.201                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.201&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.201&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.200&r2=1.201

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog	25 Aug 2008 18:07:17 -0000	1.200
+++ ChangeLog	26 Aug 2008 00:42:47 -0000	1.201
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.200 2008/08/25 18:07:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.201 2008/08/26 00:42:47 jer Exp $
+
+  26 Aug 2008; Jeroen Roovers <jer@gentoo.org> openmotif-2.3.1-r1.ebuild:
+  Stable for HPPA (bug #235459).
 
   25 Aug 2008; Raúl Porcel <armin76@gentoo.org> openmotif-2.3.1-r1.ebuild:
   alpha/ia64 stable wrt #235459



1.7                  x11-libs/openmotif/openmotif-2.3.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild?r1=1.6&r2=1.7

Index: openmotif-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openmotif-2.3.1-r1.ebuild	25 Aug 2008 18:07:17 -0000	1.6
+++ openmotif-2.3.1-r1.ebuild	26 Aug 2008 00:42:47 -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/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.6 2008/08/25 18:07:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.1-r1.ebuild,v 1.7 2008/08/26 00:42:47 jer Exp $
 
 inherit eutils flag-o-matic multilib autotools
 
@@ -12,7 +12,7 @@
 
 LICENSE="MOTIF libXpm doc? ( OPL )"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="doc examples jpeg png unicode xft"
 
 # make people unmerge motif-config and all previous slots






^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild
@ 2008-11-12 22:25 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 8+ messages in thread
From: Ulrich Mueller (ulm) @ 2008-11-12 22:25 UTC (permalink / raw
  To: gentoo-commits

ulm         08/11/12 22:25:13

  Modified:             ChangeLog
  Removed:              openmotif-2.3.1-r1.ebuild
  Log:
  Remove intermediate version.
  (Portage version: 2.2_rc14/cvs/Linux 2.6.26-gentoo-r1 i686)

Revision  Changes    Path
1.210                x11-libs/openmotif/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/openmotif/ChangeLog?r1=1.209&r2=1.210

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	12 Nov 2008 22:07:04 -0000	1.209
+++ ChangeLog	12 Nov 2008 22:25:13 -0000	1.210
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/openmotif
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.209 2008/11/12 22:07:04 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.210 2008/11/12 22:25:13 ulm Exp $
+
+  12 Nov 2008; Ulrich Mueller <ulm@gentoo.org>
+  -files/openmotif-2.3.1-XmRenderT-no-xft.patch,
+  -files/openmotif-2.3.1-fix-grace-crash.patch, -openmotif-2.3.1-r1.ebuild:
+  Remove intermediate version.
 
   12 Nov 2008; Brent Baude <ranger@gentoo.org> openmotif-2.3.1.1.ebuild:
   stable ppc64, bug 245635






^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-11-12 22:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-24 14:09 [gentoo-commits] gentoo-x86 commit in x11-libs/openmotif: ChangeLog openmotif-2.3.1-r1.ebuild Markus Rothe (corsair)
  -- strict thread matches above, loose matches on Subject: below --
2008-11-12 22:25 Ulrich Mueller (ulm)
2008-08-26  0:42 Jeroen Roovers (jer)
2008-08-25 18:07 Raul Porcel (armin76)
2008-08-22 22:02 Friedrich Oslage (bluebird)
2008-08-22 21:30 Markus Meier (maekke)
2008-08-22 18:23 Gysbert Wassenaar (nixnut)
2008-07-25 22:33 Ulrich Mueller (ulm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox