diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-01-23 10:30:40 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-01-23 10:34:54 +0100 |
commit | 471f1f47c296e093f4767dd90799dd33ed8496c2 (patch) | |
tree | 2d5eac966dc7c7341f8b617bb336cd8f0028854d /media-libs/zimg/zimg-2.4.ebuild | |
parent | media-video/motion: updated maintainership info, fixed upstream reference (th... (diff) | |
download | gentoo-471f1f47c296e093f4767dd90799dd33ed8496c2.tar.gz gentoo-471f1f47c296e093f4767dd90799dd33ed8496c2.tar.bz2 gentoo-471f1f47c296e093f4767dd90799dd33ed8496c2.zip |
media-libs/zimg: bump to 2.4
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-libs/zimg/zimg-2.4.ebuild')
-rw-r--r-- | media-libs/zimg/zimg-2.4.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild new file mode 100644 index 000000000000..58109a112c87 --- /dev/null +++ b/media-libs/zimg/zimg-2.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=yes + +SCM="" + +if [ "${PV#9999}" != "${PV}" ] ; then + SCM="git-r3" + EGIT_REPO_URI="https://github.com/sekrit-twc/zimg" +fi + +inherit autotools-multilib ${SCM} + +DESCRIPTION="Scaling, colorspace conversion, and dithering library" +HOMEPAGE="https://github.com/sekrit-twc/zimg" + +if [ "${PV#9999}" = "${PV}" ] ; then + SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~ppc ~x86" + S="${WORKDIR}/${PN}-release-${PV}/" +fi + +LICENSE="WTFPL-2" +SLOT="0" +IUSE="static-libs cpu_flags_x86_sse" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + autotools-multilib_src_configure \ + $(use_enable cpu_flags_x86_sse x86simd) +} |