public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-astronomy/predict: metadata.xml predict-2.2.3.ebuild ChangeLog predict-2.2.2-r3.ebuild
@ 2007-09-11 15:06 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; only message in thread
From: Sebastien Fabbro (bicatali) @ 2007-09-11 15:06 UTC (permalink / raw
  To: gentoo-commits

bicatali    07/09/11 15:06:58

  Modified:             metadata.xml predict-2.2.3.ebuild ChangeLog
  Removed:              predict-2.2.2-r3.ebuild
  Log:
  Removed old versions, added longdescription, added a patch for xforms.
  (Portage version: 2.1.2.12)

Revision  Changes    Path
1.2                  sci-astronomy/predict/metadata.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/predict/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/predict/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/predict/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/predict/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml	24 Dec 2004 04:03:03 -0000	1.1
+++ metadata.xml	11 Sep 2007 15:06:57 -0000	1.2
@@ -2,4 +2,10 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 <herd>sci</herd>
+<longdescription lang="en">
+Predict is a satellite tracking program. It is probably mostly of interest
+to users of amateur satellites, but includes support for optionally
+announcing azimuth and elevation to help in manual antenna pointing,
+or optical observation of satellites.
+</longdescription>
 </pkgmetadata>



1.4                  sci-astronomy/predict/predict-2.2.3.ebuild

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

Index: predict-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- predict-2.2.3.ebuild	26 Jan 2007 14:43:43 -0000	1.3
+++ predict-2.2.3.ebuild	11 Sep 2007 15:06:57 -0000	1.4
@@ -1,8 +1,8 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.3.ebuild,v 1.3 2007/01/26 14:43:43 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.3.ebuild,v 1.4 2007/09/11 15:06:57 bicatali Exp $
 
-inherit toolchain-funcs
+inherit toolchain-funcs eutils
 
 DESCRIPTION="Satellite tracking and orbital prediction."
 HOMEPAGE="http://www.qsl.net/kd2bd/predict.html"
@@ -18,6 +18,12 @@
 	xforms? ( x11-libs/xforms )
 	xplanet? ( || ( x11-misc/xplanet x11-misc/xearth ) )"
 
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+	epatch "${FILESDIR}"/${P}-xforms.patch
+}
+
 src_compile() {
 	# predict uses a ncurses based configure script
 	# this is what it does if it was bash based ;)
@@ -50,7 +56,7 @@
 	# earthtrack
 	if use xplanet; then
 		einfo "compiling earthtrack"
-		cd ${S}/clients/earthtrack
+		cd "${S}"/clients/earthtrack
 		# fix include path
 		sed -e "s:/usr/local/share/xplanet:/usr/share/xplanet:" \
 			-i earthtrack.c || die "Failed to fix xplanet paths"
@@ -60,14 +66,14 @@
 
 	# kep_reload
 	einfo "compiling kep_reload"
-	cd ${S}/clients/kep_reload
+	cd "${S}"/clients/kep_reload
 	${COMPILER} kep_reload.c -o kep_reload || \
 		die "Failed compiling kep_reload"
 
 	# map
 	if use xforms; then
 		einfo "compiling map"
-		cd ${S}/clients/map
+		cd "${S}"/clients/map
 		TCOMP="${COMPILER} -I/usr/X11R6/include -L/usr/X11R6/$(get_libdir) -lforms -lX11 -lm map.c map_cb.c map_main.c -o map"
 		${TCOMP} || die "Failed compiling map"
 	fi
@@ -77,7 +83,7 @@
 		# note there are plugins for gsat but they are missing header files and wont compile
 		use nls || myconf="--disable-nls"
 		einfo "compiling gsat"
-		cd ${S}/clients/gsat-*
+		cd "${S}"/clients/gsat-*
 		./configure --prefix=/usr ${myconf}
 		cd src
 		sed -e "s:#define DEFAULTPLUGINSDIR .*:#define DEFAULTPLUGINSDIR \"/usr/$(get_libdir)/gsat/plugins/\":" -i globals.h
@@ -89,9 +95,9 @@
 
 src_install() {
 	# install predict
-	cd ${S}
-	dobin predict ${FILESDIR}/predict-update
-	dodoc CHANGES COPYING CREDITS HISTORY README NEWS
+	cd "${S}"
+	dobin predict "${FILESDIR}"/predict-update
+	dodoc CHANGES CREDITS HISTORY README NEWS
 	dodoc docs/pdf/predict.pdf
 	dodoc docs/postscript/predict.ps
 	doman docs/man/predict.1
@@ -112,7 +118,7 @@
 
 	# earthtrack
 	if use xplanet; then
-		cd ${S}/clients/earthtrack
+		cd "${S}"/clients/earthtrack
 		ln -s earthtrack earthtrack2
 		dobin earthtrack earthtrack2
 		mv README README.earthtrack && \
@@ -121,7 +127,7 @@
 	fi
 
 	# kep_reload
-	cd ${S}/clients/kep_reload
+	cd "${S}"/clients/kep_reload
 	dobin kep_reload
 	mv INSTALL INSTALL.kep_reload && \
 	mv README README.kep_reload && \
@@ -130,9 +136,9 @@
 
 	# map
 	if use xforms; then
-		cd ${S}/clients/map
+		cd "${S}"/clients/map
 		dobin map
-		for i in CHANGES README COPYING; do
+		for i in CHANGES README; do
 			mv ${i} ${i}.map && dodoc ${i}.map || \
 				die "Failed to install xforms docs"
 		done
@@ -141,13 +147,13 @@
 	# gsat
 	if use gtk; then
 		# the install seems broken so do manually...
-		cd ${S}/clients/gsat-*
+		cd "${S}"/clients/gsat-*
 		dodir /usr/$(get_libdir)/gsat/plugins
 		keepdir /usr/$(get_libdir)/gsat/plugins
 		cd src
 		dobin gsat
 		cd ..
-		for i in AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL NEWS README Plugin_API; do
+		for i in AUTHORS ABOUT-NLS ChangeLog INSTALL NEWS README Plugin_API; do
 			mv ${i} ${i}.gsat && dodoc ${i}.gsat || \
 				die "Failed to install gsat docs"
 		done



1.10                 sci-astronomy/predict/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/predict/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	26 Jan 2007 14:43:43 -0000	1.9
+++ ChangeLog	11 Sep 2007 15:06:57 -0000	1.10
@@ -1,6 +1,11 @@
 # ChangeLog for sci-astronomy/predict
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/ChangeLog,v 1.9 2007/01/26 14:43:43 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/ChangeLog,v 1.10 2007/09/11 15:06:57 bicatali Exp $
+
+  11 Sep 2007; Sébastien Fabbro <bicatali@gentoo.org>
+  -predict-2.2.2-r3.ebuild, predict-2.2.3.ebuild, +files/predict-2.2.3-xforms.patch
+  Removed old versions, added longdescription, added a patch for
+  xforms. Should fix bug #140991.
 
   26 Jan 2007; Steve Dibb <beandog@gentoo.org> predict-2.2.3.ebuild:
   amd64 stable, bug 160130



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-09-11 15:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-11 15:06 [gentoo-commits] gentoo-x86 commit in sci-astronomy/predict: metadata.xml predict-2.2.3.ebuild ChangeLog predict-2.2.2-r3.ebuild Sebastien Fabbro (bicatali)

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