sci-libs/udunits: Add back last stable version

Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec@gentoo.org>
This commit is contained in:
Justin Lecher
2016-01-17 21:24:15 +01:00
parent 74edb7096a
commit 3a886679ba
3 changed files with 103 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST udunits-2.1.24.tar.gz 1059344 SHA256 2e5fa4583031b26404a68167b38a11773872486f3c342fdde1e48c52a86e0ed0 SHA512 71af2aa62300dd6a2c58318d75cb9182433a208e28446725334a3a80195ebdae77aebe66e6c4e12b53b675501cf3295de2960d1e8beb1496a547d4eed0cde98e WHIRLPOOL 3c0bf81216553c00d1d37c6f5542496385d9b3cde2b14683e0fe6aaf85f62b50f49923e2239f2616635a53a7c4df9070db1001c7261b00cd51751a99c8870104
DIST udunits-2.2.20.tar.gz 1002380 SHA256 f10a02014bc6a200d50d8719997bb3a6b3d364de688469d2f7d599688dd9d195 SHA512 5d5803d9c2cbfdba7c760739f522680e3e69921256119af83e139a36fbcb4d7c84e044661f2987e3422f1eea548abaf4f585946643e8db36cd1d7065b86f8737 WHIRLPOOL 9816092de3ef12ed5b721f41ac55ce1bb8ac61d687f458520c0d9322ad6b3b3e7e07b298c8364e22d70bdec996fbfc10b959b5008141169964bd05060f39ace0

View File

@@ -0,0 +1,61 @@
diff --git a/Makefile.am b/Makefile.am
index 728e587..3c84c1b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,11 +6,11 @@
#
## Process this file with automake to produce Makefile.in
if COND_EXPAT
- SUBDIRS = expat lib prog
+ SUBDIRS = lib prog
else
SUBDIRS = lib prog
endif
-DIST_SUBDIRS = expat lib prog test
+DIST_SUBDIRS = lib prog test
info_TEXINFOS = udunits2.texi
udunits2_TEXINFOS = success.texi failure.texi make.texi
EXTRA_DIST = \
diff --git a/configure.ac b/configure.ac
index 097f6eb..091e673 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@ AC_INIT(UDUNITS, 2.1.15, support-udunits@unidata.ucar.edu)
AC_CONFIG_SRCDIR([lib/converter.c])
AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE([foreign subdir-objects])
-AC_CONFIG_HEADERS([config.h expat/expat_config.h])
+AC_CONFIG_HEADERS([config.h])
CFLAGS_COVERAGE=''
LIBS_COVERAGE=''
@@ -37,7 +37,7 @@ AC_ARG_ENABLE([debug],
CFLAGS="-g${CFLAGS:+ $CFLAGS}"
debug=true ;;
no)
- CFLAGS="-O${CFLAGS:+ $CFLAGS}"
+ CFLAGS="${CFLAGS:+ $CFLAGS}"
debug=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
esac],
@@ -110,20 +110,12 @@ AM_CONDITIONAL([HAVE_CUNIT], [test "$LD_CUNIT"])
AC_C_CONST
AC_TYPE_SIZE_T
-# Needed for the Expat subpackage:
-AC_C_BIGENDIAN([byteorder=4321], [byteorder=1234])
-AC_DEFINE_UNQUOTED([BYTEORDER], [$byteorder],
- [Define to 4321 for big-endian and 1234 for little-endian])
-AC_DEFINE([XML_CONTEXT_BYTES], 1024,
- [How much context to retain around the current parse point.])
-
# Checks for library functions.
AC_CHECK_FUNCS([floor memmove memset modf pow strcasecmp strdup strpbrk])
AC_PROG_LIBTOOL
AC_CONFIG_FILES([Makefile
- expat/Makefile
lib/Makefile
lib/xmlFailures/Makefile
lib/xmlSuccesses/Makefile

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils fortran-2
DESCRIPTION="Library for manipulating units of physical quantities"
HOMEPAGE="https://www.unidata.ucar.edu/software/udunits/"
SRC_URI="ftp://ftp.unidata.ucar.edu/pub/udunits/${P}.tar.gz"
SLOT="0"
LICENSE="UCAR-Unidata"
KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
RDEPEND="dev-libs/expat"
DEPEND="${RDEPEND}"
src_prepare() {
# respect user's flags, compile with system libexpat
epatch "${FILESDIR}"/${PN}-2.1.15-autotools.patch
rm -rf expat || die
eautoreconf
}
src_configure() {
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
$(use_enable static-libs static)
}
src_install() {
default
doinfo udunits2.info prog/udunits2prog.info
dodoc CHANGE_LOG ANNOUNCEMENT
dodoc udunits2.pdf prog/udunits2prog.pdf
docinto html
dodoc udunits2.html prog/udunits2prog.html
}