| 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.35 2011/06/06 14:38:46 angelos Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.42 2012/07/02 08:43:37 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 |
| … | |
… | |
| 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 | |
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 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 |
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 the same as --enable-debug=yes. |
54 | # If USE debug is enabled, return --enable-debug which is the same as --enable-debug=yes. |
| … | |
… | |
| 72 | else |
67 | else |
| 73 | ewarn "${FUNCNAME} called without debug in IUSE" |
68 | ewarn "${FUNCNAME} called without debug in IUSE" |
| 74 | fi |
69 | fi |
| 75 | } |
70 | } |
| 76 | |
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 |
|
|
77 | } |
|
|
78 | |
| 77 | # @FUNCTION: xfconf_src_prepare |
79 | # @FUNCTION: xfconf_src_prepare |
| 78 | # @DESCRIPTION: |
80 | # @DESCRIPTION: |
| 79 | # Run base_src_prepare and eautoreconf or elibtoolize |
81 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 80 | xfconf_src_prepare() { |
82 | xfconf_src_prepare() { |
| 81 | debug-print-function ${FUNCNAME} "$@" |
83 | debug-print-function ${FUNCNAME} "$@" |
| 82 | base_src_prepare |
84 | base_src_prepare |
| 83 | |
|
|
| 84 | if [[ -n $EINTLTOOLIZE ]]; then |
|
|
| 85 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
| 86 | ebegin "Running ${_intltoolize}" |
|
|
| 87 | ${_intltoolize} || die |
|
|
| 88 | eend $? |
|
|
| 89 | fi |
|
|
| 90 | |
85 | |
| 91 | if [[ -n $EAUTORECONF ]]; then |
86 | if [[ -n $EAUTORECONF ]]; then |
| 92 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
87 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 93 | else |
88 | else |
| 94 | elibtoolize |
89 | elibtoolize |
| … | |
… | |
| 98 | # @FUNCTION: xfconf_src_configure |
93 | # @FUNCTION: xfconf_src_configure |
| 99 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 100 | # Run econf with opts from the XFCONF array |
95 | # Run econf with opts from the XFCONF array |
| 101 | xfconf_src_configure() { |
96 | xfconf_src_configure() { |
| 102 | debug-print-function ${FUNCNAME} "$@" |
97 | debug-print-function ${FUNCNAME} "$@" |
|
|
98 | [[ -n $_xfconf_live ]] && XFCONF+=( --enable-maintainer-mode ) |
| 103 | econf "${XFCONF[@]}" |
99 | econf "${XFCONF[@]}" |
| 104 | } |
100 | } |
| 105 | |
101 | |
| 106 | # @FUNCTION: xfconf_src_install |
102 | # @FUNCTION: xfconf_src_install |
| 107 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
| 108 | # Run emake install and install documentation in the DOCS array |
104 | # Run emake install and install documentation in the DOCS array |
| 109 | xfconf_src_install() { |
105 | xfconf_src_install() { |
| 110 | debug-print-function ${FUNCNAME} "$@" |
106 | debug-print-function ${FUNCNAME} "$@" |
| 111 | emake DESTDIR="${D}" "$@" install || die |
|
|
| 112 | |
107 | |
| 113 | [[ -n ${DOCS[@]} ]] && dodoc "${DOCS[@]}" |
108 | # FIXME |
|
|
109 | if [[ -n $_xfconf_live ]] && ! [[ -e ChangeLog ]]; then |
|
|
110 | touch ChangeLog |
|
|
111 | fi |
|
|
112 | |
|
|
113 | base_src_install "$@" || die |
| 114 | |
114 | |
| 115 | find "${ED}" -name '*.la' -exec rm -f {} + |
115 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 116 | |
116 | |
| 117 | validate_desktop_entries |
117 | validate_desktop_entries |
| 118 | } |
118 | } |