summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2018-06-01 16:10:39 +0200
committerLars Wendler <polynomial-c@gentoo.org>2018-06-01 16:10:59 +0200
commit2b8d3f11dd00f16419b87fb9e130684b836b75b0 (patch)
treeca1d91326be0b077810f2f4421524ae6080db00d /media-libs/glm/glm-0.9.8.4.ebuild
parentmedia-libs/glm: Bump to version 0.9.9.0 (diff)
downloadgentoo-2b8d3f11dd00f16419b87fb9e130684b836b75b0.tar.gz
gentoo-2b8d3f11dd00f16419b87fb9e130684b836b75b0.tar.bz2
gentoo-2b8d3f11dd00f16419b87fb9e130684b836b75b0.zip
media-libs/glm: Removed old.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'media-libs/glm/glm-0.9.8.4.ebuild')
-rw-r--r--media-libs/glm/glm-0.9.8.4.ebuild30
1 files changed, 0 insertions, 30 deletions
diff --git a/media-libs/glm/glm-0.9.8.4.ebuild b/media-libs/glm/glm-0.9.8.4.ebuild
deleted file mode 100644
index c1f45f53b1a6..000000000000
--- a/media-libs/glm/glm-0.9.8.4.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="OpenGL Mathematics"
-HOMEPAGE="http://glm.g-truc.net/"
-SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( HappyBunny MIT )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2"
-
-RDEPEND="virtual/opengl"
-
-src_configure() {
- if use test; then
- local mycmakeargs=( -DGLM_TEST_ENABLE=ON )
-
- use cpu_flags_x86_sse2 && mycmakeargs+=( -DGLM_TEST_ENABLE_SIMD_SSE2=ON )
- use cpu_flags_x86_sse3 && mycmakeargs+=( -DGLM_TEST_ENABLE_SIMD_SSE3=ON )
- use cpu_flags_x86_avx && mycmakeargs+=( -DGLM_TEST_ENABLE_SIMD_AVX=ON )
- use cpu_flags_x86_avx2 && mycmakeargs+=( -DGLM_TEST_ENABLE_SIMD_AVX2=ON )
- fi
-
- cmake-utils_src_configure
-}