public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tomas Chvatal (scarabeus)" <scarabeus@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/vigra: ChangeLog vigra-1.7.1.ebuild
Date: Thu, 31 Mar 2011 18:25:59 +0000 (UTC)	[thread overview]
Message-ID: <20110331182559.80F6820057@flycatcher.gentoo.org> (raw)

scarabeus    11/03/31 18:25:59

  Modified:             ChangeLog
  Added:                vigra-1.7.1.ebuild
  Log:
  Version bump. This version uses cmake to built itself. Per bug #316549.
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 media-libs/vigra/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/vigra/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	7 Nov 2010 19:33:53 -0000	1.27
+++ ChangeLog	31 Mar 2011 18:25:59 -0000	1.28
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/vigra
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/vigra/ChangeLog,v 1.27 2010/11/07 19:33:53 anarchy Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/vigra/ChangeLog,v 1.28 2011/03/31 18:25:59 scarabeus Exp $
+
+*vigra-1.7.1 (31 Mar 2011)
+
+  31 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org>
+  +files/1.7.1-automagicness.patch, +files/1.7.1-hdf5.patch,
+  +vigra-1.7.1.ebuild:
+  Version bump. This version uses cmake to built itself. Per bug #316549.
 
   07 Nov 2010; Jory A. Pratt <anarchy@gentoo.org> vigra-1.6.0.ebuild,
   vigra-1.6.0-r1.ebuild:



1.1                  media-libs/vigra/vigra-1.7.1.ebuild

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

Index: vigra-1.7.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/vigra/vigra-1.7.1.ebuild,v 1.1 2011/03/31 18:25:59 scarabeus Exp $

EAPI=4

MY_P=${P}-src
inherit base cmake-utils

DESCRIPTION="C++ computer vision library with emphasize on customizable algorithms and data structures"
HOMEPAGE="http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/"
SRC_URI="http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc fftw hdf5 jpeg png test tiff"

RDEPEND="
	dev-libs/boost
	png? ( media-libs/libpng )
	tiff? ( media-libs/tiff )
	jpeg? ( virtual/jpeg )
	hdf5? ( sci-libs/hdf5 )
	fftw? ( >=sci-libs/fftw-3 )"
DEPEND="${RDEPEND}"

PATCHES=(
	"${FILESDIR}/1.7.1-automagicness.patch"
	"${FILESDIR}/1.7.1-hdf5.patch"
)

# Tests fail because they have hardcoded dependencies on those
# optional in source so restrict them for now.
# Possibly could be fixed and sent upstream
RESTRICT="test"

src_configure() {
	local libdir=$(get_libdir)

	# vigranumpy needs python so i can't test
	# doc needs doxygen and python
	# walgrind no use for us since we restrict test
	# $(cmake-utils_use_with valgrind VALGRIND)
	local mycmakeargs=(
		"-DLIBDIR_SUFFIX=${libdir/lib}"
		"-DDOCINSTALL=share/doc/${PF}"
		"-DENABLE_DOC=OFF"
		"-DWITH_VIGRANUMPY=OFF"
		$(cmake-utils_use_with png)
		$(cmake-utils_use_with jpeg)
		$(cmake-utils_use_with tiff)
		$(cmake-utils_use_with fftw FFTW3)
		$(cmake-utils_use_with hdf5)
		$(cmake-utils_use_build test TESTING)
		$(cmake-utils_use test CREATE_CTEST_TARGETS)
		$(cmake-utils_use test AUTOBUILD_TESTS)
	)

	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install

	# drop useless cmake files from libdir
	rm -rf ${ED}/usr/$(get_libdir)/${PN}/
}






             reply	other threads:[~2011-03-31 18:26 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-31 18:25 Tomas Chvatal (scarabeus) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-04-05 18:50 [gentoo-commits] gentoo-x86 commit in media-libs/vigra: ChangeLog vigra-1.7.1.ebuild Tomas Chvatal (scarabeus)
2011-05-03  7:41 Tomas Chvatal (scarabeus)
2011-07-29 11:49 Tomas Chvatal (scarabeus)
2011-10-04 11:36 Tony Vroon (chainsaw)
2011-10-04 21:37 PaweA Hajdan (phajdan.jr)
2011-10-11 20:56 Samuli Suominen (ssuominen)
2011-10-15 12:55 Kacper Kowalik (xarthisius)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110331182559.80F6820057@flycatcher.gentoo.org \
    --to=scarabeus@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox