diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2008-03-30 17:55:38 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2008-03-30 17:55:38 +0000 |
commit | 62fee504bbfd6dcfdc4939bab940327274adf7c3 (patch) | |
tree | d501034c01d4fcea1c83f02f9ea36b69f65fe10c /media-gfx | |
parent | Version bump. Added smp support. (diff) | |
download | gentoo-2-62fee504bbfd6dcfdc4939bab940327274adf7c3.tar.gz gentoo-2-62fee504bbfd6dcfdc4939bab940327274adf7c3.tar.bz2 gentoo-2-62fee504bbfd6dcfdc4939bab940327274adf7c3.zip |
Version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/greycstoration/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/greycstoration/greycstoration-2.8.ebuild | 52 |
2 files changed, 59 insertions, 1 deletions
diff --git a/media-gfx/greycstoration/ChangeLog b/media-gfx/greycstoration/ChangeLog index 99f695e7db88..1b2d4ab6c15a 100644 --- a/media-gfx/greycstoration/ChangeLog +++ b/media-gfx/greycstoration/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/greycstoration # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/greycstoration/ChangeLog,v 1.1 2008/02/25 23:18:31 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/greycstoration/ChangeLog,v 1.2 2008/03/30 17:55:38 calchan Exp $ + +*greycstoration-2.8 (30 Mar 2008) + + 30 Mar 2008; Denis Dupeyron <calchan@gentoo.org> + +greycstoration-2.8.ebuild: + Version bump. *greycstoration-1.2.7 (25 Feb 2008) diff --git a/media-gfx/greycstoration/greycstoration-2.8.ebuild b/media-gfx/greycstoration/greycstoration-2.8.ebuild new file mode 100644 index 000000000000..48642f4a2f39 --- /dev/null +++ b/media-gfx/greycstoration/greycstoration-2.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/greycstoration/greycstoration-2.8.ebuild,v 1.1 2008/03/30 17:55:38 calchan Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Image regularization algorithm for denoising, inpainting and resizing" +HOMEPAGE="http://www.greyc.ensicaen.fr/~dtschump/greycstoration/" +SRC_URI="mirror://sourceforge/cimg/GREYCstoration-${PV}.zip" +LICENSE="CeCILL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="fftw imagemagick jpeg lapack png tiff X" + +DEPEND="fftw? ( >=sci-libs/fftw-3 ) + imagemagick? ( media-gfx/imagemagick ) + jpeg? ( media-libs/jpeg ) + lapack? ( virtual/lapack ) + png? ( media-libs/libpng ) + tiff? ( media-libs/tiff ) + X? ( x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrandr )" + +S="${WORKDIR}/GREYCstoration-${PV}/src" + +src_unpack() { + unpack ${A} + sed -i -e "s:../CImg.h:CImg.h:" "${S}"/greycstoration.cpp || die "sed failed" +} + +src_compile() { + local MY_CONF + + use X && MY_CONF+=" -lX11 -Dcimg_use_xshm -lXext -Dcimg_use_xrandr -lXrandr" + use png && MY_CONF+=" -Dcimg_use_png -lpng -lz" + use jpeg && MY_CONF+=" -Dcimg_use_jpeg -ljpeg" + use tiff && MY_CONF+=" -Dcimg_use_tiff -ltiff" + use imagemagick && MY_CONF+=" -Dcimg_use_magick $(Magick++-config --cppflags) \ + $(Magick++-config --ldflags) $(Magick++-config --libs)" + use fftw && MY_CONF+=" -Dcimg_use_fftw3 -lfftw3" + use lapack && MY_CONF+=" -Dcimg_use_lapack -llapack" + + $(tc-getCXX) -o greycstoration greycstoration.cpp \ + ${MY_CONF} -lm -lpthread \ + ${CXXFLAGS} ${LDFLAGS} \ + || die "Compilation failed" +} + +src_install() { + dobin greycstoration +} |