Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtxc_dxtn/
Date: Tue, 09 Oct 2018 16:09:50
Message-Id: 1539101344.30969a87e350c5b4de43f63ce980416cab8fd167.mattst88@gentoo
1 commit: 30969a87e350c5b4de43f63ce980416cab8fd167
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 9 16:06:02 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 9 16:09:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30969a87
7
8 media-libs/libtxc_dxtn: Clean up ebuild
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild | 29 ++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild b/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild
16 new file mode 100644
17 index 00000000000..f520acc9990
18 --- /dev/null
19 +++ b/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2018 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit multilib-minimal
27 +
28 +DESCRIPTION="Helper library for S3TC texture (de)compression"
29 +HOMEPAGE="https://cgit.freedesktop.org/~mareko/libtxc_dxtn/"
30 +SRC_URI="https://people.freedesktop.org/~cbrill/${PN}/${P}.tar.bz2"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
35 +IUSE=""
36 +
37 +DEPEND="media-libs/mesa"
38 +RDEPEND=""
39 +
40 +multilib_src_configure() {
41 + ECONF_SOURCE="${S}" econf
42 +}
43 +
44 +multilib_src_install_all() {
45 + default
46 +
47 + # libtxc_dxtn is installed as a module (plugin)
48 + find "${D}" -name '*.la' -delete || die
49 +}