| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.30 2011/04/10 18:25:08 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.43 2012/09/02 07:58:15 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 the variable is set. |
14 | # Run eautoreconf instead of elibtoolize if the variable is set |
| 15 | |
|
|
| 16 | # @ECLASS-VARIABLE: EINTLTOOLIZE |
|
|
| 17 | # @DESCRIPTION: |
|
|
| 18 | # Run intltoolize --force --copy --automake if the variable is set. |
|
|
| 19 | |
|
|
| 20 | # @ECLASS-VARIABLE: DOCS |
|
|
| 21 | # @DESCRIPTION: |
|
|
| 22 | # This should be an variable defining documentation to install. |
|
|
| 23 | |
|
|
| 24 | # @ECLASS-VARIABLE: PATCHES |
|
|
| 25 | # @DESCRIPTION: |
|
|
| 26 | # This should be an array defining patches to apply. |
|
|
| 27 | |
15 | |
| 28 | # @ECLASS-VARIABLE: XFCONF |
16 | # @ECLASS-VARIABLE: XFCONF |
| 29 | # @DESCRIPTION: |
17 | # @DESCRIPTION: |
| 30 | # This should be an array defining arguments for econf. |
18 | # This should be an array defining arguments for econf |
| 31 | |
19 | |
| 32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
20 | AUTOTOOLS_AUTO_DEPEND=no |
| 33 | |
21 | |
| 34 | if [[ -n $EINTLTOOLIZE ]]; then |
22 | unset _xfconf_live |
| 35 | _xfce4_intltool="dev-util/intltool" |
23 | [[ $PV == *9999* ]] && _xfconf_live=git-2 |
| 36 | fi |
|
|
| 37 | |
24 | |
| 38 | if [[ -n $EAUTORECONF ]]; then |
25 | inherit ${_xfconf_live} autotools base eutils fdo-mime gnome2-utils libtool |
| 39 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
26 | |
| 40 | fi |
27 | EGIT_BOOTSTRAP=autogen.sh |
|
|
28 | EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" |
|
|
29 | |
|
|
30 | _xfconf_deps="" |
|
|
31 | _xfconf_m4=">=dev-util/xfce4-dev-tools-4.10 ${AUTOTOOLS_DEPEND}" |
|
|
32 | |
|
|
33 | [[ -n $_xfconf_live ]] && _xfconf_deps+=" dev-util/gtk-doc ${_xfconf_m4}" |
|
|
34 | [[ -n $EAUTORECONF ]] && _xfconf_deps+=" ${_xfconf_m4}" |
| 41 | |
35 | |
| 42 | RDEPEND="" |
36 | RDEPEND="" |
| 43 | DEPEND="${_xfce4_intltool} |
37 | DEPEND="${_xfconf_deps}" |
| 44 | ${_xfce4_m4}" |
|
|
| 45 | |
38 | |
| 46 | unset _xfce4_intltool |
39 | unset _xfconf_deps |
| 47 | unset _xfce4_m4 |
40 | unset _xfconf_m4 |
| 48 | |
41 | |
| 49 | case ${EAPI:-0} in |
42 | case ${EAPI:-0} in |
| 50 | 4|3) ;; |
43 | 4) ;; |
| 51 | *) die "Unknown EAPI." ;; |
44 | *) die "Unknown EAPI." ;; |
| 52 | esac |
45 | esac |
| 53 | |
46 | |
|
|
47 | [[ -n $_xfconf_live ]] && _xfconf_live=src_unpack |
|
|
48 | |
| 54 | EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
49 | EXPORT_FUNCTIONS ${_xfconf_live} src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
| 55 | |
50 | |
| 56 | # @FUNCTION: xfconf_use_debug |
51 | # @FUNCTION: xfconf_use_debug |
| 57 | # @DESCRIPTION: |
52 | # @DESCRIPTION: |
| 58 | # If IUSE has debug, return --enable-debug=minimum. |
53 | # If IUSE has debug, return --enable-debug=minimum. |
| 59 | # If USE debug is enabled, return --enable-debug which is same as --enable-debug=yes. |
54 | # If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
| 60 | # If USE debug is enabled and XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
55 | # If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
| 61 | xfconf_use_debug() { |
56 | xfconf_use_debug() { |
| 62 | if has debug ${IUSE}; then |
57 | if has debug ${IUSE}; then |
| 63 | if use debug; then |
58 | if use debug; then |
| 64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
59 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 65 | echo "--enable-debug=full" |
60 | echo "--enable-debug=full" |
| … | |
… | |
| 67 | echo "--enable-debug" |
62 | echo "--enable-debug" |
| 68 | fi |
63 | fi |
| 69 | else |
64 | else |
| 70 | echo "--enable-debug=minimum" |
65 | echo "--enable-debug=minimum" |
| 71 | fi |
66 | fi |
|
|
67 | else |
|
|
68 | ewarn "${FUNCNAME} called without debug in IUSE" |
| 72 | fi |
69 | fi |
|
|
70 | } |
|
|
71 | |
|
|
72 | # @FUNCTION: xfconf_src_unpack |
|
|
73 | # @DESCRIPTION: |
|
|
74 | # Run git-2_src_unpack if required |
|
|
75 | xfconf_src_unpack() { |
|
|
76 | NOCONFIGURE=1 git-2_src_unpack |
| 73 | } |
77 | } |
| 74 | |
78 | |
| 75 | # @FUNCTION: xfconf_src_prepare |
79 | # @FUNCTION: xfconf_src_prepare |
| 76 | # @DESCRIPTION: |
80 | # @DESCRIPTION: |
| 77 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
81 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 78 | xfconf_src_prepare() { |
82 | xfconf_src_prepare() { |
| 79 | debug-print-function ${FUNCNAME} "$@" |
83 | debug-print-function ${FUNCNAME} "$@" |
| 80 | base_src_prepare |
84 | base_src_prepare |
| 81 | |
85 | |
| 82 | if [[ -n $EINTLTOOLIZE ]]; then |
|
|
| 83 | intltoolize --force --copy --automake || die |
|
|
| 84 | fi |
|
|
| 85 | |
|
|
| 86 | if [[ -n $EAUTORECONF ]]; then |
86 | if [[ -n $EAUTORECONF ]]; then |
| 87 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
87 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 | else |
88 | else |
| 89 | elibtoolize |
89 | elibtoolize |
| 90 | fi |
90 | fi |
| 91 | } |
91 | } |
| 92 | |
92 | |
| 93 | # @FUNCTION: xfconf_src_configure |
93 | # @FUNCTION: xfconf_src_configure |
| 94 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 95 | # Run econf with opts in XFCONF array |
95 | # Run econf with opts from the XFCONF array |
| 96 | xfconf_src_configure() { |
96 | xfconf_src_configure() { |
| 97 | debug-print-function ${FUNCNAME} "$@" |
97 | debug-print-function ${FUNCNAME} "$@" |
|
|
98 | [[ -n $_xfconf_live ]] && XFCONF+=( --enable-maintainer-mode ) |
| 98 | econf ${XFCONF[@]} |
99 | econf "${XFCONF[@]}" |
| 99 | } |
100 | } |
| 100 | |
101 | |
| 101 | # @FUNCTION: xfconf_src_install |
102 | # @FUNCTION: xfconf_src_install |
| 102 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
| 103 | # Run emake install and install documentation in DOCS variable |
104 | # Run emake install and install documentation in the DOCS array |
| 104 | xfconf_src_install() { |
105 | xfconf_src_install() { |
| 105 | debug-print-function ${FUNCNAME} "$@" |
106 | debug-print-function ${FUNCNAME} "$@" |
| 106 | emake DESTDIR="${D}" "$@" install || die |
|
|
| 107 | |
107 | |
| 108 | if [[ -n ${DOCS} ]]; then |
108 | # FIXME |
| 109 | dodoc ${DOCS} || die |
109 | if [[ -n $_xfconf_live ]] && ! [[ -e ChangeLog ]]; then |
|
|
110 | touch ChangeLog |
| 110 | fi |
111 | fi |
| 111 | |
112 | |
| 112 | find "${ED}" -name '*.la' -exec rm -f {} + |
113 | base_src_install "$@" || die |
| 113 | |
114 | |
| 114 | validate_desktop_entries |
115 | prune_libtool_files --all |
| 115 | } |
116 | } |
| 116 | |
117 | |
| 117 | # @FUNCTION: xfconf_pkg_preinst |
118 | # @FUNCTION: xfconf_pkg_preinst |
| 118 | # @DESCRIPTION: |
119 | # @DESCRIPTION: |
| 119 | # Run gnome2_icon_savelist |
120 | # Run gnome2_icon_savelist |