aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Fabbro <bicatali@gentoo.org>2014-02-27 14:30:17 -0800
committerSébastien Fabbro <bicatali@gentoo.org>2014-02-27 14:30:17 -0800
commite130e62c5f118131b595864959049b05b20cf48a (patch)
tree534092da0c4fecddc42688ea1f52474c4274f18f /sci-astronomy
parentuse multilib (diff)
downloadsci-e130e62c5f118131b595864959049b05b20cf48a.tar.gz
sci-e130e62c5f118131b595864959049b05b20cf48a.tar.bz2
sci-e130e62c5f118131b595864959049b05b20cf48a.zip
sci-astronomy/missfits: EAPI-5, autotools-utils
Package-Manager: portage-2.2.8-prefix
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/missfits/ChangeLog8
-rw-r--r--sci-astronomy/missfits/Manifest1
-rw-r--r--sci-astronomy/missfits/files/missfits-2.4.0-configure.patch108
-rw-r--r--sci-astronomy/missfits/missfits-2.4.0.ebuild29
-rw-r--r--sci-astronomy/missfits/missfits-9999.ebuild11
5 files changed, 10 insertions, 147 deletions
diff --git a/sci-astronomy/missfits/ChangeLog b/sci-astronomy/missfits/ChangeLog
index b1cba2ab0..6ff1dea95 100644
--- a/sci-astronomy/missfits/ChangeLog
+++ b/sci-astronomy/missfits/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for sci-astronomy/missfits
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> -Manifest,
+ -files/missfits-2.4.0-configure.patch, -missfits-2.4.0.ebuild,
+ missfits-9999.ebuild:
+ sci-astronomy/missfits: EAPI-5, autotools-utils
+
*missfits-9999 (09 Jul 2012)
09 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> missfits-2.4.0.ebuild,
@@ -21,4 +26,3 @@
18 Nov 2010; Sébastien Fabbro <bicatali@gentoo.org> +missfits-2.4.0.ebuild,
+files/missfits-2.4.0-configure.patch, +metadata.xml:
Initial import
-
diff --git a/sci-astronomy/missfits/Manifest b/sci-astronomy/missfits/Manifest
deleted file mode 100644
index 7e36c0cf6..000000000
--- a/sci-astronomy/missfits/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST missfits-2.4.0.tar.gz 381606 SHA256 40cd9de9d539ac95d34c108afa0ade4b26475adf4772a95ee42b0f9ab6edaf21 SHA512 cb494ca9fd73435478476700d825d305569df870298019be82034df974987485496bc20f3feed93fa9e089d8f5d84db9a346312ea71055d97d07d6561c2ea4bb WHIRLPOOL 0357689b1593cd4ea5dc1afa9299396374507a46fdc11ffc608dbea58be02d3b5fbcf84d19cbd53c76dc4b4aa58593258020e3679be4d23007b9d0537b95a126
diff --git a/sci-astronomy/missfits/files/missfits-2.4.0-configure.patch b/sci-astronomy/missfits/files/missfits-2.4.0-configure.patch
deleted file mode 100644
index 1e8eb4900..000000000
--- a/sci-astronomy/missfits/files/missfits-2.4.0-configure.patch
+++ /dev/null
@@ -1,108 +0,0 @@
---- configure.ac.orig 2010-11-17 23:51:53.000000000 +0000
-+++ configure.ac 2010-11-17 23:54:58.000000000 +0000
-@@ -20,51 +20,18 @@
- AC_SUBST(DATE3, "$date3")
-
- # Include macros
--sinclude(acx_prog_cc_optim.m4)
- sinclude(acx_urbi_resolve_dir.m4)
-
- # Display pakage and version number
- AC_MSG_RESULT([*********** Configuring: $PACKAGE $VERSION ($date) **********])
-
--# Initialize the list of compilers to consider
--cclist="cc gcc"
--
--# Provide special option for choosing automatically the compilation flags.
--AC_MSG_CHECKING([if compilation flags are set automatically])
--AC_ARG_ENABLE(auto-flags,
-- [AC_HELP_STRING([--enable-auto-flags],
-- [Let the configure script choose the compilation flags \
--(off by default)])],
-- use_autoflag="yes"
-- AC_MSG_RESULT([yes]),
-- use_autoflag="no"
-- AC_MSG_RESULT([no]))
--
--# 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])
-+AC_PROG_CC
- # C Compiler: Check that it is ANSI C
- AM_PROG_CC_STDC
- # C Compiler: Check that it is POSIX-compliant
- AC_ISC_POSIX
--# Override automatic CFLAGS and LDFLAGS with those of user
--if test "$use_autoflag" = "yes"; then
-- CFLAGS=""
-- LDFLAGS =""
-- ACX_PROG_CC_OPTIM
--fi
- AC_PROG_RANLIB
- AC_PROG_INSTALL
-
-@@ -75,7 +42,7 @@
- # Checks for header files.
- AC_HEADER_STDC
- AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h sys/mman.h])
--if test $use_icc = "yes" -a $CC = "icc"; then
-+if test $CC = "icc"; then
- AC_CHECK_HEADERS(mathimf.h)
- fi
-
-@@ -115,43 +82,6 @@
-
- AC_DEFINE_UNQUOTED([XSL_URL], "$xsl_url",[Default URL of the XSLT filter])
-
--# Provide special option for gprof profiling
--AC_MSG_CHECKING([for gprof profiler mode])
--AC_ARG_ENABLE(gprof,
-- [AC_HELP_STRING([--enable-gprof],
-- [Enable special mode for compilation with the gprof profiler \
--(off by default)])],
-- use_gprof="yes"
-- AC_MSG_RESULT([yes]),
-- use_gprof="no"
-- AC_MSG_RESULT([no]))
--
--# Enable linking options for making the executable as portable as possible.
--AC_MSG_CHECKING([best linking option])
--AC_ARG_ENABLE(best-link,
-- [AC_HELP_STRING([--enable-best-link],
-- [Choose the right combination of static and dynamic linking to make \
--the executable as portable as possible (off by default)])],
-- use_best="yes"
-- AC_MSG_RESULT([yes]),
-- use_best="no"
-- AC_MSG_RESULT([no]))
--
--# Link with gprof option
--if test "$use_gprof" = "yes"; then
-- if test "$use_icc" = "yes"; then
-- AM_CFLAGS="$AM_CFLAGS -pq"
-- else
-- AM_CFLAGS="$AM_CFLAGS -pg"
-- fi
-- use_best="no"
--fi
--
--# "Best" linking option
--if test "$use_best" = "yes"; then
-- AM_LDFLAGS="-shared-libgcc -static-libtool-libs $AM_LDFLAGS"
--fi
--
- # Display compiler and linker flags
- AC_MSG_RESULT([***************************************************************])
- AC_MSG_RESULT([Compile cmdline: $CC $AM_CPPFLAGS $CPPFLAGS $AM_CFLAGS $CFLAGS])
diff --git a/sci-astronomy/missfits/missfits-2.4.0.ebuild b/sci-astronomy/missfits/missfits-2.4.0.ebuild
deleted file mode 100644
index 75a9197cd..000000000
--- a/sci-astronomy/missfits/missfits-2.4.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit autotools eutils
-
-DESCRIPTION="Performs basic maintenance and packaging tasks on FITS files"
-HOMEPAGE="http://www.astromatic.net/software/missfits/"
-SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-configure.patch
- eautoreconf
-}
-
-src_install () {
- default
- use doc && dodoc doc/*.pdf
-}
diff --git a/sci-astronomy/missfits/missfits-9999.ebuild b/sci-astronomy/missfits/missfits-9999.ebuild
index b9434e000..2ac2a850a 100644
--- a/sci-astronomy/missfits/missfits-9999.ebuild
+++ b/sci-astronomy/missfits/missfits-9999.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
if [[ ${PV} == "9999" ]] ; then
_SVN=subversion
@@ -14,7 +14,8 @@ else
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
fi
-inherit ${_SVN} autotools
+AUTOTOOLS_AUTORECONF=1
+inherit ${_SVN} autotools-utils
DESCRIPTION="Performs basic maintenance and packaging tasks on FITS files"
HOMEPAGE="http://www.astromatic.net/software/missfits/"
@@ -26,11 +27,7 @@ IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}"
-src_prepare() {
- eautoreconf
-}
-
src_install () {
- default
+ autotools-utils_src_install
use doc && dodoc doc/*
}