public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/cdf: cdf-3.3.0.ebuild ChangeLog
@ 2009-07-22 22:46 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2009-07-22 22:46 UTC (permalink / raw
  To: gentoo-commits

bicatali    09/07/22 22:46:52

  Modified:             ChangeLog
  Added:                cdf-3.3.0.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 sci-libs/cdf/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	2 Feb 2009 18:34:08 -0000	1.17
+++ ChangeLog	22 Jul 2009 22:46:52 -0000	1.18
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/cdf
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.17 2009/02/02 18:34:08 bicatali Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.18 2009/07/22 22:46:52 bicatali Exp $
+
+*cdf-3.3.0 (22 Jul 2009)
+
+  22 Jul 2009; Sébastien Fabbro <bicatali@gentoo.org> +cdf-3.3.0.ebuild:
+  Version bump
 
 *cdf-3.2.4 (02 Feb 2009)
 



1.1                  sci-libs/cdf/cdf-3.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.1&content-type=text/plain

Index: cdf-3.3.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.1 2009/07/22 22:46:52 bicatali Exp $

EAPI=2
inherit eutils toolchain-funcs multilib versionator java-pkg-opt-2

MY_DP="${PN}$(get_version_component_range 1)$(get_version_component_range 2)"
MY_P="${MY_DP}_$(get_version_component_range 3)"

DESCRIPTION="Common Data Format I/O library for multi-dimensional data sets"
HOMEPAGE="http://cdf.gsfc.nasa.gov/"
SRC_BASE="ftp://cdaweb.gsfc.nasa.gov/pub/${PN}/dist/${MY_P}/unix"

SRC_URI="${SRC_BASE}/${MY_P}-dist-${PN}.tar.gz
	java? ( ${SRC_BASE}/${MY_P}-dist-java.tar.gz )
	doc? ( ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}crm.pdf
		   ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}frm.pdf
		   ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}ifd.pdf
		   ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}prm.pdf
		   ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}ug.pdf
	java? ( ${SRC_BASE}/${MY_DP}_documentation/${MY_DP}jrm.pdf ) )"

LICENSE="CDF"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc examples java ncurses"

RDEPEND="ncurses? ( sys-libs/ncurses )
	java? ( >=virtual/jre-1.5 )"
DEPEND="ncurses? ( sys-libs/ncurses )
	java? ( >=virtual/jdk-1.5 )"

S="${WORKDIR}/${MY_P}-dist"

src_prepare() {
	# respect cflags, remove useless scripts
	epatch "${FILESDIR}"/${PN}-3.2-Makefile.patch
	epatch "${FILESDIR}"/${PN}-3.2-soname.patch
	# use proper lib dir
	sed -i \
		-e "s:\$(INSTALLDIR)/lib:\$(INSTALLDIR)/$(get_libdir):g" \
		Makefile || die "sed failed"
}

src_compile() {
	local myconf
	if use ncurses; then
		myconf="${myconf} CURSES=yes"
	else
		myconf="${myconf} CURSES=no"
	fi
	PV_SO=${PV:0:1}
	emake \
		OS=linux \
		ENV=gnu \
		SHARED=yes \
		SHAREDEXT_linux=so.${PV_SO} \
		${myconf} \
		all || die "emake failed"

	if use java; then
		export CDF_BASE="${S}"
		export CDF_LIB="${S}/src/lib"
		cd cdfjava/jni
		$(tc-getCC) \
			${CFLAGS} -fPIC \
			-I${CDF_BASE}/src/include \
			-I$(java-config -O)/include \
			-I$(java-config -O)/include/linux \
			-c cdfNativeLibrary.c \
			-o cdfNativeLibrary.o \
			|| die "compiling java lib failed"
		$(tc-getCC) \
			${LDFLAGS} \
			-L${CDF_LIB} -lcdf -lm \
			-shared cdfNativeLibrary.o \
			-Wl,-soname=libcdfNativeLibrary.so.${PV_SO} \
			-o libcdfNativeLibrary.so.${PV_SO} \
			|| die "linking java lib failed"
	fi
}

src_test() {
	emake -j1 test || die "test failed"
}

