diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-03-27 04:48:19 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-03-27 04:48:19 +0000 |
commit | ef99835fccb4d1d91927545754e0ad2ebe7e4b18 (patch) | |
tree | 060aeaaa6a60c1fe04b8e3b01ac767492eddc922 /sci-misc | |
parent | Version bump. (diff) | |
download | gentoo-2-ef99835fccb4d1d91927545754e0ad2ebe7e4b18.tar.gz gentoo-2-ef99835fccb4d1d91927545754e0ad2ebe7e4b18.tar.bz2 gentoo-2-ef99835fccb4d1d91927545754e0ad2ebe7e4b18.zip |
Version bump (now upstream uses real versions)
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/fitsverify/ChangeLog | 10 | ||||
-rw-r--r-- | sci-misc/fitsverify/fitsverify-4.17.ebuild (renamed from sci-misc/fitsverify/fitsverify-20110304.ebuild) | 16 |
2 files changed, 17 insertions, 9 deletions
diff --git a/sci-misc/fitsverify/ChangeLog b/sci-misc/fitsverify/ChangeLog index 5212a08cdfe5..313d1e5271fc 100644 --- a/sci-misc/fitsverify/ChangeLog +++ b/sci-misc/fitsverify/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-misc/fitsverify -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/ChangeLog,v 1.4 2012/08/05 14:11:38 bicatali Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/ChangeLog,v 1.5 2014/03/27 04:48:19 bicatali Exp $ + +*fitsverify-4.17 (27 Mar 2014) + + 27 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org> +fitsverify-4.17.ebuild, + -fitsverify-20110304.ebuild: + Version bump (now upstream uses real versions) 05 Aug 2012; Sébastien Fabbro <bicatali@gentoo.org> -fitsverify-20100129.ebuild, fitsverify-20110304.ebuild: diff --git a/sci-misc/fitsverify/fitsverify-20110304.ebuild b/sci-misc/fitsverify/fitsverify-4.17.ebuild index 225d653e30e2..fd3a9ed100fe 100644 --- a/sci-misc/fitsverify/fitsverify-20110304.ebuild +++ b/sci-misc/fitsverify/fitsverify-4.17.ebuild @@ -1,29 +1,31 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/fitsverify-20110304.ebuild,v 1.3 2012/08/05 14:11:38 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/fitsverify-4.17.ebuild,v 1.1 2014/03/27 04:48:19 bicatali Exp $ -EAPI=4 +EAPI=5 inherit toolchain-funcs DESCRIPTION="FITS file format checker" HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/" -SRC_URI="${HOMEPAGE}/${PN}.tar -> ${P}.tar" +SRC_URI="${HOMEPAGE}/${P}.tar.gz" LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="" -RDEPEND=">=sci-libs/cfitsio-3" +RDEPEND=">=sci-libs/cfitsio-3:0=" DEPEND="${RDEPEND} virtual/pkgconfig" S="${WORKDIR}/${PN}" src_compile() { - $(tc-getCC) -DSTANDALONE ${CFLAGS} ${LDFLAGS} $(pkg-config --cflags cfitsio) \ + $(tc-getCC) -DSTANDALONE ${CFLAGS} ${LDFLAGS} \ + $($(tc-getPKG_CONFIG) --cflags cfitsio) \ ftverify.c fvrf*.c \ - $(pkg-config --libs cfitsio) -o ${PN} || die "compiled failed" + $($(tc-getPKG_CONFIG) --libs cfitsio) -o ${PN} \ + || die "compiled failed" } src_install() { |