public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-06-30 12:36 Markus Dittrich (markusle)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Dittrich (markusle) @ 2008-06-30 12:36 UTC (permalink / raw
  To: gentoo-commits

markusle    08/06/30 12:36:01

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  Added patch to make sure and explicit that only system libs are being used  (see bug #229885).
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-SENTINEL-3 i686)

Revision  Changes    Path
1.4                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.3&r2=1.4

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xephem-3.7.3.ebuild	28 Jun 2008 13:30:30 -0000	1.3
+++ xephem-3.7.3.ebuild	30 Jun 2008 12:36:01 -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/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.3 2008/06/28 13:30:30 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.4 2008/06/30 12:36:01 markusle Exp $
 
 inherit eutils
 
@@ -12,17 +12,22 @@
 SLOT="0"
 LICENSE="as-is"
 DEPEND="!media-gfx/feh
-	x11-libs/openmotif"
+	x11-libs/openmotif
+	media-libs/jpeg
+	media-libs/libpng"
 
 src_unpack() {
 	unpack ${A}
 	cd "${S}"
 
-	# Link against Motif shared lib, bug 229761
-	epatch "${FILESDIR}/${P}-link-motif.patch"
+	# make sure we use system libs not the ones that
+	# ship with the xephem tarball
+	rm -fr libjpegd/ libpng/ libz/ libXm/ \
+		|| die "Failed to remove unneeded libs"
+	epatch "${FILESDIR}"/${P}-use-system-lib.patch
 
-	for i in libastro/Makefile libip/Makefile libjpegd/Makefile \
-		liblilxml/Makefile GUI/xephem/Makefile GUI/xephem/tools/*/Makefile ; do
+	for i in libastro/Makefile libip/Makefile liblilxml/Makefile \
+		GUI/xephem/Makefile GUI/xephem/tools/*/Makefile ; do
 		einfo "Fixing CFLAGS in ${i}"
 		sed -e "s~^CFLAGS[ ]*=\(.*\)-O2\(.*\)~CFLAGS= \1 \2 ${CFLAGS}~" \
 			-i ${i} \
@@ -39,12 +44,10 @@
 	emake || die "emake failed"
 	local myldflags
 	cd "${S}"
-	for dir in libip liblilxml libjpegd GUI/xephem/tools/* GUI/xephem; do
+	for dir in libip liblilxml GUI/xephem/tools/* GUI/xephem; do
 		echo "going into ${dir}"
 		cd "${S}"/${dir}
-		if [ ${dir:0:3} = "lib" ]; then
-			myldflags=""
-		else
+		if [ ${dir:0:3} != "lib" ]; then
 			myldflags="${CLDFLAGS}"
 		fi
 		emake \



1.26                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	28 Jun 2008 13:30:30 -0000	1.25
+++ ChangeLog	30 Jun 2008 12:36:01 -0000	1.26
@@ -1,6 +1,11 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.25 2008/06/28 13:30:30 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.26 2008/06/30 12:36:01 markusle Exp $
+
+  30 Jun 2008; Markus Dittrich <markusle@gentoo.org> -files/xephem-3.7.3-link-motif.patch, +files/xephem-3.7.3-use-system-lib.patch,
+  xephem-3.7.3.ebuild:
+  Added patch to make sure and explicit that only system libs are being used
+  (see bug #229885).
 
   28 Jun 2008; Ulrich Mueller <ulm@gentoo.org>
   +files/xephem-3.7.3-link-motif.patch, xephem-3.7.3.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-07-04  7:31 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-07-04  7:31 UTC (permalink / raw
  To: gentoo-commits

opfer       08/07/04 07:31:59

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  stable x86, security bug 229885
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.5                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.4&r2=1.5

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xephem-3.7.3.ebuild	30 Jun 2008 12:36:01 -0000	1.4
+++ xephem-3.7.3.ebuild	4 Jul 2008 07:31:59 -0000	1.5
@@ -1,13 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.4 2008/06/30 12:36:01 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.5 2008/07/04 07:31:59 opfer Exp $
 
 inherit eutils
 
 DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation"
 SRC_URI="http://www.clearskyinstitute.com/xephem/${P}.tar.gz"
 HOMEPAGE="http://www.clearskyinstitute.com/xephem"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86 ~x86-fbsd"
 IUSE=""
 SLOT="0"
 LICENSE="as-is"



1.27                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	30 Jun 2008 12:36:01 -0000	1.26
+++ ChangeLog	4 Jul 2008 07:31:59 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.26 2008/06/30 12:36:01 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.27 2008/07/04 07:31:59 opfer Exp $
+
+  04 Jul 2008; Christian Faulhammer <opfer@gentoo.org> xephem-3.7.3.ebuild:
+  stable x86, security bug 229885
 
   30 Jun 2008; Markus Dittrich <markusle@gentoo.org> -files/xephem-3.7.3-link-motif.patch, +files/xephem-3.7.3-use-system-lib.patch,
   xephem-3.7.3.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-07-05 11:17 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-07-05 11:17 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/07/05 11:17:35

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  ppc stable, bug #229885
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r6 x86_64)

Revision  Changes    Path
1.6                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.5&r2=1.6

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xephem-3.7.3.ebuild	4 Jul 2008 07:31:59 -0000	1.5
+++ xephem-3.7.3.ebuild	5 Jul 2008 11:17:35 -0000	1.6
@@ -1,13 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.5 2008/07/04 07:31:59 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.6 2008/07/05 11:17:35 dertobi123 Exp $
 
 inherit eutils
 
 DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation"
 SRC_URI="http://www.clearskyinstitute.com/xephem/${P}.tar.gz"
 HOMEPAGE="http://www.clearskyinstitute.com/xephem"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd"
 IUSE=""
 SLOT="0"
 LICENSE="as-is"



1.28                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	4 Jul 2008 07:31:59 -0000	1.27
+++ ChangeLog	5 Jul 2008 11:17:35 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.27 2008/07/04 07:31:59 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.28 2008/07/05 11:17:35 dertobi123 Exp $
+
+  05 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org> xephem-3.7.3.ebuild:
+  ppc stable, bug #229885
 
   04 Jul 2008; Christian Faulhammer <opfer@gentoo.org> xephem-3.7.3.ebuild:
   stable x86, security bug 229885



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-07-05 14:08 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2008-07-05 14:08 UTC (permalink / raw
  To: gentoo-commits

ranger      08/07/05 14:08:20

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  Marking xephem-3.7.3 ppc64 for bug 229885
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.7                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.6&r2=1.7

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xephem-3.7.3.ebuild	5 Jul 2008 11:17:35 -0000	1.6
+++ xephem-3.7.3.ebuild	5 Jul 2008 14:08:20 -0000	1.7
@@ -1,13 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.6 2008/07/05 11:17:35 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.7 2008/07/05 14:08:20 ranger Exp $
 
 inherit eutils
 
 DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation"
 SRC_URI="http://www.clearskyinstitute.com/xephem/${P}.tar.gz"
 HOMEPAGE="http://www.clearskyinstitute.com/xephem"
-KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ppc64 x86 ~x86-fbsd"
 IUSE=""
 SLOT="0"
 LICENSE="as-is"



1.29                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	5 Jul 2008 11:17:35 -0000	1.28
+++ ChangeLog	5 Jul 2008 14:08:20 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.28 2008/07/05 11:17:35 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.29 2008/07/05 14:08:20 ranger Exp $
+
+  05 Jul 2008; Brent Baude <ranger@gentoo.org> xephem-3.7.3.ebuild:
+  Marking xephem-3.7.3 ppc64 for bug 229885
 
   05 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org> xephem-3.7.3.ebuild:
   ppc stable, bug #229885



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-07-05 15:57 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2008-07-05 15:57 UTC (permalink / raw
  To: gentoo-commits

maekke      08/07/05 15:57:30

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  amd64 stable, bug #229885
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc8 i686)

Revision  Changes    Path
1.8                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.7&r2=1.8

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xephem-3.7.3.ebuild	5 Jul 2008 14:08:20 -0000	1.7
+++ xephem-3.7.3.ebuild	5 Jul 2008 15:57:29 -0000	1.8
@@ -1,13 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.7 2008/07/05 14:08:20 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.8 2008/07/05 15:57:29 maekke Exp $
 
 inherit eutils
 
 DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation"
 SRC_URI="http://www.clearskyinstitute.com/xephem/${P}.tar.gz"
 HOMEPAGE="http://www.clearskyinstitute.com/xephem"
-KEYWORDS="~amd64 ppc ppc64 x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
 IUSE=""
 SLOT="0"
 LICENSE="as-is"



1.30                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	5 Jul 2008 14:08:20 -0000	1.29
+++ ChangeLog	5 Jul 2008 15:57:29 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.29 2008/07/05 14:08:20 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.30 2008/07/05 15:57:29 maekke Exp $
+
+  05 Jul 2008; Markus Meier <maekke@gentoo.org> xephem-3.7.3.ebuild:
+  amd64 stable, bug #229885
 
   05 Jul 2008; Brent Baude <ranger@gentoo.org> xephem-3.7.3.ebuild:
   Marking xephem-3.7.3 ppc64 for bug 229885



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog
@ 2008-08-09  2:28 Markus Dittrich (markusle)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Dittrich (markusle) @ 2008-08-09  2:28 UTC (permalink / raw
  To: gentoo-commits

markusle    08/08/09 02:28:41

  Modified:             xephem-3.7.3.ebuild ChangeLog
  Log:
  Removed installation of example INDI code. This resolves the file collisions with media-graphics/feh (see bug #224705).
  (Portage version: 2.2_rc5/cvs/Linux 2.6.26-SENTINEL-1 i686)

Revision  Changes    Path
1.9                  sci-astronomy/xephem/xephem-3.7.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild?r1=1.8&r2=1.9

Index: xephem-3.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xephem-3.7.3.ebuild	5 Jul 2008 15:57:29 -0000	1.8
+++ xephem-3.7.3.ebuild	9 Aug 2008 02:28:40 -0000	1.9
@@ -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/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.8 2008/07/05 15:57:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/xephem-3.7.3.ebuild,v 1.9 2008/08/09 02:28:40 markusle Exp $
 
 inherit eutils
 
@@ -11,8 +11,7 @@
 IUSE=""
 SLOT="0"
 LICENSE="as-is"
-DEPEND="!media-gfx/feh
-	x11-libs/openmotif
+DEPEND="x11-libs/openmotif
 	media-libs/jpeg
 	media-libs/libpng"
 
@@ -22,8 +21,8 @@
 
 	# make sure we use system libs not the ones that
 	# ship with the xephem tarball
-	rm -fr libjpegd/ libpng/ libz/ libXm/ \
-		|| die "Failed to remove unneeded libs"
+	rm -fr libjpegd/ libpng/ libz/ libXm/ GUI/xephem/tools/indi \
+		|| die "Failed to remove unneeded libs and tools"
 	epatch "${FILESDIR}"/${P}-use-system-lib.patch
 
 	for i in libastro/Makefile libip/Makefile liblilxml/Makefile \
@@ -63,11 +62,10 @@
 	into /usr
 	cd "${S}"/GUI/xephem
 	dobin xephem  || die "dobin xephem failed"
-	for file in tools/indi/{evalINDI,getINDI,setINDI,tmount,ota,wx,cam,security,indiserver} \
-		tools/{lx200xed/lx200xed,xedb/xedb,xephemdbd/xephemdbd}; do
+	for file in tools/{lx200xed/lx200xed,xedb/xedb,xephemdbd/xephemdbd}; do
 		dobin ${file} || die "dobin ${file} failed"
 	done
-	doman xephem.1 tools/*/*.1
+	doman xephem.1
 	mv tools .. # do not install tool sources into share directory
 	for i in $(find . -mindepth 1 -type d); do
 		insinto /usr/share/${PN}/${i}



1.31                 sci-astronomy/xephem/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/xephem/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	5 Jul 2008 15:57:29 -0000	1.30
+++ ChangeLog	9 Aug 2008 02:28:40 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for sci-astronomy/xephem
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.30 2008/07/05 15:57:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/xephem/ChangeLog,v 1.31 2008/08/09 02:28:40 markusle Exp $
+
+  09 Aug 2008; Markus Dittrich <markusle@gentoo.org> xephem-3.7.3.ebuild:
+  Removed installation of example INDI code. This resolves the file
+  collisions with media-graphics/feh (see bug #224705).
 
   05 Jul 2008; Markus Meier <maekke@gentoo.org> xephem-3.7.3.ebuild:
   amd64 stable, bug #229885






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

end of thread, other threads:[~2008-08-09  2:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-05 14:08 [gentoo-commits] gentoo-x86 commit in sci-astronomy/xephem: xephem-3.7.3.ebuild ChangeLog Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2008-08-09  2:28 Markus Dittrich (markusle)
2008-07-05 15:57 Markus Meier (maekke)
2008-07-05 11:17 Tobias Scherbaum (dertobi123)
2008-07-04  7:31 Christian Faulhammer (opfer)
2008-06-30 12:36 Markus Dittrich (markusle)

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