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.28 2011/04/10 18:13:35 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.40 2012/01/16 21:14:13 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 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 |
39 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
30 | |
40 | fi |
31 | EGIT_BOOTSTRAP="autogen.sh" |
|
|
32 | EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" |
|
|
33 | |
|
|
34 | _xfconf_deps="" |
|
|
35 | _xfconf_m4=">=dev-util/xfce4-dev-tools-4.9.1 ${AUTOTOOLS_DEPEND}" |
|
|
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 same as --enable-debug=yes. |
59 | # 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. |
60 | # If USE debug is enabled and the XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
61 | xfconf_use_debug() { |
61 | xfconf_use_debug() { |
62 | if has debug ${IUSE}; then |
62 | if has debug ${IUSE}; then |
63 | if use debug; then |
63 | if use debug; then |
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
65 | echo "--enable-debug=full" |
65 | echo "--enable-debug=full" |
… | |
… | |
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_util autopatch 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 [[ "${EINTLTOOLIZE}" == "yes" ]]; 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 [[ "${EAUTORECONF}" == "yes" ]]; 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 |
89 | elibtoolize |
101 | elibtoolize |
90 | fi |
102 | fi |
91 | } |
103 | } |
92 | |
104 | |
93 | # @FUNCTION: xfconf_src_configure |
105 | # @FUNCTION: xfconf_src_configure |
94 | # @DESCRIPTION: |
106 | # @DESCRIPTION: |
95 | # Run econf with opts in 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 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 | dodoc ${DOCS} || die |
121 | if [[ -n $_xfconf_live ]] && ! [[ -e ChangeLog ]]; then |
|
|
122 | touch ChangeLog |
110 | fi |
123 | fi |
|
|
124 | |
|
|
125 | base_src_install "$@" || die |
111 | |
126 | |
112 | find "${ED}" -name '*.la' -exec rm -f {} + |
127 | find "${ED}" -name '*.la' -exec rm -f {} + |
113 | |
128 | |
114 | validate_desktop_entries |
129 | validate_desktop_entries |
115 | } |
130 | } |