| 1 |
# Copyright 1999-2007 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.15 2010/03/10 13:19:06 voyageur Exp $
|
| 4 |
|
| 5 |
# @ECLASS: gnustep-base.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# GNUstep Herd <gnustep@gentoo.org>
|
| 8 |
# @BLURB: Internal handling of GNUstep pacakges
|
| 9 |
# @DESCRIPTION:
|
| 10 |
# Inner gnustep eclass, should only be inherited directly by gnustep-base
|
| 11 |
# packages
|
| 12 |
|
| 13 |
inherit eutils flag-o-matic
|
| 14 |
|
| 15 |
# IUSE variables across all GNUstep packages
|
| 16 |
# "debug": enable code for debugging
|
| 17 |
# "doc": build and install documentation, if available
|
| 18 |
IUSE="debug doc"
|
| 19 |
|
| 20 |
# packages needed to build any base gnustep package
|
| 21 |
GNUSTEP_CORE_DEPEND="doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html )"
|
| 22 |
|
| 23 |
# New layout is used when ${EPREFIX}/usr/share/GNUstep/Makefiles exists
|
| 24 |
# Where to install GNUstep (with old layout)
|
| 25 |
GNUSTEP_PREFIX="${EPREFIX}/usr/GNUstep"
|
| 26 |
|
| 27 |
# GNUstep environment array
|
| 28 |
typeset -a GS_ENV
|
| 29 |
|
| 30 |
# Ebuild function overrides
|
| 31 |
gnustep-base_pkg_setup() {
|
| 32 |
if test_version_info 3.3 ; then
|
| 33 |
strip-unsupported-flags
|
| 34 |
elif test_version_info 3.4 ; then
|
| 35 |
# strict-aliasing is known to break obj-c stuff in gcc-3.4*
|
| 36 |
filter-flags -fstrict-aliasing
|
| 37 |
fi
|
| 38 |
|
| 39 |
# known to break ObjC (bug 86089)
|
| 40 |
filter-flags -fomit-frame-pointer
|
| 41 |
}
|
| 42 |
|
| 43 |
gnustep-base_src_unpack() {
|
| 44 |
unpack ${A}
|
| 45 |
cd "${S}"
|
| 46 |
|
| 47 |
gnustep-base_src_prepare
|
| 48 |
}
|
| 49 |
|
| 50 |
gnustep-base_src_prepare() {
|
| 51 |
if [[ -f ./GNUmakefile ]] ; then
|
| 52 |
# Kill stupid includes that are simply overdone or useless on normal
|
| 53 |
# Gentoo, but (may) cause major headaches on Prefixed Gentoo. If this
|
| 54 |
# only removes a part of a path it's good that it bails out, as we want
|
| 55 |
# to know when they use some direct include.
|
| 56 |
ebegin "Cleaning paths from GNUmakefile"
|
| 57 |
sed -i \
|
| 58 |
-e 's|-I/usr/X11R6/include||g' \
|
| 59 |
-e 's|-I/usr/include||g' \
|
| 60 |
-e 's|-L/usr/X11R6/lib||g' \
|
| 61 |
-e 's|-L/usr/lib||g' \
|
| 62 |
GNUmakefile
|
| 63 |
eend $?
|
| 64 |
fi
|
| 65 |
}
|
| 66 |
|
| 67 |
gnustep-base_src_configure() {
|
| 68 |
egnustep_env
|
| 69 |
if [[ -x ./configure ]] ; then
|
| 70 |
econf || die "configure failed"
|
| 71 |
fi
|
| 72 |
}
|
| 73 |
|
| 74 |
gnustep-base_src_compile() {
|
| 75 |
egnustep_env
|
| 76 |
case ${EAPI:-0} in
|
| 77 |
0|1) gnustep-base_src_configure ;;
|
| 78 |
esac
|
| 79 |
|
| 80 |
egnustep_make
|
| 81 |
}
|
| 82 |
|
| 83 |
gnustep-base_src_install() {
|
| 84 |
egnustep_env
|
| 85 |
egnustep_install
|
| 86 |
if use doc ; then
|
| 87 |
egnustep_env
|
| 88 |
egnustep_doc
|
| 89 |
fi
|
| 90 |
egnustep_install_config
|
| 91 |
}
|
| 92 |
|
| 93 |
gnustep-base_pkg_postinst() {
|
| 94 |
[[ $(type -t gnustep_config_script) != "function" ]] && return 0
|
| 95 |
|
| 96 |
local SCRIPT_PATH
|
| 97 |
if [[ -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
|
| 98 |
SCRIPT_PATH="/usr/bin"
|
| 99 |
else
|
| 100 |
SCRIPT_PATH=${GNUSTEP_SYSTEM_TOOLS}/Gentoo
|
| 101 |
fi
|
| 102 |
elog "To use this package, as *user* you should run:"
|
| 103 |
elog " ${SCRIPT_PATH}/config-${PN}.sh"
|
| 104 |
}
|
| 105 |
|
| 106 |
# Clean/reset an ebuild to the installed GNUstep environment
|
| 107 |
egnustep_env() {
|
| 108 |
# Get additional variables
|
| 109 |
GNUSTEP_SH_EXPORT_ALL_VARIABLES="true"
|
| 110 |
|
| 111 |
# Makefiles path
|
| 112 |
local GS_MAKEFILES
|
| 113 |
if [[ -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
|
| 114 |
GS_MAKEFILES=${EPREFIX}/usr/share/GNUstep/Makefiles
|
| 115 |
else
|
| 116 |
GS_MAKEFILES=${GNUSTEP_PREFIX}/System/Library/Makefiles
|
| 117 |
fi
|
| 118 |
if [[ -f ${GS_MAKEFILES}/GNUstep.sh ]] ; then
|
| 119 |
# Reset GNUstep variables
|
| 120 |
source "${GS_MAKEFILES}"/GNUstep-reset.sh
|
| 121 |
source "${GS_MAKEFILES}"/GNUstep.sh
|
| 122 |
|
| 123 |
# Needed to run installed GNUstep apps in sandbox
|
| 124 |
addpredict "/root/GNUstep"
|
| 125 |
|
| 126 |
if [[ ! -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
|
| 127 |
# Set rpath in ldflags when available
|
| 128 |
case ${CHOST} in
|
| 129 |
*-linux-gnu|*-solaris*)
|
| 130 |
is-ldflagq -Wl,-rpath="${GNUSTEP_SYSTEM_LIBRARIES}" \
|
| 131 |
|| append-ldflags \
|
| 132 |
-Wl,-rpath="${GNUSTEP_SYSTEM_LIBRARIES}"
|
| 133 |
;;
|
| 134 |
esac
|
| 135 |
fi
|
| 136 |
|
| 137 |
# Set up env vars for make operations
|
| 138 |
GS_ENV=( AUXILIARY_LDFLAGS="${LDFLAGS}" \
|
| 139 |
ADDITIONAL_NATIVE_LIB_DIRS="${GNUSTEP_SYSTEM_LIBRARIES}" \
|
| 140 |
DESTDIR="${D}" \
|
| 141 |
HOME="${T}" \
|
| 142 |
GNUSTEP_USER_DIR="${T}" \
|
| 143 |
GNUSTEP_USER_DEFAULTS_DIR="${T}"/Defaults \
|
| 144 |
GNUSTEP_INSTALLATION_DOMAIN=SYSTEM \
|
| 145 |
TAR_OPTIONS="${TAR_OPTIONS} --no-same-owner" \
|
| 146 |
messages=yes \
|
| 147 |
-j1 )
|
| 148 |
|
| 149 |
use debug \
|
| 150 |
&& GS_ENV=( "${GS_ENV[@]}" "debug=yes" ) \
|
| 151 |
|| GS_ENV=( "${GS_ENV[@]}" "debug=no" )
|
| 152 |
|
| 153 |
return 0
|
| 154 |
fi
|
| 155 |
die "gnustep-make not installed!"
|
| 156 |
}
|
| 157 |
|
| 158 |
# Make utilizing GNUstep Makefiles
|
| 159 |
egnustep_make() {
|
| 160 |
if [[ -f ./Makefile || -f ./makefile || -f ./GNUmakefile ]] ; then
|
| 161 |
emake ${*} "${GS_ENV[@]}" all || die "package make failed"
|
| 162 |
return 0
|
| 163 |
fi
|
| 164 |
die "no Makefile found"
|
| 165 |
}
|
| 166 |
|
| 167 |
# Make-install utilizing GNUstep Makefiles
|
| 168 |
egnustep_install() {
|
| 169 |
if [[ ! -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
|
| 170 |
# avoid problems due to our "weird" prefix, make sure it exists
|
| 171 |
mkdir -p "${D}"${GNUSTEP_SYSTEM_TOOLS}
|
| 172 |
fi
|
| 173 |
if [[ -f ./[mM]akefile || -f ./GNUmakefile ]] ; then
|
| 174 |
emake ${*} "${GS_ENV[@]}" install || die "package install failed"
|
| 175 |
return 0
|
| 176 |
fi
|
| 177 |
die "no Makefile found"
|
| 178 |
}
|
| 179 |
|
| 180 |
# Make and install docs using GNUstep Makefiles
|
| 181 |
egnustep_doc() {
|
| 182 |
if [[ -d ./Documentation ]] ; then
|
| 183 |
# Check documentation presence
|
| 184 |
cd "${S}"/Documentation
|
| 185 |
if [[ -f ./[mM]akefile || -f ./GNUmakefile ]] ; then
|
| 186 |
emake "${GS_ENV[@]}" all || die "doc make failed"
|
| 187 |
emake "${GS_ENV[@]}" install || die "doc install failed"
|
| 188 |
fi
|
| 189 |
cd ..
|
| 190 |
fi
|
| 191 |
}
|
| 192 |
|
| 193 |
egnustep_install_config() {
|
| 194 |
[[ $(type -t gnustep_config_script) != "function" ]] && return 0
|
| 195 |
|
| 196 |
local cfile=config-${PN}.sh
|
| 197 |
|
| 198 |
cat << 'EOF' > "${T}"/${cfile}
|
| 199 |
#!/usr/bin/env bash
|
| 200 |
gnustep_append_default() {
|
| 201 |
if [[ -z $1 || -z $2 || -z $3 ]]; then
|
| 202 |
echo "warning: invalid script invocation"
|
| 203 |
return
|
| 204 |
fi
|
| 205 |
dom=$1
|
| 206 |
key=$2
|
| 207 |
val=$3
|
| 208 |
cur=$(defaults read ${dom} ${key}) 2> /dev/null
|
| 209 |
if [[ -z $cur ]] ; then
|
| 210 |
echo " * setting ${dom} ${key}"
|
| 211 |
defaults write ${dom} ${key} "( ${val} )"
|
| 212 |
elif [[ ${cur} != *${val}* ]] ; then
|
| 213 |
echo " * adding ${val} to ${dom} ${key}"
|
| 214 |
echo "${cur%)\'}, \"${val}\" )'" | defaults write
|
| 215 |
else
|
| 216 |
echo " * ${val} already present in ${dom} ${key}"
|
| 217 |
fi
|
| 218 |
}
|
| 219 |
|
| 220 |
gnustep_set_default() {
|
| 221 |
if [[ -z $1 || -z $2 || -z $3 ]]; then
|
| 222 |
echo "warning: invalid script invocation"
|
| 223 |
return
|
| 224 |
fi
|
| 225 |
dom=$1
|
| 226 |
key=$2
|
| 227 |
val=$3
|
| 228 |
echo " * setting ${dom} ${key}"
|
| 229 |
defaults write ${dom} ${key} ${val}
|
| 230 |
}
|
| 231 |
|
| 232 |
EOF
|
| 233 |
|
| 234 |
echo "echo \"Applying ${P} default configuration ...\"" >> "${T}"/${cfile}
|
| 235 |
|
| 236 |
gnustep_config_script | \
|
| 237 |
while read line ; do
|
| 238 |
echo "${line}" >> "${T}"/${cfile}
|
| 239 |
done
|
| 240 |
echo 'echo "done"' >> "${T}"/${cfile}
|
| 241 |
|
| 242 |
if [[ -d ${EPREFIX}/usr/share/GNUstep/Makefiles ]]; then
|
| 243 |
exeinto /usr/bin
|
| 244 |
else
|
| 245 |
exeinto ${GNUSTEP_SYSTEM_TOOLS#${EPREFIX}}/Gentoo
|
| 246 |
fi
|
| 247 |
doexe "${T}"/${cfile}
|
| 248 |
}
|
| 249 |
|
| 250 |
case ${EAPI:-0} in
|
| 251 |
0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst ;;
|
| 252 |
*) EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install pkg_postinst ;;
|
| 253 |
esac
|