public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/openexr: ChangeLog openexr-2.0.0.ebuild
@ 2013-03-11 20:14 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-03-11 20:14 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/03/11 20:14:14

  Modified:             ChangeLog
  Added:                openexr-2.0.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.88                 media-libs/openexr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	9 May 2012 17:00:17 -0000	1.87
+++ ChangeLog	11 Mar 2013 20:14:14 -0000	1.88
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/openexr
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v 1.87 2012/05/09 17:00:17 aballier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v 1.88 2013/03/11 20:14:14 ssuominen Exp $
+
+*openexr-2.0.0 (11 Mar 2013)
+
+  11 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> +openexr-2.0.0.ebuild:
+  Version bump.
 
   09 May 2012; Alexis Ballier <aballier@gentoo.org> openexr-1.7.0.ebuild:
   keyword ~amd64-fbsd



1.1                  media-libs/openexr/openexr-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild?rev=1.1&content-type=text/plain

Index: openexr-2.0.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild,v 1.1 2013/03/11 20:14:14 ssuominen Exp $

EAPI=5
inherit autotools eutils #libtool

DESCRIPTION="ILM's OpenEXR high dynamic-range image file format libraries"
HOMEPAGE="http://openexr.com/"
SRC_URI="http://download.savannah.gnu.org/releases/openexr/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 -arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="examples static-libs"

RDEPEND="sys-libs/zlib
	>=media-libs/ilmbase-${PV}"
DEPEND="${RDEPEND}
	virtual/pkgconfig"

S=${WORKDIR}/${P}/OpenEXR

src_prepare() {
	sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die
	# Fix path for testsuite
	sed -i -e "s:/var/tmp/:${T}:" IlmImfTest/tmpDir.h || die
	# Required for function memset()
	sed -i -e '1i#include <string.h>' IlmImf/ImfAutoArray.h || die

	eautoreconf
#	elibtoolize
}

src_configure() {
	econf \
		$(use_enable static-libs static) \
		$(use_enable examples imfexamples)
}

src_install() {
	emake \
		DESTDIR="${D}" \
		docdir=/usr/share/doc/${PF}/pdf \
		examplesdir=/usr/share/doc/${PF}/examples \
		install

	dodoc AUTHORS ChangeLog NEWS README

	if use examples; then
		dobin IlmImfExamples/imfexamples
	else
		rm -rf "${ED}"/usr/share/doc/${PF}/examples
	fi

	prune_libtool_files
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/openexr: ChangeLog openexr-2.0.0.ebuild
@ 2013-03-12  7:05 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-03-12  7:05 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/03/12 07:05:45

  Modified:             ChangeLog openexr-2.0.0.ebuild
  Log:
  Use subslotting
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.89                 media-libs/openexr/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	11 Mar 2013 20:14:14 -0000	1.88
+++ ChangeLog	12 Mar 2013 07:05:45 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/openexr
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v 1.88 2013/03/11 20:14:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/ChangeLog,v 1.89 2013/03/12 07:05:45 ssuominen Exp $
+
+  12 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> openexr-2.0.0.ebuild:
+  Use subslot 0/20 based on SONAME.
 
 *openexr-2.0.0 (11 Mar 2013)
 



1.2                  media-libs/openexr/openexr-2.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild?r1=1.1&r2=1.2

Index: openexr-2.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openexr-2.0.0.ebuild	11 Mar 2013 20:14:14 -0000	1.1
+++ openexr-2.0.0.ebuild	12 Mar 2013 07:05:45 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild,v 1.1 2013/03/11 20:14:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/openexr/openexr-2.0.0.ebuild,v 1.2 2013/03/12 07:05:45 ssuominen Exp $
 
 EAPI=5
 inherit autotools eutils #libtool
@@ -10,12 +10,12 @@
 SRC_URI="http://download.savannah.gnu.org/releases/openexr/${P}.tar.gz"
 
 LICENSE="BSD"
-SLOT="0"
+SLOT="0/20" # from SONAME
 KEYWORDS="~alpha ~amd64 -arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="examples static-libs"
 
-RDEPEND="sys-libs/zlib
-	>=media-libs/ilmbase-${PV}"
+RDEPEND="sys-libs/zlib:=
+	>=media-libs/ilmbase-${PV}:="
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 





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

end of thread, other threads:[~2013-03-12  7:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-11 20:14 [gentoo-commits] gentoo-x86 commit in media-libs/openexr: ChangeLog openexr-2.0.0.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-12  7:05 Samuli Suominen (ssuominen)

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