1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2011 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome.org.eclass,v 1.3 2002/09/28 06:06:49 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnome.org.eclass,v 1.14 2011/08/22 04:46:31 vapier Exp $ |
4 | |
4 | |
5 | # Authors: |
5 | # @ECLASS: gnome.org.eclass |
6 | # Spidler <spidler@gentoo.org> |
6 | # @MAINTAINER: |
7 | # with help of carparski. |
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. |
8 | |
14 | |
9 | # Gnome ECLASS. mainly SRC_URI settings |
15 | inherit versionator |
10 | |
16 | |
11 | ECLASS="gnome.org" |
17 | # @ECLASS-VARIABLE: GNOME_TARBALL_SUFFIX |
12 | INHERITED="$INHERITED $ECLASS" |
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 |
13 | |
28 | |
14 | [ -z "${GNOME_TARBALL_SUFFIX}" ] && export GNOME_TARBALL_SUFFIX="bz2" |
29 | # @ECLASS-VARIABLE: GNOME_ORG_MODULE |
15 | PVP=($(echo " $PV " | sed 's:[-\._]: :g')) |
30 | # @DESCRIPTION: |
16 | SRC_URI="mirror://gnome/sources/${PN}/${PVP[0]}.${PVP[1]}/${P}.tar.${GNOME_TARBALL_SUFFIX}" |
31 | # Name of the module as hosted on gnome.org mirrors. |
|
|
32 | # Leave unset if package name matches module name. |
|
|
33 | : ${GNOME_ORG_MODULE:=$PN} |
17 | |
34 | |
|
|
35 | # @ECLASS-VARIABLE: GNOME_ORG_PVP |
|
|
36 | # @INTERNAL |
|
|
37 | # @DESCRIPTION: |
|
|
38 | # Major and minor numbers of the version number. |
|
|
39 | : ${GNOME_ORG_PVP:=$(get_version_component_range 1-2)} |
|
|
40 | |
|
|
41 | SRC_URI="mirror://gnome/sources/${GNOME_ORG_MODULE}/${GNOME_ORG_PVP}/${GNOME_ORG_MODULE}-${PV}.tar.${GNOME_TARBALL_SUFFIX}" |
|
|
42 | |
|
|
43 | S="${WORKDIR}/${GNOME_ORG_MODULE}-${PV}" |