net-fs/openafs-kernel: remove vulnerable versions
[gentoo.git] / eclass / gnome.org.eclass
1 # Copyright 1999-2011 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: gnome.org.eclass
6 # @MAINTAINER:
7 # gnome@gentoo.org
8 # @AUTHOR:
9 # Authors: Spidler <spidler@gentoo.org> with help of carparski.
10 # eclass variable additions and documentation: Gilles Dartiguelongue <eva@gentoo.org>
11 # @BLURB: Helper eclass for gnome.org hosted archives
12 # @DESCRIPTION:
13 # Provide a default SRC_URI for tarball hosted on gnome.org mirrors.
14
15 inherit versionator
16
17 # @ECLASS-VARIABLE: GNOME_TARBALL_SUFFIX
18 # @DESCRIPTION:
19 # Most projects hosted on gnome.org mirrors provide tarballs as tar.bz2 or
20 # tar.xz. This eclass defaults to bz2 for EAPI 0, 1, 2, 3 and defaults to xz for
21 # everything else. This is because the gnome mirrors are moving to only have xz
22 # tarballs for new releases.
23 if has "${EAPI:-0}" 0 1 2 3; then
24         : ${GNOME_TARBALL_SUFFIX:="bz2"}
25 else
26         : ${GNOME_TARBALL_SUFFIX:="xz"}
27 fi
28
29 # Even though xz-utils are in @system, they must still be added to DEPEND; see
30 # https://archives.gentoo.org/gentoo-dev/msg_a0d4833eb314d1be5d5802a3b710e0a4.xml
31 if [[ ${GNOME_TARBALL_SUFFIX} == "xz" ]]; then
32         DEPEND="${DEPEND} app-arch/xz-utils"
33 fi
34
35 # @ECLASS-VARIABLE: GNOME_ORG_MODULE
36 # @DESCRIPTION:
37 # Name of the module as hosted on gnome.org mirrors.
38 # Leave unset if package name matches module name.
39 : ${GNOME_ORG_MODULE:=$PN}
40
41 # @ECLASS-VARIABLE: GNOME_ORG_PVP
42 # @INTERNAL
43 # @DESCRIPTION:
44 # Major and minor numbers of the version number.
45 : ${GNOME_ORG_PVP:=$(get_version_component_range 1-2)}
46
47 SRC_URI="mirror://gnome/sources/${GNOME_ORG_MODULE}/${GNOME_ORG_PVP}/${GNOME_ORG_MODULE}-${PV}.tar.${GNOME_TARBALL_SUFFIX}"
48
49 S="${WORKDIR}/${GNOME_ORG_MODULE}-${PV}"