diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-06-23 02:44:21 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-06-23 02:44:21 +0000 |
commit | 0bbc6a5d5caeffd5928dc75fba8a90afa8ec150d (patch) | |
tree | 0d88e3792e717fc43c8b09637374b74e05e6f5f9 /sci-astronomy | |
parent | Removed obsolete versions. (diff) | |
download | gentoo-2-0bbc6a5d5caeffd5928dc75fba8a90afa8ec150d.tar.gz gentoo-2-0bbc6a5d5caeffd5928dc75fba8a90afa8ec150d.tar.bz2 gentoo-2-0bbc6a5d5caeffd5928dc75fba8a90afa8ec150d.zip |
Removed obsolete version. Added to x86.
(Portage version: 2.0.51.19)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/predict/ChangeLog | 6 | ||||
-rw-r--r-- | sci-astronomy/predict/Manifest | 2 | ||||
-rw-r--r-- | sci-astronomy/predict/files/digest-predict-2.2.2-r2 | 1 | ||||
-rw-r--r-- | sci-astronomy/predict/predict-2.2.2-r2.ebuild | 166 | ||||
-rw-r--r-- | sci-astronomy/predict/predict-2.2.2-r3.ebuild | 4 |
5 files changed, 8 insertions, 171 deletions
diff --git a/sci-astronomy/predict/ChangeLog b/sci-astronomy/predict/ChangeLog index 9eac172f616c..5e731ea1e1f2 100644 --- a/sci-astronomy/predict/ChangeLog +++ b/sci-astronomy/predict/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-astronomy/predict # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/ChangeLog,v 1.3 2005/01/05 09:30:49 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/ChangeLog,v 1.4 2005/06/23 02:44:21 ribosome Exp $ + + 23 Jun 2005; Olivier Fisette <ribosome@gentoo.org> + -predict-2.2.2-r2.ebuild, predict-2.2.2-r3.ebuild: + Removed obsolete version. Added to x86. *predict-2.2.2-r3 (05 Jan 2005) diff --git a/sci-astronomy/predict/Manifest b/sci-astronomy/predict/Manifest index 05d1d86d29b4..97b946893b92 100644 --- a/sci-astronomy/predict/Manifest +++ b/sci-astronomy/predict/Manifest @@ -1,5 +1,5 @@ MD5 95801bec31bda2e4c4c231ccb8958087 predict-2.2.2-r2.ebuild 4312 -MD5 cfa0bc2db748bd915a2447872a101297 predict-2.2.2-r3.ebuild 4348 +MD5 596ffe781e139923f27e79a2da736aac predict-2.2.2-r3.ebuild 4347 MD5 16437d50f2daea0cb724f045408a1b02 ChangeLog 1834 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 729e9f2e1ecbb139b17f650d2916da21 files/digest-predict-2.2.2-r2 66 diff --git a/sci-astronomy/predict/files/digest-predict-2.2.2-r2 b/sci-astronomy/predict/files/digest-predict-2.2.2-r2 deleted file mode 100644 index 8786565e5599..000000000000 --- a/sci-astronomy/predict/files/digest-predict-2.2.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 2512bc6b584ece66de027e46f114ab53 predict-2.2.2.tar.gz 1637893 diff --git a/sci-astronomy/predict/predict-2.2.2-r2.ebuild b/sci-astronomy/predict/predict-2.2.2-r2.ebuild deleted file mode 100644 index 69c7407a7f3c..000000000000 --- a/sci-astronomy/predict/predict-2.2.2-r2.ebuild +++ /dev/null @@ -1,166 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.2-r2.ebuild,v 1.2 2005/01/05 09:30:49 phosphan Exp $ - -DESCRIPTION="Satellite tracking and orbital prediction." -HOMEPAGE="http://www.qsl.net/kd2bd/predict.html" -SRC_URI="http://www.amsat.org/amsat/ftp/software/Linux/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -IUSE="xforms gtk nls" -KEYWORDS="x86 ~ppc" - -DEPEND="sys-libs/ncurses - gtk? ( =x11-libs/gtk+-1.2* ) - xforms? ( x11-libs/xforms )" -RDEPEND="gtk? ( =x11-libs/gtk+-1.2* ) - xforms? ( x11-libs/xforms )" - -if [ -x /usr/bin/xearth ]; then - EARTHTRACKOK="yes" -elif [ -x /usr/bin/xplanet ]; then - EARTHTRACKOK="yes" -fi - -src_compile() { - # predict uses a ncurses based configure script - # this is what it does if it was bash based ;) - - # set compiler string to a var so if compiler checks - # can be added at a later date - COMPILER="cc ${CFLAGS} -fomit-frame-pointer" - - # write predict.h - echo "char *predictpath=\"/usr/share/predict/\";" > predict.h - echo "char soundcard=1;" >> predict.h - echo "char *version=\"${PV}\";" >> predict.h - - # compile predict - einfo "compiling predict" - ${COMPILER} -L/lib -lm -lncurses -lpthread predict.c -o predict - - # write vocalizer.h - cd vocalizer - echo "char *path={\"/usr/share/predict/vocalizer/\"};" > vocalizer.h - - # compile vocalizer - einfo "compiling vocalizer" - ${COMPILER} vocalizer.c -o vocalizer - - einfo "compiling clients" - - # earthtrack - if test "${EARTHTRACKOK}" = "yes"; then - einfo "compiling earthtrack" - cd ${S}/clients/earthtrack - ${COMPILER} -lm earthtrack.c -o earthtrack - fi - - # kep_reload - einfo "compiling kep_reload" - cd ${S}/clients/kep_reload - ${COMPILER} kep_reload.c -o kep_reload - - # map - if use xforms; then - einfo "compiling map" - cd ${S}/clients/map - TCOMP="${COMPILER} -I/usr/X11R6/include -L/usr/X11R6/lib -lforms -lX11 -lm map.c map_cb.c map_main.c -o map" - ${TCOMP} - fi - - # gsat - if use gtk; then - # 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-* - ./configure --prefix=/usr ${myconf} - cd src - sed -e "s:#define DEFAULTPLUGINSDIR .*:#define DEFAULTPLUGINSDIR \"/usr/lib/gsat/plugins/\":" -i globals.h - sed -e 's:int errno;::' -i globals.h - cd .. - emake - fi -} - -src_install() { - # install predict - cd ${S} - dobin predict ${FILESDIR}/predict-update - dodoc CHANGES COPYING CREDITS HISTORY README - dodoc default/predict.* - dodoc docs/pdf/predict.pdf - dodoc docs/postscript/predict.ps - doman docs/man/predict.1 - - #install vocalizer - exeinto /usr/bin - cd vocalizer - doexe vocalizer - dodir /usr/share/predict/vocalizer - insinto /usr/share/predict/vocalizer - dosym /usr/bin/vocalizer /usr/share/predict/vocalizer/vocalizer - doins *.wav - - mv README README.vocalizer - dodoc README.vocalizer - - # install clients - - # earthtrack - if test "${EARTHTRACKOK}" = "yes"; then - cd ${S}/clients/earthtrack - ln -s earthtrack earthtrack2 - dobin earthtrack earthtrack2 - mv README_FIRST README_FIRST.earthtrack - mv README README.earthtrack - dodoc README_FIRST.earthtrack README.earthtrack - fi - - # kep_reload - cd ${S}/clients/kep_reload - dobin kep_reload - mv INSTALL INSTALL.kep_reload - mv README README.kep_reload - dodoc INSTALL.kep_reload README.kep_reload - - # map - if use xforms; then - cd ${S}/clients/map - dobin map - for i in CHANGES README COPYING; do - mv ${i} ${i}.map - dodoc ${i}.map - done - fi - - # gsat - if use gtk; then - # the install seems broken so do manually... - cd ${S}/clients/gsat-* - dodir /usr/lib/gsat/plugins - keepdir /usr/lib/gsat/plugins - cd src - dobin gsat - cd .. - for i in AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL NEWS README Plugin_API; do - mv ${i} ${i}.gsat - dodoc ${i}.gsat - done - fi -} - -pkg_postinst() { - einfo "to use the clients the following line will" - einfo "have to be inserted into /etc/services" - einfo "predict 1210/udp" - einfo "the port can be changed to anything" - einfo "the name predict is what is needed to work" - einfo "after that is set run 'predict -s'" - einfo "" - einfo "to get list of satellites run 'predict-update'" - einfo "before running predict this script will also update" - einfo "the list of satellites so they are up to date." -} diff --git a/sci-astronomy/predict/predict-2.2.2-r3.ebuild b/sci-astronomy/predict/predict-2.2.2-r3.ebuild index e2146427d590..66ba85a6b758 100644 --- a/sci-astronomy/predict/predict-2.2.2-r3.ebuild +++ b/sci-astronomy/predict/predict-2.2.2-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.2-r3.ebuild,v 1.1 2005/01/05 09:30:49 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/predict/predict-2.2.2-r3.ebuild,v 1.2 2005/06/23 02:44:21 ribosome Exp $ DESCRIPTION="Satellite tracking and orbital prediction." HOMEPAGE="http://www.qsl.net/kd2bd/predict.html" @@ -9,7 +9,7 @@ SRC_URI="http://www.amsat.org/amsat/ftp/software/Linux/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" IUSE="xforms gtk nls" -KEYWORDS="~x86 ~ppc" +KEYWORDS="x86 ~ppc" DEPEND="sys-libs/ncurses gtk? ( =x11-libs/gtk+-1.2* ) |