diff options
author | 2012-10-08 21:13:03 +0000 | |
---|---|---|
committer | 2012-10-08 21:13:03 +0000 | |
commit | 2495a4a291f2ef7f4e16218f2890ef2e208846ac (patch) | |
tree | b121adb419bc31abd0ca9a4c81216120e0ce6522 /media-libs/libtxc_dxtn | |
parent | fix mistake during distutils conversion (diff) | |
download | gentoo-2-2495a4a291f2ef7f4e16218f2890ef2e208846ac.tar.gz gentoo-2-2495a4a291f2ef7f4e16218f2890ef2e208846ac.tar.bz2 gentoo-2-2495a4a291f2ef7f4e16218f2890ef2e208846ac.zip |
Use autotools-multilib eclass.
(Portage version: 2.2.0_alpha135_p2/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libtxc_dxtn')
-rw-r--r-- | media-libs/libtxc_dxtn/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r1.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/media-libs/libtxc_dxtn/ChangeLog b/media-libs/libtxc_dxtn/ChangeLog index f8768b7d772f..a9eecbbf4fc7 100644 --- a/media-libs/libtxc_dxtn/ChangeLog +++ b/media-libs/libtxc_dxtn/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libtxc_dxtn # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtxc_dxtn/ChangeLog,v 1.9 2012/09/11 19:04:29 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtxc_dxtn/ChangeLog,v 1.10 2012/10/08 21:13:03 mgorny Exp $ + +*libtxc_dxtn-1.0.1-r1 (08 Oct 2012) + + 08 Oct 2012; Michał Górny <mgorny@gentoo.org> +libtxc_dxtn-1.0.1-r1.ebuild: + Use autotools-multilib eclass. 11 Sep 2012; Matt Turner <mattst88@gentoo.org> libtxc_dxtn-1.0.1.ebuild: Remove useless .la files. diff --git a/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r1.ebuild b/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r1.ebuild new file mode 100644 index 000000000000..8aaa5a5baa52 --- /dev/null +++ b/media-libs/libtxc_dxtn/libtxc_dxtn-1.0.1-r1.ebuild @@ -0,0 +1,29 @@ +# 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-r1.ebuild,v 1.1 2012/10/08 21:13:03 mgorny Exp $ + +EAPI=4 + +inherit autotools-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 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="media-libs/mesa" +DEPEND="${RDEPEND}" + +RESTRICT="bindist" + +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." +} |