1 |
ssuominen |
1.1 |
# Copyright 1999-2009 Gentoo Foundation |
2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
3 |
ssuominen |
1.16 |
# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.15 2010/03/30 12:10:46 ssuominen Exp $ |
4 |
ssuominen |
1.1 |
|
5 |
|
|
# @ECLASS: xfconf.eclass |
6 |
|
|
# @MAINTAINER: |
7 |
|
|
# XFCE maintainers <xfce@gentoo.org> |
8 |
|
|
# @BLURB: Default XFCE ebuild layout |
9 |
|
|
# @DESCRIPTION: |
10 |
|
|
# Default XFCE ebuild layout |
11 |
|
|
|
12 |
|
|
# @ECLASS-VARIABLE: EAUTORECONF |
13 |
|
|
# @DESCRIPTION: |
14 |
|
|
# Run eautoreconf instead of elibtoolize if set "yes" |
15 |
|
|
|
16 |
|
|
# @ECLASS-VARIABLE: EINTLTOOLIZE |
17 |
|
|
# @DESCRIPTION: |
18 |
|
|
# Run intltoolize --force --copy --automake if set "yes" |
19 |
|
|
|
20 |
|
|
# @ECLASS-VARIABLE: DOCS |
21 |
|
|
# @DESCRIPTION: |
22 |
|
|
# Define documentation to install |
23 |
|
|
|
24 |
|
|
# @ECLASS-VARIABLE: PATCHES |
25 |
|
|
# @DESCRIPTION: |
26 |
|
|
# Define patches to apply |
27 |
|
|
|
28 |
|
|
# @ECLASS-VARIABLE: XFCONF |
29 |
|
|
# @DESCRIPTION: |
30 |
|
|
# Define options for econf |
31 |
|
|
|
32 |
|
|
inherit autotools base fdo-mime gnome2-utils libtool |
33 |
|
|
|
34 |
ssuominen |
1.2 |
if ! [[ ${MY_P} ]]; then |
35 |
|
|
MY_P=${P} |
36 |
|
|
else |
37 |
|
|
S=${WORKDIR}/${MY_P} |
38 |
|
|
fi |
39 |
|
|
|
40 |
angelos |
1.7 |
SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
41 |
ssuominen |
1.1 |
|
42 |
|
|
if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
43 |
|
|
_xfce4_intltool="dev-util/intltool" |
44 |
|
|
fi |
45 |
|
|
|
46 |
|
|
if [[ "${EAUTORECONF}" == "yes" ]]; then |
47 |
ssuominen |
1.10 |
_xfce4_m4=">=dev-util/xfce4-dev-tools-4.7.0" |
48 |
ssuominen |
1.1 |
fi |
49 |
|
|
|
50 |
|
|
RDEPEND="" |
51 |
|
|
DEPEND="${_xfce4_intltool} |
52 |
|
|
${_xfce4_m4}" |
53 |
|
|
|
54 |
|
|
unset _xfce4_intltool |
55 |
|
|
unset _xfce4_m4 |
56 |
|
|
|
57 |
ssuominen |
1.3 |
XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
58 |
ssuominen |
1.1 |
case ${EAPI:-0} in |
59 |
ssuominen |
1.5 |
3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
60 |
ssuominen |
1.1 |
1|0) ;; |
61 |
|
|
*) die "Unknown EAPI." ;; |
62 |
|
|
esac |
63 |
ssuominen |
1.3 |
EXPORT_FUNCTIONS ${XFCONF_EXPF} |
64 |
ssuominen |
1.1 |
|
65 |
ssuominen |
1.11 |
# @FUNCTION: xfconf_use_debug |
66 |
ssuominen |
1.14 |
# @DESCRIPTION: |
67 |
ssuominen |
1.12 |
# Return --enable-debug, null, --enable-debug=full or --disable-debug based on |
68 |
ssuominen |
1.13 |
# XFCONF_FULL_DEBUG variable and USE debug |
69 |
ssuominen |
1.11 |
xfconf_use_debug() { |
70 |
ssuominen |
1.12 |
if has debug ${IUSE}; then |
71 |
|
|
if use debug; then |
72 |
ssuominen |
1.13 |
if [[ -n $XFCONF_FULL_DEBUG ]]; then |
73 |
ssuominen |
1.12 |
echo "--enable-debug=full" |
74 |
|
|
else |
75 |
|
|
echo "--enable-debug" |
76 |
|
|
fi |
77 |
ssuominen |
1.11 |
else |
78 |
ssuominen |
1.13 |
if [[ -n $XFCONF_FULL_DEBUG ]]; then |
79 |
ssuominen |
1.12 |
echo "--disable-debug" |
80 |
|
|
fi |
81 |
ssuominen |
1.11 |
fi |
82 |
|
|
fi |
83 |
|
|
} |
84 |
|
|
|
85 |
ssuominen |
1.1 |
# @FUNCTION: xfconf_src_unpack |
86 |
|
|
# @DESCRIPTION: |
87 |
|
|
# Run base_src_util autopatch and eautoreconf or elibtoolize |
88 |
|
|
xfconf_src_unpack() { |
89 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
90 |
ssuominen |
1.1 |
unpack ${A} |
91 |
|
|
cd "${S}" |
92 |
ssuominen |
1.3 |
has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
93 |
ssuominen |
1.1 |
} |
94 |
|
|
|
95 |
|
|
# @FUNCTION: xfconf_src_prepare |
96 |
|
|
# @DESCRIPTION: |
97 |
|
|
# Run base_src_util autopatch and eautoreconf or elibtoolize |
98 |
|
|
xfconf_src_prepare() { |
99 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
100 |
scarabeus |
1.4 |
base_src_prepare |
101 |
ssuominen |
1.1 |
|
102 |
|
|
if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
103 |
|
|
intltoolize --force --copy --automake || die "intltoolize failed" |
104 |
|
|
fi |
105 |
|
|
|
106 |
|
|
if [[ "${EAUTORECONF}" == "yes" ]]; then |
107 |
grobian |
1.9 |
has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
108 |
darkside |
1.8 |
AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
109 |
ssuominen |
1.1 |
else |
110 |
|
|
elibtoolize |
111 |
|
|
fi |
112 |
|
|
} |
113 |
|
|
|
114 |
|
|
# @FUNCTION: xfconf_src_configure |
115 |
|
|
# @DESCRIPTION: |
116 |
|
|
# Run econf with opts in XFCONF variable |
117 |
|
|
xfconf_src_configure() { |
118 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
119 |
ssuominen |
1.1 |
econf ${XFCONF} |
120 |
|
|
} |
121 |
|
|
|
122 |
|
|
# @FUNCTION: xfconf_src_compile |
123 |
|
|
# @DESCRIPTION: |
124 |
|
|
# Run econf with opts in XFCONF variable |
125 |
|
|
xfconf_src_compile() { |
126 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
127 |
ssuominen |
1.3 |
has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
128 |
ssuominen |
1.1 |
emake || die "emake failed" |
129 |
|
|
} |
130 |
|
|
|
131 |
|
|
# @FUNCTION: xfconf_src_install |
132 |
|
|
# @DESCRIPTION: |
133 |
|
|
# Run emake install and install documentation in DOCS variable |
134 |
|
|
xfconf_src_install() { |
135 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
136 |
ssuominen |
1.16 |
emake DESTDIR="${D}" "$@" install || die "emake install failed" |
137 |
ssuominen |
1.1 |
|
138 |
|
|
if [[ -n ${DOCS} ]]; then |
139 |
|
|
dodoc ${DOCS} || die "dodoc failed" |
140 |
|
|
fi |
141 |
|
|
} |
142 |
|
|
|
143 |
|
|
# @FUNCTION: xfconf_pkg_preinst |
144 |
|
|
# @DESCRIPTION: |
145 |
|
|
# Run gnome2_icon_savelist |
146 |
|
|
xfconf_pkg_preinst() { |
147 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
148 |
ssuominen |
1.1 |
gnome2_icon_savelist |
149 |
|
|
} |
150 |
|
|
|
151 |
|
|
# @FUNCTION: xfconf_pkg_postinst |
152 |
|
|
# @DESCRIPTION: |
153 |
|
|
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
154 |
|
|
xfconf_pkg_postinst() { |
155 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
156 |
ssuominen |
1.1 |
fdo-mime_desktop_database_update |
157 |
|
|
fdo-mime_mime_database_update |
158 |
|
|
gnome2_icon_cache_update |
159 |
|
|
} |
160 |
|
|
|
161 |
|
|
# @FUNCTION: xfconf_pkg_postrm |
162 |
|
|
# @DESCRIPTION: |
163 |
|
|
# Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
164 |
|
|
xfconf_pkg_postrm() { |
165 |
ssuominen |
1.15 |
debug-print-function ${FUNCNAME} "$@" |
166 |
ssuominen |
1.1 |
fdo-mime_desktop_database_update |
167 |
|
|
fdo-mime_mime_database_update |
168 |
|
|
gnome2_icon_cache_update |
169 |
|
|
} |