| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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/gnustep-base.eclass,v 1.17 2011/06/06 19:17:38 voyageur Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.18 2011/06/08 08:55:55 voyageur Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: gnustep-base.eclass |
5 | # @ECLASS: gnustep-base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # GNUstep Herd <gnustep@gentoo.org> |
7 | # GNUstep Herd <gnustep@gentoo.org> |
| 8 | # @BLURB: Internal handling of GNUstep pacakges |
8 | # @BLURB: Internal handling of GNUstep pacakges |
| … | |
… | |
| 149 | GNUSTEP_CONFIG_FILE="${T}"/GNUstep.conf \ |
149 | GNUSTEP_CONFIG_FILE="${T}"/GNUstep.conf \ |
| 150 | GNUSTEP_USER_DIR="${T}" \ |
150 | GNUSTEP_USER_DIR="${T}" \ |
| 151 | GNUSTEP_USER_DEFAULTS_DIR="${T}"/Defaults \ |
151 | GNUSTEP_USER_DEFAULTS_DIR="${T}"/Defaults \ |
| 152 | GNUSTEP_INSTALLATION_DOMAIN=SYSTEM \ |
152 | GNUSTEP_INSTALLATION_DOMAIN=SYSTEM \ |
| 153 | TAR_OPTIONS="${TAR_OPTIONS} --no-same-owner" \ |
153 | TAR_OPTIONS="${TAR_OPTIONS} --no-same-owner" \ |
| 154 | messages=yes \ |
154 | messages=yes ) |
| 155 | -j1 ) |
|
|
| 156 | |
155 | |
| 157 | use debug \ |
156 | use debug \ |
| 158 | && GS_ENV=( "${GS_ENV[@]}" "debug=yes" ) \ |
157 | && GS_ENV=( "${GS_ENV[@]}" "debug=yes" ) \ |
| 159 | || GS_ENV=( "${GS_ENV[@]}" "debug=no" ) |
158 | || GS_ENV=( "${GS_ENV[@]}" "debug=no" ) |
| 160 | |
159 | |