src_install() {
	dodir /usr/bin
	dodir /usr/$(get_libdir)
	# -j1 (fragile non-autotooled make)
	emake -j1 \
		INSTALLDIR="${D}usr" \
		SHAREDEXT=so.${PV_SO} \
		install || die "emake install failed"
	dosym libcdf.so.${PV_SO} /usr/$(get_libdir)/libcdf.so

	dodoc Release.notes CHANGES.txt Welcome.txt || die
	doenvd "${FILESDIR}"/50cdf

	if use doc; then
		insinto /usr/share/doc/${PF}
		doins "${DISTDIR}"/${MY_DP}*.pdf
		use java || rm "${D}"/usr/share/doc/${PF}/${MY_P}jrm.pdf
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins samples/* || die
	fi

	if use java; then
		cd cdfjava
		dolib.so jni/libcdfNativeLibrary.so.${PV_SO}
		dosym libcdfNativeLibrary.so.${PV_SO} \
			/usr/$(get_libdir)/libcdfNativeLibrary.so
		java-pkg_dojar */*.jar
		if use examples; then
			insinto /usr/share/doc/${PF}/examples/java
			doins examples/* || die
		fi
	fi
}






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/cdf: cdf-3.3.0.ebuild ChangeLog
@ 2009-07-23 20:33 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-23 20:33 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/23 20:33:12

  Modified:             cdf-3.3.0.ebuild ChangeLog
  Log:
  stable x86, security bug 278679
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.2                  sci-libs/cdf/cdf-3.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?r1=1.1&r2=1.2

Index: cdf-3.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cdf-3.3.0.ebuild	22 Jul 2009 22:46:52 -0000	1.1
+++ cdf-3.3.0.ebuild	23 Jul 2009 20:33:12 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.1 2009/07/22 22:46:52 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.2 2009/07/23 20:33:12 fauli Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs multilib versionator java-pkg-opt-2
@@ -23,7 +23,7 @@
 
 LICENSE="CDF"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="doc examples java ncurses"
 
 RDEPEND="ncurses? ( sys-libs/ncurses )



1.19                 sci-libs/cdf/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	22 Jul 2009 22:46:52 -0000	1.18
+++ ChangeLog	23 Jul 2009 20:33:12 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cdf
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.18 2009/07/22 22:46:52 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.19 2009/07/23 20:33:12 fauli Exp $
+
+  23 Jul 2009; Christian Faulhammer <fauli@gentoo.org> cdf-3.3.0.ebuild:
+  stable x86, security bug 278679
 
 *cdf-3.3.0 (22 Jul 2009)
 






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/cdf: cdf-3.3.0.ebuild ChangeLog
@ 2009-07-24 13:03 Tobias Heinlein (keytoaster)
  0 siblings, 0 replies; 4+ messages in thread
From: Tobias Heinlein (keytoaster) @ 2009-07-24 13:03 UTC (permalink / raw
  To: gentoo-commits

keytoaster    09/07/24 13:03:20

  Modified:             cdf-3.3.0.ebuild ChangeLog
  Log:
  amd64 stable, bug #278679
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sci-libs/cdf/cdf-3.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?r1=1.2&r2=1.3

Index: cdf-3.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cdf-3.3.0.ebuild	23 Jul 2009 20:33:12 -0000	1.2
+++ cdf-3.3.0.ebuild	24 Jul 2009 13:03:20 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.2 2009/07/23 20:33:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.3 2009/07/24 13:03:20 keytoaster Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs multilib versionator java-pkg-opt-2
@@ -23,7 +23,7 @@
 
 LICENSE="CDF"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc examples java ncurses"
 
 RDEPEND="ncurses? ( sys-libs/ncurses )



1.20                 sci-libs/cdf/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	23 Jul 2009 20:33:12 -0000	1.19
+++ ChangeLog	24 Jul 2009 13:03:20 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cdf
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.19 2009/07/23 20:33:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.20 2009/07/24 13:03:20 keytoaster Exp $
+
+  24 Jul 2009; Tobias Heinlein <keytoaster@gentoo.org> cdf-3.3.0.ebuild:
+  amd64 stable, bug #278679
 
   23 Jul 2009; Christian Faulhammer <fauli@gentoo.org> cdf-3.3.0.ebuild:
   stable x86, security bug 278679






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/cdf: cdf-3.3.0.ebuild ChangeLog
@ 2009-08-09 13:46 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 4+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-08-09 13:46 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/08/09 13:46:18

  Modified:             cdf-3.3.0.ebuild ChangeLog
  Log:
  ppc stable #278679
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.4                  sci-libs/cdf/cdf-3.3.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild?r1=1.3&r2=1.4

Index: cdf-3.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cdf-3.3.0.ebuild	24 Jul 2009 13:03:20 -0000	1.3
+++ cdf-3.3.0.ebuild	9 Aug 2009 13:46:18 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.3 2009/07/24 13:03:20 keytoaster Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/cdf-3.3.0.ebuild,v 1.4 2009/08/09 13:46:18 nixnut Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs multilib versionator java-pkg-opt-2
@@ -23,7 +23,7 @@
 
 LICENSE="CDF"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc examples java ncurses"
 
 RDEPEND="ncurses? ( sys-libs/ncurses )



1.21                 sci-libs/cdf/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/cdf/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	24 Jul 2009 13:03:20 -0000	1.20
+++ ChangeLog	9 Aug 2009 13:46:18 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/cdf
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.20 2009/07/24 13:03:20 keytoaster Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cdf/ChangeLog,v 1.21 2009/08/09 13:46:18 nixnut Exp $
+
+  09 Aug 2009; nixnut <nixnut@gentoo.org> cdf-3.3.0.ebuild:
+  ppc stable #278679
 
   24 Jul 2009; Tobias Heinlein <keytoaster@gentoo.org> cdf-3.3.0.ebuild:
   amd64 stable, bug #278679






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-08-09 13:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-22 22:46 [gentoo-commits] gentoo-x86 commit in sci-libs/cdf: cdf-3.3.0.ebuild ChangeLog Sebastien Fabbro (bicatali)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-23 20:33 Christian Faulhammer (fauli)
2009-07-24 13:03 Tobias Heinlein (keytoaster)
2009-08-09 13:46 Gysbert Wassenaar (nixnut)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox