diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-22 18:43:27 +0200 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-22 18:43:27 +0200 |
commit | f3e524e4c45d6a7ec382d985fa7663f05a32a785 (patch) | |
tree | c9b57a7a227af9b3dab2df841a106cdf2f743fd5 | |
parent | [app-office/libreoffice-3.4.2.2] bump (diff) | |
download | scarabeus-f3e524e4c45d6a7ec382d985fa7663f05a32a785.tar.gz scarabeus-f3e524e4c45d6a7ec382d985fa7663f05a32a785.tar.bz2 scarabeus-f3e524e4c45d6a7ec382d985fa7663f05a32a785.zip |
[x11-libs/s2tc] s2tc is non-patented s3tc decompressor +-
-rw-r--r-- | x11-libs/s2tc/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/s2tc/s2tc-9999.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/x11-libs/s2tc/Manifest b/x11-libs/s2tc/Manifest new file mode 100644 index 0000000..d0319bc --- /dev/null +++ b/x11-libs/s2tc/Manifest @@ -0,0 +1 @@ +EBUILD s2tc-9999.ebuild 671 RMD160 188c322219233001640d217e6d34cc6cd542ed2a SHA1 d85e7e9f27e17b6fd47bbd134d6667199c0258cd SHA256 6871cbf570b2ca563890b6591ee314a0c560919d72870a6e6cad4a804a794769 diff --git a/x11-libs/s2tc/s2tc-9999.ebuild b/x11-libs/s2tc/s2tc-9999.ebuild new file mode 100644 index 0000000..fb00c26 --- /dev/null +++ b/x11-libs/s2tc/s2tc-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +EGIT_REPO_URI="https://github.com/divVerent/s2tc.git" +inherit git-2 autotools + +DESCRIPTION="s2tc (non-patented s3tc) texture compression library" +HOMEPAGE="https://github.com/divVerent/s2tc/wiki/" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/opengl" +RDEPEND="${DEPEND} + !x11-libs/libtxc_dxtn +" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf \ + --disable-static \ + --disable-runtime-linking \ + --enable-lib \ + --enable-tools +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} |