diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-02-11 16:33:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-02-12 14:19:15 +0100 |
commit | a10df0d4f96d1ffaf77e2afd993361e8809e02e2 (patch) | |
tree | 227dfca4b5a7cac339bd9670d182ab736756a1f0 /media-gfx/enblend | |
parent | media-gfx/enblend: Fix Find{LCMS2,OpenGL}.cmake hardcoded lib32 paths (diff) | |
download | gentoo-a10df0d4f96d1ffaf77e2afd993361e8809e02e2.tar.gz gentoo-a10df0d4f96d1ffaf77e2afd993361e8809e02e2.tar.bz2 gentoo-a10df0d4f96d1ffaf77e2afd993361e8809e02e2.zip |
media-gfx/enblend: Drop old & broken
Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/3923
Diffstat (limited to 'media-gfx/enblend')
-rw-r--r-- | media-gfx/enblend/enblend-4.2.0_p20161007.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild b/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild deleted file mode 100644 index aa15cce946f4..000000000000 --- a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="Image Blending with Multiresolution Splines" -HOMEPAGE="http://enblend.sourceforge.net/" -SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.xz" - -LICENSE="GPL-2 VIGRA" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug doc openmp tcmalloc cpu_flags_x86_sse2" -REQUIRED_USE="tcmalloc? ( !debug )" - -RDEPEND=" - >=dev-libs/boost-1.62.0:= - media-libs/glew:* - media-libs/lcms:2 - media-libs/libpng:0= - media-libs/openexr:= - media-libs/plotutils[X] - media-libs/tiff:0 - media-libs/vigra[openexr] - sci-libs/gsl:= - virtual/jpeg:0 - debug? ( dev-libs/dmalloc ) - tcmalloc? ( dev-util/google-perftools ) - media-libs/freeglut" -DEPEND="${RDEPEND} - media-gfx/imagemagick - sys-apps/help2man - virtual/pkgconfig - doc? ( - media-gfx/transfig - sci-visualization/gnuplot[gd] - virtual/latex-base - dev-lang/perl - dev-perl/Readonly - media-gfx/graphviz - gnome-base/librsvg - dev-tex/hevea - )" - -PATCHES=( "${FILESDIR}/${PN}-4.2-doc-install-dir-fix.patch" ) - -src_prepare() { - cmake-utils_src_prepare - - sed -i -e "s:share/doc/enblend:share/doc/${PF}:" doc/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DENABLE_DMALLOC=$(usex debug) - -DENABLE_TCMALLOC=$(usex tcmalloc) - -DDOC=$(usex doc) - -DINSTALL_HTML_DOC=$(usex doc) - -DINSTALL_PDF_DOC=$(usex doc) - -DENABLE_OPENMP=$(usex openmp) - -DENABLE_SSE2=$(usex cpu_flags_x86_sse2) - ) - cmake-utils_src_configure -} - -src_compile() { - # To allow icon resizing with renderers (no way to disable) - addpredict /dev/dri - - # To compile fonts in the temp directory - export VARTEXFONTS="${T}/fonts" - - # forcing -j1 as every parallel compilation process needs about 1 GB RAM. - cmake-utils_src_compile -j1 -} |