diff options
author | 2009-07-28 16:31:20 +0000 | |
---|---|---|
committer | 2009-07-28 16:31:20 +0000 | |
commit | 72ceff9e7ad16b2f3d2c5d8458ce86cb3d8b8973 (patch) | |
tree | c456ecc7e3e96d86f7229331742c85e05b20696a /sci-astronomy | |
parent | Add "python3" USE flag. (diff) | |
download | gentoo-2-72ceff9e7ad16b2f3d2c5d8458ce86cb3d8b8973.tar.gz gentoo-2-72ceff9e7ad16b2f3d2c5d8458ce86cb3d8b8973.tar.bz2 gentoo-2-72ceff9e7ad16b2f3d2c5d8458ce86cb3d8b8973.zip |
Version bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/stiff/ChangeLog | 8 | ||||
-rw-r--r-- | sci-astronomy/stiff/files/stiff-configure.patch | 63 | ||||
-rw-r--r-- | sci-astronomy/stiff/stiff-1.12.ebuild | 28 |
3 files changed, 98 insertions, 1 deletions
diff --git a/sci-astronomy/stiff/ChangeLog b/sci-astronomy/stiff/ChangeLog index 1000448ee8bf..e0a88e8ee55d 100644 --- a/sci-astronomy/stiff/ChangeLog +++ b/sci-astronomy/stiff/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-astronomy/stiff # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.1 2009/02/17 21:04:02 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.2 2009/07/28 16:31:19 bicatali Exp $ + +*stiff-1.12 (28 Jul 2009) + + 28 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> +stiff-1.12.ebuild, + +files/stiff-configure.patch: + Version bump *stiff-1.10 (17 Feb 2009) diff --git a/sci-astronomy/stiff/files/stiff-configure.patch b/sci-astronomy/stiff/files/stiff-configure.patch new file mode 100644 index 000000000000..15b8d9aa3010 --- /dev/null +++ b/sci-astronomy/stiff/files/stiff-configure.patch @@ -0,0 +1,63 @@ +--- configure.ac.orig 2009-03-10 12:34:36.000000000 +0000 ++++ configure.ac 2009-07-28 17:26:22.000000000 +0100 +@@ -21,40 +21,14 @@ + + # Include macros + #sinclude(acx_pthread.m4) +-sinclude(acx_prog_cc_optim.m4) + + # Display pakage and version number + AC_MSG_RESULT([*********** Configuring: $PACKAGE $VERSION ($date) **********]) + +-# Initialize the list of compilers to consider +-cclist="cc gcc" +- +-# Backup and reset the input CFLAGS and LDFLAGS +-mycflags="$CFLAGS" +-CFLAGS="" +-myldflags="$LDFLAGS" +-LDFLAGS="" +- +-# Provide special option for the Linux Intel C compiler +-AC_MSG_CHECKING([for Linux Intel C compiler mode]) +-AC_ARG_ENABLE(icc, +- [AC_HELP_STRING([--enable-icc], +- [Enable special mode for compilation with the Intel compiler \ +-(off by default)])], +- use_icc="yes" +- cclist="icc $cclist" +- AC_MSG_RESULT([yes]), +- use_icc="no" +- AC_MSG_RESULT([no])) +- +-# Checks for programs. +-# GCC is chosen last because it is likely to yield less optimized code +-AC_PROG_CC([$cclist]) + # C Compiler: Check that it is ANSI C + AM_PROG_CC_STDC + # C Compiler: Check that it is POSIX-compliant + AC_ISC_POSIX +-ACX_PROG_CC_OPTIM + AC_PROG_AWK + AC_PROG_INSTALL + AC_PROG_RANLIB +@@ -107,19 +81,9 @@ + + # Link with gprof option + if test "$use_gprof" = "yes"; then +- if test "$use_icc" = "yes"; then +- CFLAGS="$CFLAGS -pq" +- else +- CFLAGS="$CFLAGS -pg" +- fi + use_static="no" + fi + +-# Static linking option +-if test "$use_static" = "yes"; then +- LDFLAGS="-static -shared-libgcc $LDFLAGS" +-fi +- + # Override automatic CFLAGS and LDFLAGS with those of user + #if test -n "$mycflags"; then + #CFLAGS="$mycflags" diff --git a/sci-astronomy/stiff/stiff-1.12.ebuild b/sci-astronomy/stiff/stiff-1.12.ebuild new file mode 100644 index 000000000000..75bdb42450cb --- /dev/null +++ b/sci-astronomy/stiff/stiff-1.12.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/stiff-1.12.ebuild,v 1.1 2009/07/28 16:31:19 bicatali Exp $ + +EAPI=2 +inherit autotools eutils + +DESCRIPTION="Converts astronomical FITS images to the TIFF format for illustration purposes." +HOMEPAGE="http://astromatic.iap.fr/software/stiff" +SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" +DEPEND="" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-configure.patch + eautoreconf +} + + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS BUGS ChangeLog HISTORY README THANKS + use doc && dodoc doc/* +} |