diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-08-17 17:00:58 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-08-17 17:00:58 +0000 |
commit | 2e447c19071881e46dafc7a035d29350a1419b75 (patch) | |
tree | 24bf2783844b6cba2554695b1a8885980aaec0ca /sci-astronomy/cdsclient | |
parent | Version bump (diff) | |
download | gentoo-2-2e447c19071881e46dafc7a035d29350a1419b75.tar.gz gentoo-2-2e447c19071881e46dafc7a035d29350a1419b75.tar.bz2 gentoo-2-2e447c19071881e46dafc7a035d29350a1419b75.zip |
Version bump
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy/cdsclient')
-rw-r--r-- | sci-astronomy/cdsclient/ChangeLog | 8 | ||||
-rw-r--r-- | sci-astronomy/cdsclient/cdsclient-3.3.ebuild | 35 |
2 files changed, 42 insertions, 1 deletions
diff --git a/sci-astronomy/cdsclient/ChangeLog b/sci-astronomy/cdsclient/ChangeLog index dfcc2504bde3..1a3bab7e1e38 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.2 2009/02/17 22:03:50 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/cdsclient/ChangeLog,v 1.3 2009/08/17 17:00:58 bicatali Exp $ + +*cdsclient-3.3 (17 Aug 2009) + + 17 Aug 2009; Sébastien Fabbro <bicatali@gentoo.org> + +cdsclient-3.3.ebuild: + Version bump 17 Feb 2009; Sébastien Fabbro <bicatali@gentoo.org> +files/cdsclient-makefile.in.patch, cdsclient-3.2.ebuild: diff --git a/sci-astronomy/cdsclient/cdsclient-3.3.ebuild b/sci-astronomy/cdsclient/cdsclient-3.3.ebuild new file mode 100644 index 000000000000..a85627e3371d --- /dev/null +++ b/sci-astronomy/cdsclient/cdsclient-3.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/cdsclient/cdsclient-3.3.ebuild,v 1.1 2009/08/17 17:00:58 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" +} |