| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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/xfconf.eclass,v 1.8 2010/03/22 15:53:50 darkside Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.37 2011/10/15 21:08:59 ssuominen Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: xfconf.eclass |
5 | # @ECLASS: xfconf.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # XFCE maintainers <xfce@gentoo.org> |
7 | # XFCE maintainers <xfce@gentoo.org> |
| 8 | # @BLURB: Default XFCE ebuild layout |
8 | # @BLURB: Default XFCE ebuild layout |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # Default XFCE ebuild layout |
10 | # Default XFCE ebuild layout |
| 11 | |
11 | |
| 12 | # @ECLASS-VARIABLE: EAUTORECONF |
12 | # @ECLASS-VARIABLE: EAUTORECONF |
| 13 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 14 | # Run eautoreconf instead of elibtoolize if set "yes" |
14 | # Run eautoreconf instead of elibtoolize if the variable is set |
| 15 | |
15 | |
| 16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
| 17 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
| 18 | # Run intltoolize --force --copy --automake if set "yes" |
18 | # Run intltoolize --force --copy --automake if the variable is set |
| 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 | |
19 | |
| 28 | # @ECLASS-VARIABLE: XFCONF |
20 | # @ECLASS-VARIABLE: XFCONF |
| 29 | # @DESCRIPTION: |
21 | # @DESCRIPTION: |
| 30 | # Define options for econf |
22 | # This should be an array defining arguments for econf |
| 31 | |
23 | |
| 32 | inherit autotools base fdo-mime gnome2-utils libtool |
24 | unset _xfconf_live |
|
|
25 | [[ $PV == *9999* ]] && _xfconf_live=git-2 |
| 33 | |
26 | |
| 34 | if ! [[ ${MY_P} ]]; then |
27 | inherit ${_xfconf_live} autotools base eutils fdo-mime gnome2-utils libtool |
| 35 | MY_P=${P} |
|
|
| 36 | else |
|
|
| 37 | S=${WORKDIR}/${MY_P} |
|
|
| 38 | fi |
|
|
| 39 | |
28 | |
| 40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
29 | EGIT_BOOTSTRAP="autogen.sh" |
|
|
30 | EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" |
| 41 | |
31 | |
| 42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
32 | _xfconf_deps="" |
| 43 | _xfce4_intltool="dev-util/intltool" |
33 | _xfconf_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
| 44 | fi |
|
|
| 45 | |
34 | |
| 46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
35 | [[ -n $_xfconf_live ]] && _xfconf_deps+=" dev-util/gtk-doc ${_xfconf_m4}" |
| 47 | _xfce4_m4="dev-util/xfce4-dev-tools" |
36 | [[ -n $EINTLTOOLIZE ]] && _xfconf_deps+=" dev-util/intltool" |
| 48 | fi |
37 | [[ -n $EAUTORECONF ]] && _xfconf_deps+=" ${_xfconf_m4}" |
| 49 | |
38 | |
| 50 | RDEPEND="" |
39 | RDEPEND="" |
| 51 | DEPEND="${_xfce4_intltool} |
40 | DEPEND="${_xfconf_deps}" |
| 52 | ${_xfce4_m4}" |
|
|
| 53 | |
41 | |
| 54 | unset _xfce4_intltool |
42 | unset _xfconf_deps |
| 55 | unset _xfce4_m4 |
43 | unset _xfconf_m4 |
| 56 | |
44 | |
| 57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
| 58 | case ${EAPI:-0} in |
45 | case ${EAPI:-0} in |
| 59 | 3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
46 | 4) ;; |
| 60 | 1|0) ;; |
|
|
| 61 | *) die "Unknown EAPI." ;; |
47 | *) die "Unknown EAPI." ;; |
| 62 | esac |
48 | esac |
| 63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
49 | |
|
|
50 | [[ -n $_xfconf_live ]] && _xfconf_live=src_unpack |
|
|
51 | |
|
|
52 | EXPORT_FUNCTIONS ${_xfconf_live} src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
53 | |
|
|
54 | # @FUNCTION: xfconf_use_debug |
|
|
55 | # @DESCRIPTION: |
|
|
56 | # If IUSE has debug, return --enable-debug=minimum. |
|
|
57 | # If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
|
|
58 | # If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
|
|
59 | xfconf_use_debug() { |
|
|
60 | if has debug ${IUSE}; then |
|
|
61 | if use debug; then |
|
|
62 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
|
|
63 | echo "--enable-debug=full" |
|
|
64 | else |
|
|
65 | echo "--enable-debug" |
|
|
66 | fi |
|
|
67 | else |
|
|
68 | echo "--enable-debug=minimum" |
|
|
69 | fi |
|
|
70 | else |
|
|
71 | ewarn "${FUNCNAME} called without debug in IUSE" |
|
|
72 | fi |
|
|
73 | } |
| 64 | |
74 | |
| 65 | # @FUNCTION: xfconf_src_unpack |
75 | # @FUNCTION: xfconf_src_unpack |
| 66 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 67 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
77 | # Run git-2_src_unpack if required |
| 68 | xfconf_src_unpack() { |
78 | xfconf_src_unpack() { |
| 69 | unpack ${A} |
79 | NOCONFIGURE=1 git-2_src_unpack |
| 70 | cd "${S}" |
|
|
| 71 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
|
|
| 72 | } |
80 | } |
| 73 | |
81 | |
| 74 | # @FUNCTION: xfconf_src_prepare |
82 | # @FUNCTION: xfconf_src_prepare |
| 75 | # @DESCRIPTION: |
83 | # @DESCRIPTION: |
| 76 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
84 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 77 | xfconf_src_prepare() { |
85 | xfconf_src_prepare() { |
|
|
86 | debug-print-function ${FUNCNAME} "$@" |
| 78 | base_src_prepare |
87 | base_src_prepare |
| 79 | |
88 | |
| 80 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
89 | if [[ -n $EINTLTOOLIZE ]]; then |
| 81 | intltoolize --force --copy --automake || die "intltoolize failed" |
90 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
91 | ebegin "Running ${_intltoolize}" |
|
|
92 | ${_intltoolize} || die |
|
|
93 | eend $? |
| 82 | fi |
94 | fi |
| 83 | |
95 | |
| 84 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
96 | if [[ -n $EAUTORECONF ]]; then |
| 85 | has "${EAPI:-0}" 0 1 2 && EPREFIX= |
|
|
| 86 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
97 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 87 | else |
98 | else |
| 88 | elibtoolize |
99 | elibtoolize |
| 89 | fi |
100 | fi |
| 90 | } |
101 | } |
| 91 | |
102 | |
| 92 | # @FUNCTION: xfconf_src_configure |
103 | # @FUNCTION: xfconf_src_configure |
| 93 | # @DESCRIPTION: |
104 | # @DESCRIPTION: |
| 94 | # Run econf with opts in XFCONF variable |
105 | # Run econf with opts from the XFCONF array |
| 95 | xfconf_src_configure() { |
106 | xfconf_src_configure() { |
|
|
107 | debug-print-function ${FUNCNAME} "$@" |
|
|
108 | [[ -n $_xfconf_live ]] && XFCONF+=( --enable-maintainer-mode ) |
| 96 | econf ${XFCONF} |
109 | econf "${XFCONF[@]}" |
| 97 | } |
|
|
| 98 | |
|
|
| 99 | # @FUNCTION: xfconf_src_compile |
|
|
| 100 | # @DESCRIPTION: |
|
|
| 101 | # Run econf with opts in XFCONF variable |
|
|
| 102 | xfconf_src_compile() { |
|
|
| 103 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
|
|
| 104 | emake || die "emake failed" |
|
|
| 105 | } |
110 | } |
| 106 | |
111 | |
| 107 | # @FUNCTION: xfconf_src_install |
112 | # @FUNCTION: xfconf_src_install |
| 108 | # @DESCRIPTION: |
113 | # @DESCRIPTION: |
| 109 | # Run emake install and install documentation in DOCS variable |
114 | # Run emake install and install documentation in the DOCS array |
| 110 | xfconf_src_install() { |
115 | xfconf_src_install() { |
| 111 | emake DESTDIR="${D}" install || die "emake install failed" |
116 | debug-print-function ${FUNCNAME} "$@" |
| 112 | |
117 | |
| 113 | if [[ -n ${DOCS} ]]; then |
118 | # FIXME |
| 114 | dodoc ${DOCS} || die "dodoc failed" |
119 | if [[ -n $_xfconf_live ]] && ! [[ -e ChangeLog ]]; then |
|
|
120 | touch ChangeLog |
| 115 | fi |
121 | fi |
|
|
122 | |
|
|
123 | base_src_install "$@" || die |
|
|
124 | |
|
|
125 | find "${ED}" -name '*.la' -exec rm -f {} + |
|
|
126 | |
|
|
127 | validate_desktop_entries |
| 116 | } |
128 | } |
| 117 | |
129 | |
| 118 | # @FUNCTION: xfconf_pkg_preinst |
130 | # @FUNCTION: xfconf_pkg_preinst |
| 119 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 120 | # Run gnome2_icon_savelist |
132 | # Run gnome2_icon_savelist |
| 121 | xfconf_pkg_preinst() { |
133 | xfconf_pkg_preinst() { |
|
|
134 | debug-print-function ${FUNCNAME} "$@" |
| 122 | gnome2_icon_savelist |
135 | gnome2_icon_savelist |
| 123 | } |
136 | } |
| 124 | |
137 | |
| 125 | # @FUNCTION: xfconf_pkg_postinst |
138 | # @FUNCTION: xfconf_pkg_postinst |
| 126 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 127 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
140 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 128 | xfconf_pkg_postinst() { |
141 | xfconf_pkg_postinst() { |
|
|
142 | debug-print-function ${FUNCNAME} "$@" |
| 129 | fdo-mime_desktop_database_update |
143 | fdo-mime_desktop_database_update |
| 130 | fdo-mime_mime_database_update |
144 | fdo-mime_mime_database_update |
| 131 | gnome2_icon_cache_update |
145 | gnome2_icon_cache_update |
| 132 | } |
146 | } |
| 133 | |
147 | |
| 134 | # @FUNCTION: xfconf_pkg_postrm |
148 | # @FUNCTION: xfconf_pkg_postrm |
| 135 | # @DESCRIPTION: |
149 | # @DESCRIPTION: |
| 136 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
150 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 137 | xfconf_pkg_postrm() { |
151 | xfconf_pkg_postrm() { |
|
|
152 | debug-print-function ${FUNCNAME} "$@" |
| 138 | fdo-mime_desktop_database_update |
153 | fdo-mime_desktop_database_update |
| 139 | fdo-mime_mime_database_update |
154 | fdo-mime_mime_database_update |
| 140 | gnome2_icon_cache_update |
155 | gnome2_icon_cache_update |
| 141 | } |
156 | } |