summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2010-07-13 16:34:27 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2010-07-13 16:34:27 +0000
commit7816807cd47c750d8ba23d64147788e45a2bb17a (patch)
treeaa40778000d846ed8f807132584ccf9ceb02c75d /sci-astronomy/cdsclient
parentVersion bump. Fixed build failre on ghc-6.10+ (bug #296530). Beware: dropped ... (diff)
downloadgentoo-2-7816807cd47c750d8ba23d64147788e45a2bb17a.tar.gz
gentoo-2-7816807cd47c750d8ba23d64147788e45a2bb17a.tar.bz2
gentoo-2-7816807cd47c750d8ba23d64147788e45a2bb17a.zip
Bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy/cdsclient')
-rw-r--r--sci-astronomy/cdsclient/ChangeLog10
-rw-r--r--sci-astronomy/cdsclient/cdsclient-3.5.ebuild35
2 files changed, 43 insertions, 2 deletions
diff --git a/sci-astronomy/cdsclient/ChangeLog b/sci-astronomy/cdsclient/ChangeLog
index 09a2df97960b..a59aa9d992f9 100644
--- a/sci-astronomy/cdsclient/ChangeLog
+++ b/sci-astronomy/cdsclient/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-astronomy/cdsclient
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/cdsclient/ChangeLog,v 1.4 2009/11/03 23:54:18 bicatali Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/cdsclient/ChangeLog,v 1.5 2010/07/13 16:34:27 bicatali Exp $
+
+*cdsclient-3.5 (13 Jul 2010)
+
+ 13 Jul 2010; Sébastien Fabbro <bicatali@gentoo.org>
+ +cdsclient-3.5.ebuild:
+ Bump
*cdsclient-3.4 (04 Nov 2009)
diff --git a/sci-astronomy/cdsclient/cdsclient-3.5.ebuild b/sci-astronomy/cdsclient/cdsclient-3.5.ebuild
new file mode 100644
index 000000000000..ccc019e4beb1
--- /dev/null
+++ b/sci-astronomy/cdsclient/cdsclient-3.5.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/cdsclient/cdsclient-3.5.ebuild,v 1.1 2010/07/13 16:34:27 bicatali Exp $
+
+EAPI=2
+inherit eutils
+
+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/${P}.tar.gz"
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND=""
+RDEPEND="app-shells/tcsh"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-makefile.in.patch
+ # remove non standard "mantex" page
+ sed -i \
+ -e 's/aclient.tex//' \
+ "${S}"/configure || die "sed failed"
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /usr/share/man
+ dodir /usr/$(get_libdir)
+ emake \
+ PREFIX="${D}"/usr \
+ MANDIR="${D}"/usr/share/man \
+ LIBDIR="${D}"/usr/$(get_libdir) \
+ install || die "emake install failed"
+}