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