| 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.21 2011/01/27 17:32:49 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.28 2011/04/10 18:13:35 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 |
| … | |
… | |
| 29 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 30 | # Define options for econf |
30 | # Define options for econf |
| 31 | |
31 | |
| 32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
32 | inherit autotools base eutils fdo-mime gnome2-utils libtool |
| 33 | |
33 | |
| 34 | if ! [[ ${MY_P} ]]; then |
|
|
| 35 | MY_P=${P} |
|
|
| 36 | else |
|
|
| 37 | S=${WORKDIR}/${MY_P} |
|
|
| 38 | fi |
|
|
| 39 | |
|
|
| 40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
|
|
| 41 | |
|
|
| 42 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
34 | if [[ -n $EINTLTOOLIZE ]]; then |
| 43 | _xfce4_intltool="dev-util/intltool" |
35 | _xfce4_intltool="dev-util/intltool" |
| 44 | fi |
36 | fi |
| 45 | |
37 | |
| 46 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
38 | if [[ -n $EAUTORECONF ]]; then |
| 47 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.7.0" |
39 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" |
| 48 | fi |
40 | fi |
| 49 | |
41 | |
| 50 | RDEPEND="" |
42 | RDEPEND="" |
| 51 | DEPEND="${_xfce4_intltool} |
43 | DEPEND="${_xfce4_intltool} |
| 52 | ${_xfce4_m4}" |
44 | ${_xfce4_m4}" |
| 53 | |
45 | |
| 54 | unset _xfce4_intltool |
46 | unset _xfce4_intltool |
| 55 | unset _xfce4_m4 |
47 | unset _xfce4_m4 |
| 56 | |
48 | |
| 57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
| 58 | case ${EAPI:-0} in |
49 | case ${EAPI:-0} in |
| 59 | 4|3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
|
|
| 60 | 1|0) ;; |
50 | 4|3) ;; |
| 61 | *) die "Unknown EAPI." ;; |
51 | *) die "Unknown EAPI." ;; |
| 62 | esac |
52 | esac |
| 63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
53 | |
|
|
54 | EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst pkg_postinst pkg_postrm |
| 64 | |
55 | |
| 65 | # @FUNCTION: xfconf_use_debug |
56 | # @FUNCTION: xfconf_use_debug |
| 66 | # @DESCRIPTION: |
57 | # @DESCRIPTION: |
| 67 | # Return --enable-debug, null, --enable-debug=full or --disable-debug based on |
58 | # If IUSE has debug, return --enable-debug=minimum. |
| 68 | # XFCONF_FULL_DEBUG variable and USE debug |
59 | # If USE debug is enabled, return --enable-debug which is same as --enable-debug=yes. |
|
|
60 | # If USE debug is enabled and XFCONF_FULL_DEBUG variable is set, return --enable-debug=full. |
| 69 | xfconf_use_debug() { |
61 | xfconf_use_debug() { |
| 70 | if has debug ${IUSE}; then |
62 | if has debug ${IUSE}; then |
| 71 | if use debug; then |
63 | if use debug; then |
| 72 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
64 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
| 73 | echo "--enable-debug=full" |
65 | echo "--enable-debug=full" |
| 74 | else |
66 | else |
| 75 | echo "--enable-debug" |
67 | echo "--enable-debug" |
| 76 | fi |
68 | fi |
| 77 | else |
69 | else |
| 78 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
|
|
| 79 | echo "--disable-debug" |
70 | echo "--enable-debug=minimum" |
| 80 | fi |
|
|
| 81 | fi |
71 | fi |
| 82 | fi |
72 | fi |
| 83 | } |
|
|
| 84 | |
|
|
| 85 | # @FUNCTION: xfconf_src_unpack |
|
|
| 86 | # @DESCRIPTION: |
|
|
| 87 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
|
|
| 88 | xfconf_src_unpack() { |
|
|
| 89 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 90 | unpack ${A} |
|
|
| 91 | cd "${S}" |
|
|
| 92 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
|
|
| 93 | } |
73 | } |
| 94 | |
74 | |
| 95 | # @FUNCTION: xfconf_src_prepare |
75 | # @FUNCTION: xfconf_src_prepare |
| 96 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 97 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
77 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 98 | xfconf_src_prepare() { |
78 | xfconf_src_prepare() { |
| 99 | debug-print-function ${FUNCNAME} "$@" |
79 | debug-print-function ${FUNCNAME} "$@" |
| 100 | base_src_prepare |
80 | base_src_prepare |
| 101 | |
81 | |
| 102 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
82 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
| 103 | intltoolize --force --copy --automake || die "intltoolize failed" |
83 | intltoolize --force --copy --automake || die |
| 104 | fi |
84 | fi |
| 105 | |
85 | |
| 106 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
86 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
| 107 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
| 108 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
87 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
| 109 | else |
88 | else |
| 110 | elibtoolize |
89 | elibtoolize |
| 111 | fi |
90 | fi |
| 112 | } |
91 | } |
| … | |
… | |
| 114 | # @FUNCTION: xfconf_src_configure |
93 | # @FUNCTION: xfconf_src_configure |
| 115 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 116 | # Run econf with opts in XFCONF array |
95 | # Run econf with opts in XFCONF array |
| 117 | xfconf_src_configure() { |
96 | xfconf_src_configure() { |
| 118 | debug-print-function ${FUNCNAME} "$@" |
97 | debug-print-function ${FUNCNAME} "$@" |
| 119 | |
|
|
| 120 | # Convert XFCONF to an array, see base.eclass for original code |
|
|
| 121 | if [[ "$(declare -p XFCONF 2>/dev/null 2>&1)" != "declare -a"* ]]; then |
|
|
| 122 | XFCONF=( ${XFCONF} ) |
|
|
| 123 | fi |
|
|
| 124 | |
|
|
| 125 | econf ${XFCONF[@]} |
98 | econf ${XFCONF[@]} |
| 126 | } |
|
|
| 127 | |
|
|
| 128 | # @FUNCTION: xfconf_src_compile |
|
|
| 129 | # @DESCRIPTION: |
|
|
| 130 | # Run econf with opts in XFCONF variable |
|
|
| 131 | xfconf_src_compile() { |
|
|
| 132 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 133 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
|
|
| 134 | emake || die "emake failed" |
|
|
| 135 | } |
99 | } |
| 136 | |
100 | |
| 137 | # @FUNCTION: xfconf_src_install |
101 | # @FUNCTION: xfconf_src_install |
| 138 | # @DESCRIPTION: |
102 | # @DESCRIPTION: |
| 139 | # Run emake install and install documentation in DOCS variable |
103 | # Run emake install and install documentation in DOCS variable |
| 140 | xfconf_src_install() { |
104 | xfconf_src_install() { |
| 141 | debug-print-function ${FUNCNAME} "$@" |
105 | debug-print-function ${FUNCNAME} "$@" |
| 142 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
106 | emake DESTDIR="${D}" "$@" install || die |
| 143 | |
107 | |
| 144 | if [[ -n ${DOCS} ]]; then |
108 | if [[ -n ${DOCS} ]]; then |
| 145 | dodoc ${DOCS} || die "dodoc failed" |
109 | dodoc ${DOCS} || die |
| 146 | fi |
110 | fi |
| 147 | |
111 | |
| 148 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}" |
|
|
| 149 | find "${ED}" -name '*.la' -exec rm -f {} + |
112 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 150 | |
113 | |
| 151 | validate_desktop_entries |
114 | validate_desktop_entries |
| 152 | } |
115 | } |
| 153 | |
116 | |