Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/enblend/
Date: Sun, 12 Feb 2017 13:19:41
Message-Id: 1486905555.a10df0d4f96d1ffaf77e2afd993361e8809e02e2.asturm@gentoo
1 commit: a10df0d4f96d1ffaf77e2afd993361e8809e02e2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 11 15:33:27 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 13:19:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a10df0d4
7
8 media-gfx/enblend: Drop old & broken
9
10 Package-Manager: portage-2.3.3
11 Closes: https://github.com/gentoo/gentoo/pull/3923
12
13 media-gfx/enblend/enblend-4.2.0_p20161007.ebuild | 78 ------------------------
14 1 file changed, 78 deletions(-)
15
16 diff --git a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild b/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild
17 deleted file mode 100644
18 index aa15cce946..0000000000
19 --- a/media-gfx/enblend/enblend-4.2.0_p20161007.ebuild
20 +++ /dev/null
21 @@ -1,78 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=6
27 -
28 -inherit cmake-utils
29 -
30 -DESCRIPTION="Image Blending with Multiresolution Splines"
31 -HOMEPAGE="http://enblend.sourceforge.net/"
32 -SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.xz"
33 -
34 -LICENSE="GPL-2 VIGRA"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~ppc ~x86"
37 -IUSE="debug doc openmp tcmalloc cpu_flags_x86_sse2"
38 -REQUIRED_USE="tcmalloc? ( !debug )"
39 -
40 -RDEPEND="
41 - >=dev-libs/boost-1.62.0:=
42 - media-libs/glew:*
43 - media-libs/lcms:2
44 - media-libs/libpng:0=
45 - media-libs/openexr:=
46 - media-libs/plotutils[X]
47 - media-libs/tiff:0
48 - media-libs/vigra[openexr]
49 - sci-libs/gsl:=
50 - virtual/jpeg:0
51 - debug? ( dev-libs/dmalloc )
52 - tcmalloc? ( dev-util/google-perftools )
53 - media-libs/freeglut"
54 -DEPEND="${RDEPEND}
55 - media-gfx/imagemagick
56 - sys-apps/help2man
57 - virtual/pkgconfig
58 - doc? (
59 - media-gfx/transfig
60 - sci-visualization/gnuplot[gd]
61 - virtual/latex-base
62 - dev-lang/perl
63 - dev-perl/Readonly
64 - media-gfx/graphviz
65 - gnome-base/librsvg
66 - dev-tex/hevea
67 - )"
68 -
69 -PATCHES=( "${FILESDIR}/${PN}-4.2-doc-install-dir-fix.patch" )
70 -
71 -src_prepare() {
72 - cmake-utils_src_prepare
73 -
74 - sed -i -e "s:share/doc/enblend:share/doc/${PF}:" doc/CMakeLists.txt || die
75 -}
76 -
77 -src_configure() {
78 - local mycmakeargs=(
79 - -DENABLE_DMALLOC=$(usex debug)
80 - -DENABLE_TCMALLOC=$(usex tcmalloc)
81 - -DDOC=$(usex doc)
82 - -DINSTALL_HTML_DOC=$(usex doc)
83 - -DINSTALL_PDF_DOC=$(usex doc)
84 - -DENABLE_OPENMP=$(usex openmp)
85 - -DENABLE_SSE2=$(usex cpu_flags_x86_sse2)
86 - )
87 - cmake-utils_src_configure
88 -}
89 -
90 -src_compile() {
91 - # To allow icon resizing with renderers (no way to disable)
92 - addpredict /dev/dri
93 -
94 - # To compile fonts in the temp directory
95 - export VARTEXFONTS="${T}/fonts"
96 -
97 - # forcing -j1 as every parallel compilation process needs about 1 GB RAM.
98 - cmake-utils_src_compile -j1
99 -}