blob: 37b15b4c1c3001b7d8b81a9a9261e07ace65b767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1.ebuild,v 1.6 2012/06/07 13:07:38 scarabeus Exp $
EAPI=4
inherit autotools-utils multilib
DESCRIPTION="Helper library for S3TC texture (de)compression"
HOMEPAGE="http://cgit.freedesktop.org/~mareko/libtxc_dxtn/"
SRC_URI="http://people.freedesktop.org/~cbrill/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-libs/mesa"
DEPEND="${RDEPEND}"
RESTRICT="bindist"
foreachabi() {
local ABI
for ABI in $(get_all_abis); do
multilib_toolchain_setup ${ABI}
AUTOTOOLS_BUILD_DIR=${WORKDIR}/${ABI} "${@}"
done
}
src_configure() {
foreachabi autotools-utils_src_configure
}
src_compile() {
foreachabi autotools-utils_src_compile
}
src_install() {
foreachabi autotools-utils_src_install
}
src_test() {
:;
}
pkg_postinst() {
ewarn "Depending on where you live, you might need a valid license for s3tc"
ewarn "in order to be legally allowed to use the external library."
ewarn "Redistribution in binary form might also be problematic."
ewarn
ewarn "You have been warned. Have a nice day."
}
|