| 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.2 2009/08/02 10:35:53 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.17 2010/07/26 18:57:14 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 |
| … | |
… | |
| 35 | MY_P=${P} |
35 | MY_P=${P} |
| 36 | else |
36 | else |
| 37 | S=${WORKDIR}/${MY_P} |
37 | S=${WORKDIR}/${MY_P} |
| 38 | fi |
38 | fi |
| 39 | |
39 | |
| 40 | SRC_URI="mirror://xfce/xfce-${PV}/src/${MY_P}.tar.bz2" |
40 | SRC_URI="mirror://xfce/xfce/${PV}/src/${MY_P}.tar.bz2" |
| 41 | |
41 | |
| 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" |
47 | _xfce4_m4=">=dev-util/xfce4-dev-tools-4.7.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 | EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
57 | XFCONF_EXPF="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
| 58 | case ${EAPI:-0} in |
58 | case ${EAPI:-0} in |
| 59 | 2) EXPF="${EXPF} src_prepare src_configure" ;; |
59 | 3|2) XFCONF_EXPF="${XFCONF_EXPF} src_prepare src_configure" ;; |
| 60 | 1|0) ;; |
60 | 1|0) ;; |
| 61 | *) die "Unknown EAPI." ;; |
61 | *) die "Unknown EAPI." ;; |
| 62 | esac |
62 | esac |
| 63 | EXPORT_FUNCTIONS ${EXPF} |
63 | EXPORT_FUNCTIONS ${XFCONF_EXPF} |
|
|
64 | |
|
|
65 | # @FUNCTION: xfconf_use_debug |
|
|
66 | # @DESCRIPTION: |
|
|
67 | # Return --enable-debug, null, --enable-debug=full or --disable-debug based on |
|
|
68 | # XFCONF_FULL_DEBUG variable and USE debug |
|
|
69 | xfconf_use_debug() { |
|
|
70 | if has debug ${IUSE}; then |
|
|
71 | if use debug; then |
|
|
72 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
|
|
73 | echo "--enable-debug=full" |
|
|
74 | else |
|
|
75 | echo "--enable-debug" |
|
|
76 | fi |
|
|
77 | else |
|
|
78 | if [[ -n $XFCONF_FULL_DEBUG ]]; then |
|
|
79 | echo "--disable-debug" |
|
|
80 | fi |
|
|
81 | fi |
|
|
82 | fi |
|
|
83 | } |
| 64 | |
84 | |
| 65 | # @FUNCTION: xfconf_src_unpack |
85 | # @FUNCTION: xfconf_src_unpack |
| 66 | # @DESCRIPTION: |
86 | # @DESCRIPTION: |
| 67 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
87 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 68 | xfconf_src_unpack() { |
88 | xfconf_src_unpack() { |
|
|
89 | debug-print-function ${FUNCNAME} "$@" |
| 69 | unpack ${A} |
90 | unpack ${A} |
| 70 | cd "${S}" |
91 | cd "${S}" |
| 71 | has src_prepare ${EXPF} || xfconf_src_prepare |
92 | has src_prepare ${XFCONF_EXPF} || xfconf_src_prepare |
| 72 | } |
93 | } |
| 73 | |
94 | |
| 74 | # @FUNCTION: xfconf_src_prepare |
95 | # @FUNCTION: xfconf_src_prepare |
| 75 | # @DESCRIPTION: |
96 | # @DESCRIPTION: |
| 76 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
97 | # Run base_src_util autopatch and eautoreconf or elibtoolize |
| 77 | xfconf_src_prepare() { |
98 | xfconf_src_prepare() { |
| 78 | base_src_util autopatch |
99 | debug-print-function ${FUNCNAME} "$@" |
|
|
100 | base_src_prepare |
| 79 | |
101 | |
| 80 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
102 | if [[ "${EINTLTOOLIZE}" == "yes" ]]; then |
| 81 | intltoolize --force --copy --automake || die "intltoolize failed" |
103 | intltoolize --force --copy --automake || die "intltoolize failed" |
| 82 | fi |
104 | fi |
| 83 | |
105 | |
| 84 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
106 | if [[ "${EAUTORECONF}" == "yes" ]]; then |
|
|
107 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 85 | AT_M4DIR="/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
108 | AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf |
| 86 | else |
109 | else |
| 87 | elibtoolize |
110 | elibtoolize |
| 88 | fi |
111 | fi |
| 89 | } |
112 | } |
| 90 | |
113 | |
| 91 | # @FUNCTION: xfconf_src_configure |
114 | # @FUNCTION: xfconf_src_configure |
| 92 | # @DESCRIPTION: |
115 | # @DESCRIPTION: |
| 93 | # Run econf with opts in XFCONF variable |
116 | # Run econf with opts in XFCONF variable |
| 94 | xfconf_src_configure() { |
117 | xfconf_src_configure() { |
|
|
118 | debug-print-function ${FUNCNAME} "$@" |
| 95 | econf ${XFCONF} |
119 | econf ${XFCONF} |
| 96 | } |
120 | } |
| 97 | |
121 | |
| 98 | # @FUNCTION: xfconf_src_compile |
122 | # @FUNCTION: xfconf_src_compile |
| 99 | # @DESCRIPTION: |
123 | # @DESCRIPTION: |
| 100 | # Run econf with opts in XFCONF variable |
124 | # Run econf with opts in XFCONF variable |
| 101 | xfconf_src_compile() { |
125 | xfconf_src_compile() { |
|
|
126 | debug-print-function ${FUNCNAME} "$@" |
| 102 | has src_configure ${EXPF} || xfconf_src_configure |
127 | has src_configure ${XFCONF_EXPF} || xfconf_src_configure |
| 103 | emake || die "emake failed" |
128 | emake || die "emake failed" |
| 104 | } |
129 | } |
| 105 | |
130 | |
| 106 | # @FUNCTION: xfconf_src_install |
131 | # @FUNCTION: xfconf_src_install |
| 107 | # @DESCRIPTION: |
132 | # @DESCRIPTION: |
| 108 | # Run emake install and install documentation in DOCS variable |
133 | # Run emake install and install documentation in DOCS variable |
| 109 | xfconf_src_install() { |
134 | xfconf_src_install() { |
|
|
135 | debug-print-function ${FUNCNAME} "$@" |
| 110 | emake DESTDIR="${D}" install || die "emake install failed" |
136 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 111 | |
137 | |
| 112 | if [[ -n ${DOCS} ]]; then |
138 | if [[ -n ${DOCS} ]]; then |
| 113 | dodoc ${DOCS} || die "dodoc failed" |
139 | dodoc ${DOCS} || die "dodoc failed" |
| 114 | fi |
140 | fi |
|
|
141 | |
|
|
142 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}" |
|
|
143 | find "${ED}" -name '*.la' -exec rm -f {} + |
| 115 | } |
144 | } |
| 116 | |
145 | |
| 117 | # @FUNCTION: xfconf_pkg_preinst |
146 | # @FUNCTION: xfconf_pkg_preinst |
| 118 | # @DESCRIPTION: |
147 | # @DESCRIPTION: |
| 119 | # Run gnome2_icon_savelist |
148 | # Run gnome2_icon_savelist |
| 120 | xfconf_pkg_preinst() { |
149 | xfconf_pkg_preinst() { |
|
|
150 | debug-print-function ${FUNCNAME} "$@" |
| 121 | gnome2_icon_savelist |
151 | gnome2_icon_savelist |
| 122 | } |
152 | } |
| 123 | |
153 | |
| 124 | # @FUNCTION: xfconf_pkg_postinst |
154 | # @FUNCTION: xfconf_pkg_postinst |
| 125 | # @DESCRIPTION: |
155 | # @DESCRIPTION: |
| 126 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
156 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 127 | xfconf_pkg_postinst() { |
157 | xfconf_pkg_postinst() { |
|
|
158 | debug-print-function ${FUNCNAME} "$@" |
| 128 | fdo-mime_desktop_database_update |
159 | fdo-mime_desktop_database_update |
| 129 | fdo-mime_mime_database_update |
160 | fdo-mime_mime_database_update |
| 130 | gnome2_icon_cache_update |
161 | gnome2_icon_cache_update |
| 131 | } |
162 | } |
| 132 | |
163 | |
| 133 | # @FUNCTION: xfconf_pkg_postrm |
164 | # @FUNCTION: xfconf_pkg_postrm |
| 134 | # @DESCRIPTION: |
165 | # @DESCRIPTION: |
| 135 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
166 | # Run fdo-mime_{desktop,mime}_database_update and gnome2_icon_cache_update |
| 136 | xfconf_pkg_postrm() { |
167 | xfconf_pkg_postrm() { |
|
|
168 | debug-print-function ${FUNCNAME} "$@" |
| 137 | fdo-mime_desktop_database_update |
169 | fdo-mime_desktop_database_update |
| 138 | fdo-mime_mime_database_update |
170 | fdo-mime_mime_database_update |
| 139 | gnome2_icon_cache_update |
171 | gnome2_icon_cache_update |
| 140 | } |
172 | } |