Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glu/
Date: Sat, 29 Aug 2015 20:09:34
Message-Id: 1440879169.938b727734c1d75dd0c60326194b2d31b63c3169.mattst88@gentoo
1 commit: 938b727734c1d75dd0c60326194b2d31b63c3169
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 20:12:49 2015 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 20:12:49 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=938b7277
7
8 media-libs/glu: Delete old version 9.0.0.
9
10 Package-Manager: portage-2.2.20.1
11
12 media-libs/glu/glu-9.0.0.ebuild | 82 -----------------------------------------
13 1 file changed, 82 deletions(-)
14
15 diff --git a/media-libs/glu/glu-9.0.0.ebuild b/media-libs/glu/glu-9.0.0.ebuild
16 deleted file mode 100644
17 index 6af2878..0000000
18 --- a/media-libs/glu/glu-9.0.0.ebuild
19 +++ /dev/null
20 @@ -1,82 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/glu"
28 -
29 -if [[ ${PV} = 9999* ]]; then
30 - GIT_ECLASS="git-2"
31 - EXPERIMENTAL="true"
32 -fi
33 -
34 -inherit autotools-utils multilib ${GIT_ECLASS}
35 -
36 -DESCRIPTION="The OpenGL Utility Library"
37 -HOMEPAGE="http://cgit.freedesktop.org/mesa/glu/"
38 -
39 -if [[ ${PV} = 9999* ]]; then
40 - SRC_URI=""
41 -else
42 - SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${PN}/${P}.tar.bz2"
43 -fi
44 -
45 -LICENSE="SGI-B-2.0"
46 -SLOT="0"
47 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
48 -IUSE="multilib static-libs"
49 -
50 -DEPEND="virtual/opengl"
51 -RDEPEND="${DEPEND}
52 - !<media-libs/mesa-9
53 - multilib? ( !app-emulation/emul-linux-x86-opengl )"
54 -
55 -foreachabi() {
56 - if use multilib; then
57 - local ABI
58 - for ABI in $(get_all_abis); do
59 - multilib_toolchain_setup ${ABI}
60 - AUTOTOOLS_BUILD_DIR=${WORKDIR}/${ABI} "${@}"
61 - done
62 - else
63 - "${@}"
64 - fi
65 -}
66 -
67 -pkg_pretend() {
68 - if [[ ${MERGE_TYPE} != buildonly ]] && has collision-protect ${FEATURES}; then
69 - if [[ $(readlink "${EPREFIX}"/usr/$(get_libdir)/libGLU$(get_libname)) == *opengl* ]]; then
70 - eerror "FEATURES=\"collision-protect\" is enabled, which will prevent overwriting"
71 - eerror "symlinks that were formerly managed by eselect opengl. You must disable"
72 - eerror "collision-protect or remove ${EPREFIX}/usr/$(get_libdir)/libGLU$(get_libname)*"
73 - eerror "manually. For details see bug #435682."
74 - die "collision-protect cannot overwrite libGLU$(get_libname)*"
75 - fi
76 - fi
77 -}
78 -
79 -src_unpack() {
80 - default
81 - [[ $PV = 9999* ]] && git-2_src_unpack
82 -}
83 -
84 -src_prepare() {
85 - AUTOTOOLS_AUTORECONF=1 autotools-utils_src_prepare
86 -}
87 -
88 -src_configure() {
89 - foreachabi autotools-utils_src_configure
90 -}
91 -
92 -src_compile() {
93 - foreachabi autotools-utils_src_compile
94 -}
95 -
96 -src_install() {
97 - foreachabi autotools-utils_src_install
98 -}
99 -
100 -src_test() {
101 - :;
102 -}