| 1 |
ingmar |
1.1 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
scarabeus |
1.17 |
# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.16 2009/04/17 10:41:29 scarabeus Exp $ |
| 4 |
ingmar |
1.1 |
|
| 5 |
|
|
# @ECLASS: kde4-functions.eclass |
| 6 |
|
|
# @MAINTAINER: |
| 7 |
|
|
# kde@gentoo.org |
| 8 |
scarabeus |
1.10 |
# @BLURB: Common ebuild functions for KDE 4 packages |
| 9 |
ingmar |
1.1 |
# @DESCRIPTION: |
| 10 |
|
|
# This eclass contains all functions shared by the different eclasses, |
| 11 |
scarabeus |
1.10 |
# for KDE 4 ebuilds. |
| 12 |
|
|
|
| 13 |
|
|
# @ECLASS-VARIABLE: EAPI |
| 14 |
|
|
# @DESCRIPTION: |
| 15 |
scarabeus |
1.14 |
# By default kde4 eclasses wants eapi 2 which might be redefinable to newer |
| 16 |
|
|
# versions. |
| 17 |
|
|
case ${EAPI:-0} in |
| 18 |
scarabeus |
1.10 |
2) : ;; |
| 19 |
scarabeus |
1.14 |
*) die "No way! EAPI other than 2 is not supported for now." ;; |
| 20 |
scarabeus |
1.10 |
esac |
| 21 |
ingmar |
1.1 |
|
| 22 |
|
|
# @ECLASS-VARIABLE: KDEBASE |
| 23 |
|
|
# @DESCRIPTION: |
| 24 |
|
|
# This gets set to a non-zero value when a package is considered a kde or |
| 25 |
|
|
# koffice ebuild. |
| 26 |
|
|
|
| 27 |
scarabeus |
1.15 |
if [[ ${CATEGORY} = kde-base ]]; then |
| 28 |
ingmar |
1.1 |
debug-print "${ECLASS}: KDEBASE ebuild recognized" |
| 29 |
scarabeus |
1.10 |
KDEBASE=kde-base |
| 30 |
ingmar |
1.1 |
fi |
| 31 |
|
|
|
| 32 |
|
|
# is this a koffice ebuild? |
| 33 |
scarabeus |
1.15 |
if [[ ${KMNAME} = koffice || ${PN} = koffice ]]; then |
| 34 |
ingmar |
1.1 |
debug-print "${ECLASS}: KOFFICE ebuild recognized" |
| 35 |
scarabeus |
1.10 |
KDEBASE=koffice |
| 36 |
ingmar |
1.1 |
fi |
| 37 |
|
|
|
| 38 |
jmbsvicetto |
1.8 |
# @ECLASS-VARIABLE: KDE_SLOTS |
| 39 |
|
|
# @DESCRIPTION: |
| 40 |
scarabeus |
1.15 |
# The slots used by all KDE versions later than 4.0. The live KDE releases use |
| 41 |
|
|
# KDE_LIVE_SLOTS instead. Values should be ordered. |
| 42 |
|
|
KDE_SLOTS=( "kde-4" "4.1" "4.2" "4.3" ) |
| 43 |
jmbsvicetto |
1.8 |
|
| 44 |
|
|
# @ECLASS-VARIABLE: KDE_LIVE_SLOTS |
| 45 |
|
|
# @DESCRIPTION: |
| 46 |
scarabeus |
1.15 |
# The slots used by KDE live versions. Values should be ordered. |
| 47 |
|
|
KDE_LIVE_SLOTS=( "live" ) |
| 48 |
ingmar |
1.1 |
|
| 49 |
|
|
# @FUNCTION: buildsycoca |
| 50 |
|
|
# @DESCRIPTION: |
| 51 |
|
|
# Function to rebuild the KDE System Configuration Cache. |
| 52 |
|
|
# All KDE ebuilds should run this in pkg_postinst and pkg_postrm. |
| 53 |
|
|
buildsycoca() { |
| 54 |
|
|
debug-print-function ${FUNCNAME} "$@" |
| 55 |
scarabeus |
1.15 |
|
| 56 |
scarabeus |
1.10 |
if [[ -z ${ROOT%%/} && -x ${KDEDIR}/bin/kbuildsycoca4 ]]; then |
| 57 |
scarabeus |
1.15 |
# Make sure tha cache file exists, writable by root and readable by |
| 58 |
|
|
# others. Otherwise kbuildsycoca4 will fail. |
| 59 |
jmbsvicetto |
1.8 |
touch "${KDEDIR}/share/kde4/services/ksycoca4" |
| 60 |
scarabeus |
1.15 |
chmod 644 "${KDEDIR}/share/kde4/services/ksycoca4" |
| 61 |
jmbsvicetto |
1.8 |
|
| 62 |
|
|
# We have to unset DISPLAY and DBUS_SESSION_BUS_ADDRESS, the ones |
| 63 |
|
|
# in the user's environment (through su [without '-']) may cause |
| 64 |
|
|
# kbuildsycoca4 to hang. |
| 65 |
ingmar |
1.1 |
|
| 66 |
|
|
ebegin "Running kbuildsycoca4 to build global database" |
| 67 |
|
|
# This is needed because we support multiple kde versions installed together. |
| 68 |
scarabeus |
1.15 |
# Lookup in order - local, KDEDIR, /usr, do not duplicate entries btw. |
| 69 |
|
|
local KDEDIRS="/usr/share" |
| 70 |
|
|
[[ ${KDEDIR} != "/usr" ]] && KDEDIRS="${KDEDIR}/share:${KDEDIRS}" |
| 71 |
|
|
XDG_DATA_DIRS="/usr/local/share:${KDEDIRS}" \ |
| 72 |
jmbsvicetto |
1.8 |
DISPLAY="" DBUS_SESSION_BUS_ADDRESS="" \ |
| 73 |
|
|
${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null |
| 74 |
ingmar |
1.1 |
eend $? |
| 75 |
|
|
fi |
| 76 |
scarabeus |
1.15 |
|
| 77 |
|
|
# fix permission for some directories |
| 78 |
|
|
for x in share/config share/kde4; do |
| 79 |
scarabeus |
1.17 |
[[ ${KDEDIR} = /usr ]] && DIRS=/usr || DIRS="/usr ${KDEDIR}" |
| 80 |
|
|
for y in ${DIRS}; do |
| 81 |
|
|
[[ -d "${y}/${x}" ]] || break # nothing to do if directory does not exist |
| 82 |
|
|
if [[ $(stat --format=%a "${y}/${x}") != 755 ]]; then |
| 83 |
|
|
ewarn "QA Notice:" |
| 84 |
|
|
ewarn "Package ${PN} is breaking ${y}/${x} permissions." |
| 85 |
|
|
ewarn "Please report this issue to gentoo bugzilla." |
| 86 |
|
|
einfo "Permissions will get adjusted automatically now." |
| 87 |
|
|
find "${y}/${x}" -type d -print0 | xargs -0 chmod 755 |
| 88 |
|
|
fi |
| 89 |
|
|
done |
| 90 |
scarabeus |
1.15 |
done |
| 91 |
ingmar |
1.1 |
} |
| 92 |
|
|
|
| 93 |
|
|
# @FUNCTION: comment_all_add_subdirectory |
| 94 |
|
|
# @USAGE: [list of directory names] |
| 95 |
|
|
# @DESCRIPTION: |
| 96 |
scarabeus |
1.10 |
# Recursively comment all add_subdirectory instructions in listed directories, |
| 97 |
|
|
# except those in cmake/. |
| 98 |
ingmar |
1.1 |
comment_all_add_subdirectory() { |
| 99 |
|
|
find "$@" -name CMakeLists.txt -print0 | grep -vFzZ "./cmake" | \ |
| 100 |
ingmar |
1.6 |
xargs -0 sed -i -e '/add_subdirectory/s/^/#DONOTCOMPILE /' -e '/ADD_SUBDIRECTORY/s/^/#DONOTCOMPILE /' || \ |
| 101 |
ingmar |
1.1 |
die "${LINENO}: Initial sed died" |
| 102 |
|
|
} |
| 103 |
|
|
|
| 104 |
zlin |
1.5 |
# @ECLASS-VARIABLE: KDE_LINGUAS |
| 105 |
|
|
# @DESCRIPTION: |
| 106 |
scarabeus |
1.10 |
# This is a whitespace-separated list of translations this ebuild supports. |
| 107 |
|
|
# These translations are automatically added to IUSE. Therefore ebuilds must set |
| 108 |
|
|
# this variable before inheriting any eclasses. To enable only selected |
| 109 |
|
|
# translations, ebuilds must call enable_selected_linguas(). kde4-base.eclass does |
| 110 |
zlin |
1.5 |
# this for you. |
| 111 |
|
|
# |
| 112 |
|
|
# Example: KDE_LINGUAS="en_GB de nl" |
| 113 |
|
|
for _lingua in ${KDE_LINGUAS}; do |
| 114 |
|
|
IUSE="${IUSE} linguas_${_lingua}" |
| 115 |
|
|
done |
| 116 |
|
|
|
| 117 |
|
|
# @FUNCTION: enable_selected_linguas |
| 118 |
|
|
# @DESCRIPTION: |
| 119 |
scarabeus |
1.10 |
# Enable translations based on LINGUAS settings and translations supported by |
| 120 |
|
|
# the package (see KDE_LINGUAS). By default, translations are found in "${S}"/po |
| 121 |
zlin |
1.5 |
# but this default can be overridden by defining KDE_LINGUAS_DIR. |
| 122 |
|
|
enable_selected_linguas() { |
| 123 |
scarabeus |
1.10 |
local lingua sr_mess wp |
| 124 |
|
|
|
| 125 |
|
|
# ebuild overridable linguas directory definition |
| 126 |
scarabeus |
1.15 |
KDE_LINGUAS_DIR=${KDE_LINGUAS_DIR:="${S}/po"} |
| 127 |
|
|
cd "${KDE_LINGUAS_DIR}" || die "wrong linguas dir specified" |
| 128 |
scarabeus |
1.10 |
|
| 129 |
|
|
# fix all various crazy sr@Latn variations |
| 130 |
|
|
# this part is only ease for ebuilds, so there wont be any die when this |
| 131 |
|
|
# fail at any point |
| 132 |
|
|
sr_mess="sr@latn sr@latin sr@Latin" |
| 133 |
|
|
for wp in ${sr_mess}; do |
| 134 |
scarabeus |
1.15 |
[[ -e "${wp}.po" ]] && mv "${wp}.po" "sr@Latn.po" |
| 135 |
|
|
if [[ -d "${wp}" ]]; then |
| 136 |
scarabeus |
1.10 |
# move dir and fix cmakelists |
| 137 |
scarabeus |
1.15 |
mv "${wp}" "sr@Latn" |
| 138 |
scarabeus |
1.10 |
sed -i \ |
| 139 |
scarabeus |
1.15 |
-e "s:${wp}:sr@Latin:g" \ |
| 140 |
scarabeus |
1.10 |
CMakeLists.txt |
| 141 |
|
|
fi |
| 142 |
|
|
done |
| 143 |
jmbsvicetto |
1.8 |
|
| 144 |
|
|
for lingua in ${KDE_LINGUAS}; do |
| 145 |
scarabeus |
1.15 |
if [[ -e "${lingua}.po" ]]; then |
| 146 |
|
|
mv "${lingua}.po" "${lingua}.po.old" |
| 147 |
jmbsvicetto |
1.8 |
fi |
| 148 |
|
|
done |
| 149 |
scarabeus |
1.10 |
comment_all_add_subdirectory "${KDE_LINGUAS_DIR}" |
| 150 |
jmbsvicetto |
1.8 |
for lingua in ${LINGUAS}; do |
| 151 |
scarabeus |
1.10 |
ebegin "Enabling LANGUAGE: ${lingua}" |
| 152 |
scarabeus |
1.15 |
if [[ -d "${lingua}" ]]; then |
| 153 |
ingmar |
1.6 |
sed -e "/add_subdirectory([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 154 |
|
|
-e "/ADD_SUBDIRECTORY([[:space:]]*${lingua}[[:space:]]*)[[:space:]]*$/ s/^#DONOTCOMPILE //" \ |
| 155 |
scarabeus |
1.10 |
-i CMakeLists.txt || die "Sed to uncomment linguas_${lingua} failed." |
| 156 |
zlin |
1.5 |
fi |
| 157 |
scarabeus |
1.15 |
if [[ -e "${lingua}.po.old" ]]; then |
| 158 |
|
|
mv "${lingua}.po.old" "${lingua}.po" |
| 159 |
jmbsvicetto |
1.8 |
fi |
| 160 |
scarabeus |
1.10 |
eend $? |
| 161 |
zlin |
1.5 |
done |
| 162 |
|
|
} |
| 163 |
|
|
|
| 164 |
scarabeus |
1.10 |
# @FUNCTION: get_build_type |
| 165 |
ingmar |
1.1 |
# @DESCRIPTION: |
| 166 |
scarabeus |
1.10 |
# Determine whether we are using live ebuild or tbzs. |
| 167 |
|
|
get_build_type() { |
| 168 |
scarabeus |
1.15 |
if [[ ${SLOT} = live || ${PV} = 9999* ]]; then |
| 169 |
scarabeus |
1.10 |
BUILD_TYPE="live" |
| 170 |
|
|
else |
| 171 |
|
|
BUILD_TYPE="release" |
| 172 |
|
|
fi |
| 173 |
|
|
export BUILD_TYPE |
| 174 |
|
|
} |
| 175 |
ingmar |
1.1 |
|
| 176 |
scarabeus |
1.11 |
# @FUNCTION: migrate_store_dir |
| 177 |
|
|
# @DESCRIPTION: |
| 178 |
scarabeus |
1.15 |
# Universal store dir migration |
| 179 |
|
|
# * performs split of kdebase to kdebase-apps when needed |
| 180 |
|
|
# * moves playground/extragear kde4-base-style to toplevel dir |
| 181 |
scarabeus |
1.11 |
migrate_store_dir() { |
| 182 |
scarabeus |
1.15 |
local cleandir="${ESVN_STORE_DIR}/KDE" |
| 183 |
scarabeus |
1.11 |
if [[ -d "${cleandir}" ]]; then |
| 184 |
|
|
ewarn "'${cleandir}' has been found. Moving contents to new location." |
| 185 |
|
|
addwrite "${ESVN_STORE_DIR}" |
| 186 |
|
|
# Split kdebase |
| 187 |
|
|
local module |
| 188 |
|
|
if pushd "${cleandir}"/kdebase/kdebase > /dev/null; then |
| 189 |
|
|
for module in `find . -maxdepth 1 -type d -name [a-z0-9]\*`; do |
| 190 |
|
|
module="${module#./}" |
| 191 |
|
|
mkdir -p "${ESVN_STORE_DIR}/kdebase-${module}" && mv -f "${module}" "${ESVN_STORE_DIR}/kdebase-${module}" || \ |
| 192 |
|
|
die "Failed to move to '${ESVN_STORE_DIR}/kdebase-${module}'." |
| 193 |
|
|
done |
| 194 |
|
|
popd > /dev/null |
| 195 |
|
|
rm -fr "${cleandir}/kdebase" || \ |
| 196 |
|
|
die "Failed to remove ${cleandir}/kdebase. You need to remove it manually." |
| 197 |
|
|
fi |
| 198 |
|
|
# Move the rest |
| 199 |
|
|
local pkg |
| 200 |
|
|
for pkg in "${cleandir}"/*; do |
| 201 |
scarabeus |
1.15 |
mv -f "${pkg}" "${ESVN_STORE_DIR}"/ || eerror "Failed to move '${pkg}'" |
| 202 |
scarabeus |
1.11 |
done |
| 203 |
|
|
rmdir "${cleandir}" || die "Could not move obsolete KDE store dir. Please move '${cleandir}' contents to appropriate location (possibly ${ESVN_STORE_DIR}) and manually remove '${cleandir}' in order to continue." |
| 204 |
|
|
fi |
| 205 |
scarabeus |
1.15 |
|
| 206 |
|
|
if ! hasq kde4-meta ${INHERITED}; then |
| 207 |
|
|
case ${KMNAME} in |
| 208 |
|
|
extragear*|playground*) |
| 209 |
|
|
local svnlocalpath="${ESVN_STORE_DIR}"/"${KMNAME}"/"${PN}" |
| 210 |
|
|
if [[ -d "${svnlocalpath}" ]]; then |
| 211 |
|
|
local destdir="${ESVN_STORE_DIR}"/"${ESVN_PROJECT}"/"`basename "${ESVN_REPO_URI}"`" |
| 212 |
|
|
ewarn "'${svnlocalpath}' has been found." |
| 213 |
|
|
ewarn "Moving contents to new location: ${destdir}" |
| 214 |
|
|
addwrite "${ESVN_STORE_DIR}" |
| 215 |
|
|
mkdir -p "${ESVN_STORE_DIR}"/"${ESVN_PROJECT}" && mv -f "${svnlocalpath}" "${destdir}" \ |
| 216 |
|
|
|| die "Failed to move to '${svnlocalpath}'" |
| 217 |
|
|
# Try cleaning empty directories |
| 218 |
|
|
rmdir "`dirname "${svnlocalpath}"`" 2> /dev/null |
| 219 |
|
|
fi |
| 220 |
|
|
;; |
| 221 |
|
|
esac |
| 222 |
|
|
fi |
| 223 |
scarabeus |
1.11 |
} |
| 224 |
|
|
|
| 225 |
scarabeus |
1.10 |
# Functions handling KMLOADLIBS and KMSAVELIBS |
| 226 |
ingmar |
1.1 |
|
| 227 |
scarabeus |
1.10 |
# @FUNCTION: save_library_dependencies |
| 228 |
|
|
# @DESCRIPTION: |
| 229 |
|
|
# Add exporting CMake dependencies for current package |
| 230 |
|
|
save_library_dependencies() { |
| 231 |
|
|
local depsfile="${T}/${PN}:${SLOT}" |
| 232 |
|
|
|
| 233 |
scarabeus |
1.15 |
ebegin "Saving library dependencies in ${depsfile##*/}" |
| 234 |
scarabeus |
1.10 |
echo "EXPORT_LIBRARY_DEPENDENCIES(\"${depsfile}\")" >> "${S}/CMakeLists.txt" || \ |
| 235 |
|
|
die "Failed to save the library dependencies." |
| 236 |
|
|
eend $? |
| 237 |
ingmar |
1.1 |
} |
| 238 |
|
|
|
| 239 |
scarabeus |
1.10 |
# @FUNCTION: install_library_dependencies |
| 240 |
ingmar |
1.1 |
# @DESCRIPTION: |
| 241 |
scarabeus |
1.10 |
# Install generated CMake library dependencies to /var/lib/kde |
| 242 |
|
|
install_library_dependencies() { |
| 243 |
scarabeus |
1.15 |
local depsfile="${T}/${PN}:${SLOT}" |
| 244 |
|
|
|
| 245 |
|
|
ebegin "Installing library dependencies as ${depsfile##*/}" |
| 246 |
scarabeus |
1.10 |
insinto /var/lib/kde |
| 247 |
|
|
doins "${depsfile}" || die "Failed to install library dependencies." |
| 248 |
|
|
eend $? |
| 249 |
|
|
} |
| 250 |
ingmar |
1.1 |
|
| 251 |
scarabeus |
1.10 |
# @FUNCTION: load_library_dependencies |
| 252 |
|
|
# @DESCRIPTION: |
| 253 |
|
|
# Inject specified library dependencies in current package |
| 254 |
|
|
load_library_dependencies() { |
| 255 |
|
|
local pn i depsfile |
| 256 |
scarabeus |
1.15 |
ebegin "Injecting library dependencies from '${KMLOADLIBS}'" |
| 257 |
scarabeus |
1.10 |
|
| 258 |
|
|
i=0 |
| 259 |
|
|
for pn in ${KMLOADLIBS} ; do |
| 260 |
|
|
((i++)) |
| 261 |
|
|
depsfile="/var/lib/kde/${pn}:${SLOT}" |
| 262 |
|
|
[[ -r "${depsfile}" ]] || die "Depsfile '${depsfile}' not accessible. You probably need to reinstall ${pn}." |
| 263 |
|
|
sed -i -e "${i}iINCLUDE(\"${depsfile}\")" "${S}/CMakeLists.txt" || \ |
| 264 |
|
|
die "Failed to include library dependencies for ${pn}" |
| 265 |
|
|
done |
| 266 |
|
|
eend $? |
| 267 |
ingmar |
1.1 |
} |