| 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.31 2011/04/20 21:04:10 angelos Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.34 2011/05/19 22:39:07 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 |
| … | |
… | |
| 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 |
20 | # @ECLASS-VARIABLE: DOCS |
| 21 | # @DESCRIPTION: |
21 | # @DESCRIPTION: |
| 22 | # This should be a variable defining documentation to install |
22 | # This should be an array defining documentation to install |
| 23 | |
23 | |
| 24 | # @ECLASS-VARIABLE: PATCHES |
24 | # @ECLASS-VARIABLE: PATCHES |
| 25 | # @DESCRIPTION: |
25 | # @DESCRIPTION: |
| 26 | # This should be an array defining patches to apply |
26 | # This should be an array defining patches to apply |
| 27 | |
27 | |
| … | |
… | |
| 72 | fi |
72 | fi |
| 73 | } |
73 | } |
| 74 | |
74 | |
| 75 | # @FUNCTION: xfconf_src_prepare |
75 | # @FUNCTION: xfconf_src_prepare |
| 76 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 77 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
77 | # Run base_src_prepare and eautoreconf or elibtoolize |
| 78 | xfconf_src_prepare() { |
78 | xfconf_src_prepare() { |
| 79 | debug-print-function ${FUNCNAME} "$@" |
79 | debug-print-function ${FUNCNAME} "$@" |
| 80 | base_src_prepare |
80 | base_src_prepare |
| 81 | |
81 | |
| 82 | if [[ -n $EINTLTOOLIZE ]]; then |
82 | if [[ -n $EINTLTOOLIZE ]]; then |
| 83 | intltoolize --force --copy --automake || die |
83 | local _intltoolize="intltoolize --force --copy --automake" |
|
|
84 | ebegin "Running ${_intltoolize}" |
|
|
85 | ${_intltoolize} || die |
|
|
86 | eend $? |
| 84 | fi |
87 | fi |
| 85 | |
88 | |
| 86 | if [[ -n $EAUTORECONF ]]; then |
89 | if [[ -n $EAUTORECONF ]]; then |
| 87 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
90 | AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros eautoreconf |
| 88 | else |
91 | else |
| 89 | elibtoolize |
92 | elibtoolize |
| 90 | fi |
93 | fi |
| 91 | } |
94 | } |
| 92 | |
95 | |
| 93 | # @FUNCTION: xfconf_src_configure |
96 | # @FUNCTION: xfconf_src_configure |
| 94 | # @DESCRIPTION: |
97 | # @DESCRIPTION: |
| 95 | # Run econf with opts from the XFCONF array |
98 | # Run econf with opts from the XFCONF array |
| 96 | xfconf_src_configure() { |
99 | xfconf_src_configure() { |
| 97 | debug-print-function ${FUNCNAME} "$@" |
100 | debug-print-function ${FUNCNAME} "$@" |
| 98 | econf ${XFCONF[@]} |
101 | econf "${XFCONF[@]}" |
| 99 | } |
102 | } |
| 100 | |
103 | |
| 101 | # @FUNCTION: xfconf_src_install |
104 | # @FUNCTION: xfconf_src_install |
| 102 | # @DESCRIPTION: |
105 | # @DESCRIPTION: |
| 103 | # Run emake install and install documentation in the DOCS variable |
106 | # Run emake install and install documentation in the DOCS array |
| 104 | xfconf_src_install() { |
107 | xfconf_src_install() { |
| 105 | debug-print-function ${FUNCNAME} "$@" |
108 | debug-print-function ${FUNCNAME} "$@" |
| 106 | emake DESTDIR="${D}" "$@" install || die |
109 | emake DESTDIR="${D}" "$@" install || die |
| 107 | |
110 | |
| 108 | if [[ -n ${DOCS} ]]; then |
111 | [[ -n ${DOCS[@]} ]] && dodoc "${DOCS[@]}" |
| 109 | dodoc ${DOCS} || die |
|
|
| 110 | fi |
|
|
| 111 | |
112 | |
| 112 | find "${ED}" -name '*.la' -exec rm -f {} + |
113 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 113 | |
114 | |
| 114 | validate_desktop_entries |
115 | validate_desktop_entries |
| 115 | } |
116 | } |