commit: 30969a87e350c5b4de43f63ce980416cab8fd167 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Tue Oct 9 16:06:02 2018 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Tue Oct 9 16:09:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30969a87
media-libs/libtxc_dxtn: Clean up ebuild Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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 new file mode 100644 index 00000000000..f520acc9990 --- /dev/null +++ b/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-minimal + +DESCRIPTION="Helper library for S3TC texture (de)compression" +HOMEPAGE="https://cgit.freedesktop.org/~mareko/libtxc_dxtn/" +SRC_URI="https://people.freedesktop.org/~cbrill/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" +IUSE="" + +DEPEND="media-libs/mesa" +RDEPEND="" + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf +} + +multilib_src_install_all() { + default + + # libtxc_dxtn is installed as a module (plugin) + find "${D}" -name '*.la' -delete || die +}
