Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/devil/
Date: Wed, 11 May 2022 14:14:57
Message-Id: 1652278479.edc7e39f15bd0c51c0f6ab7ab28876402448cc19.soap@gentoo
1 commit: edc7e39f15bd0c51c0f6ab7ab28876402448cc19
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 11 14:14:39 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 14:14:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc7e39f
7
8 media-libs/devil: drop 1.7.8-r2
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 media-libs/devil/devil-1.7.8-r2.ebuild | 90 ----------------------------------
13 1 file changed, 90 deletions(-)
14
15 diff --git a/media-libs/devil/devil-1.7.8-r2.ebuild b/media-libs/devil/devil-1.7.8-r2.ebuild
16 deleted file mode 100644
17 index 2e70bc70215e..000000000000
18 --- a/media-libs/devil/devil-1.7.8-r2.ebuild
19 +++ /dev/null
20 @@ -1,90 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -inherit autotools
27 -
28 -MY_P=DevIL-${PV}
29 -
30 -DESCRIPTION="DevIL image library"
31 -HOMEPAGE="http://openil.sourceforge.net/"
32 -SRC_URI="mirror://sourceforge/openil/${MY_P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm arm64 ~hppa ~mips ppc ppc64 ~riscv x86"
37 -IUSE="allegro cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 gif glut jpeg mng nvtt openexr opengl png sdl static-libs tiff X xpm"
38 -
39 -RDEPEND="
40 - allegro? ( media-libs/allegro:0 )
41 - gif? ( media-libs/giflib:= )
42 - glut? ( media-libs/freeglut )
43 - jpeg? ( virtual/jpeg:0 )
44 - mng? ( media-libs/libmng:= )
45 - nvtt? ( media-gfx/nvidia-texture-tools )
46 - openexr? ( media-libs/openexr:= )
47 - opengl? ( virtual/opengl
48 - virtual/glu )
49 - png? ( media-libs/libpng:0= )
50 - sdl? ( media-libs/libsdl )
51 - tiff? ( media-libs/tiff:0 )
52 - X? ( x11-libs/libXext
53 - x11-libs/libX11
54 - x11-libs/libXrender )
55 - xpm? ( x11-libs/libXpm )"
56 -DEPEND="${RDEPEND}"
57 -BDEPEND="virtual/pkgconfig
58 - X? ( x11-base/xorg-proto )"
59 -
60 -PATCHES=(
61 - "${FILESDIR}/${P}"-CVE-2009-3994.patch
62 - "${FILESDIR}/${P}"-libpng14.patch
63 - "${FILESDIR}/${P}"-nvtt-glut.patch
64 - "${FILESDIR}/${P}"-ILUT.patch
65 - "${FILESDIR}/${P}"-restrict.patch
66 - "${FILESDIR}/${P}"-fix-test.patch
67 - "${FILESDIR}/${P}"-jasper-remove-uchar.patch
68 -)
69 -
70 -src_prepare() {
71 - default
72 - eautoreconf
73 -}
74 -
75 -src_configure() {
76 - econf \
77 - $(use_enable static-libs static) \
78 - --disable-lcms \
79 - --enable-ILU \
80 - --enable-ILUT \
81 - $(use_enable cpu_flags_x86_sse sse) \
82 - $(use_enable cpu_flags_x86_sse2 sse2) \
83 - $(use_enable cpu_flags_x86_sse3 sse3) \
84 - $(use_enable openexr exr) \
85 - $(use_enable gif) \
86 - $(use_enable jpeg) \
87 - --enable-jp2 \
88 - $(use_enable mng) \
89 - $(use_enable png) \
90 - $(use_enable tiff) \
91 - $(use_enable xpm) \
92 - $(use_enable allegro) \
93 - --disable-directx8 \
94 - --disable-directx9 \
95 - $(use_enable opengl) \
96 - $(use_enable sdl) \
97 - $(use_enable X x11) \
98 - $(use_enable X shm) \
99 - $(use_enable X render) \
100 - $(use_enable glut) \
101 - $(use_with X x) \
102 - $(use_with nvtt)
103 -}
104 -
105 -src_install() {
106 - default
107 -
108 - # package provides .pc files
109 - find "${ED}" -name '*.la' -delete || die
110 -}