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