diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /sci-astronomy/cdsclient | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'sci-astronomy/cdsclient')
| -rw-r--r-- | sci-astronomy/cdsclient/Manifest | 1 | ||||
| -rw-r--r-- | sci-astronomy/cdsclient/cdsclient-3.8.4-r1.ebuild | 31 | ||||
| -rw-r--r-- | sci-astronomy/cdsclient/files/cdsclient-makefile.patch | 120 | ||||
| -rw-r--r-- | sci-astronomy/cdsclient/metadata.xml | 15 |
4 files changed, 0 insertions, 167 deletions
diff --git a/sci-astronomy/cdsclient/Manifest b/sci-astronomy/cdsclient/Manifest deleted file mode 100644 index 842309b4edd3..000000000000 --- a/sci-astronomy/cdsclient/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST cdsclient-3.84.tar.gz 119585 BLAKE2B cf5d7fe3e7a1f4985949b8621122157178b856e82415e6bf12a582c67e6748bf9eb75209983baab9051919817b373b198748cfda5a1e4733784a9b98ab7659ff SHA512 2d7abf0079189b9dd19cb8919061445fd19ea9f7dfd54e8ceee26b743218cf62ab00eba0147abe82d9294223927f04b4cc3328620dfc9184a7049f8d515b29e4 diff --git a/sci-astronomy/cdsclient/cdsclient-3.8.4-r1.ebuild b/sci-astronomy/cdsclient/cdsclient-3.8.4-r1.ebuild deleted file mode 100644 index 4273f00384a4..000000000000 --- a/sci-astronomy/cdsclient/cdsclient-3.8.4-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# upstream versioning wrong: 3.71 is really 3.7.1 -MYP="${PN}-$(ver_rs 2 '')" - -DESCRIPTION="Collection of scripts to access the CDS databases" -HOMEPAGE="http://cdsweb.u-strasbg.fr/doc/cdsclient.html" -SRC_URI="ftp://cdsarc.u-strasbg.fr/pub/sw/${MYP}.tar.gz" -S="${WORKDIR}/${MYP}" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="~amd64 ~x86" -RESTRICT="mirror bindist" - -RDEPEND="app-shells/tcsh" - -PATCHES=( "${FILESDIR}"/${PN}-makefile.patch ) - -src_install() { - local bindir="${EPREFIX}/usr/bin/${PN}" - emake DESTDIR="${D}" SHSDIR="${D}${bindir}" install - - newenvd - 99${PN} <<-EOF - PATH="${bindir}" - ROOTPATH="${bindir}" - EOF -} diff --git a/sci-astronomy/cdsclient/files/cdsclient-makefile.patch b/sci-astronomy/cdsclient/files/cdsclient-makefile.patch deleted file mode 100644 index d07928219b40..000000000000 --- a/sci-astronomy/cdsclient/files/cdsclient-makefile.patch +++ /dev/null @@ -1,120 +0,0 @@ -- remove non standard "mantex" page -- respect user flags - ---- a/configure -+++ b/configure -@@ -3938,7 +3938,7 @@ - - - EXPORT_SOURCE_FILE="aclient.c wwwget.c skio.c skclient.c sk.h" --EXPORT_MAN_FILE="sk.3 aclient.1 wwwget.1 aclient.tex" -+EXPORT_MAN_FILE="sk.3 aclient.1 wwwget.1 " - EXPORT_MAN_TEX="man.tex" - CASE="dev" - ---- a/Makefile.in -+++ b/Makefile.in -@@ -31,17 +31,17 @@ - ################################################################# - #PREFIX = /usr/local - #PREFIX = $(HOME) --PREFIX = @prefix@ -+PREFIX = $(DESTDIR)@prefix@ - PACKAGE = cdsclient - VERSION = @version@ - DISTRIB = $(PACKAGE)-$(VERSION) - ################################################################# - - INCDIR = $(PREFIX)/include --LIBDIR = $(PREFIX)/lib -+LIBDIR = $(DESTDIR)/@libdir@ - BINDIR = $(PREFIX)/bin - SHSDIR = $(PREFIX)/bin --MANDIR = $(PREFIX)/man -+MANDIR = $(PREFIX)/share/man - ########### - # NOTE: The definition below is required only on SOLARIS - # Comment the following line if required -@@ -57,12 +57,13 @@ - COPY = cp -p - RM = rm - AWK = @AWK@ -+MKDIR = mkdir -p - - # C options -------------------------------- - DEBUG = - C_OPT = -O - SYS = --CFLAGS = $(C_OPT) $(DEBUG) $(SYS) -I. -+ - - # FILES -------------------------------- - VERFILE = $(PREFIX)/versions -@@ -102,7 +103,7 @@ - # RULES -------------------------------- - .SUFFIXES: .o .c - .c.o: -- $(CC) $(CFLAGS) -c $< -+ $(CC) $(CFLAGS) -I. -c $< - - # DEPENDENCIES -------------------------------- - -@@ -121,41 +122,39 @@ - # rm -f $$f; ln finducac2 $$f; done - - aclient: aclient.o $(OBJ) -- $(CC) $@.o $(OBJ) $(LIBSYS) -o $@ -- $(STRIP) $@ -+ $(CC) $(LDFLAGS) $@.o $(OBJ) $(LIBSYS) -o $@ - - wwwget: wwwget.c -- $(CC) wwwget.c $(LIBSYS) -o $@ -- $(STRIP) $@ -+ $(CC) $(CFLAGS) $(LDFLAGS) wwwget.c $(LIBSYS) -o $@ - - doc: sk.tex man.tex aclient.tex - latex man.tex - --install: $(EXPORT_INSTALL) install_shs install_info -+install: $(EXPORT_INSTALL) install_shs - rm -rf *.cache - - export_install: install_bin install_man - - install_man: $(MAN) - if [ -d $(MANDIR) ]; then echo $(MANDIR) exists; \ -- else mkdir $(MANDIR); fi -+ else $(MKDIR) $(MANDIR); fi - for f in $(MAN); do \ - e=`echo $$f | cut -d. -f2`; \ - if [ -d $(MANDIR)/man$$e ] ; then echo $(MANDIR)/man$$e exists ; \ -- else mkdir $(MANDIR)/man$$e ; fi ; \ -+ else $(MKDIR) $(MANDIR)/man$$e ; fi ; \ - $(COPY) $$f $(MANDIR)/man$$e ; \ - done - - install_h: $(INC) -- test -d $(INCDIR) || mkdir $(INCDIR) -+ test -d $(INCDIR) || $(MKDIR) $(INCDIR) - $(COPY) $(INC) $(INCDIR) - - install_bin: $(BIN) -- test -d $(BINDIR) || mkdir $(BINDIR) -+ test -d $(BINDIR) || $(MKDIR) $(BINDIR) - $(COPY) $(BIN) $(BINDIR) - - install_shs: Makefile -- test -d $(SHSDIR) || mkdir $(SHSDIR) -+ test -d $(SHSDIR) || $(MKDIR) $(SHSDIR) - ractools=""; test -r $(RACatCDS) && ractools=$(RACatCDS)/*; \ - test -z "$$ractools" || ls -l $$ractools; \ - cdsutil="$(SHSatCDS)"; test -z "$(atCDS)" && cdsutil=""; \ -@@ -195,7 +194,7 @@ - $(MAKE) clean - -test -d /tmp/$(DISTRIB) && rm -rf /tmp/$(DISTRIB) - autoconf -- mkdir /tmp/$(DISTRIB) -+ $(MKDIR) /tmp/$(DISTRIB) - cp -p COPYRIGHT /ftp/pub/sw/COPYING /tmp/$(DISTRIB) - for f in $(SHS) Makefile.in configure; do cp -p $$f /tmp/$(DISTRIB); \ - add_license $$f > /tmp/$(DISTRIB)/$$f; done diff --git a/sci-astronomy/cdsclient/metadata.xml b/sci-astronomy/cdsclient/metadata.xml deleted file mode 100644 index 5f5dd9bbd9a7..000000000000 --- a/sci-astronomy/cdsclient/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci-astronomy@gentoo.org</email> - <name>Gentoo Astronomy Project</name> - </maintainer> - <longdescription lang="en"> - The cdsclient package is a set of C and csh routines which can be - built on Unix stations or PCs running Linux, which once compiled allow - to query some databases located at Centre de Donnees astronomiques - de Strasbourg (CDS) or on mirrors over the network. - </longdescription> - <origin>baldeagleos-repo</origin> -</pkgmetadata> |
