| 1 | # Copyright 1999-2012 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.44 2012/09/27 16:35:42 axs Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.45 2012/11/28 12:41:23 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 |
| … | |
… | |
| 38 | |
38 | |
| 39 | unset _xfconf_deps |
39 | unset _xfconf_deps |
| 40 | unset _xfconf_m4 |
40 | unset _xfconf_m4 |
| 41 | |
41 | |
| 42 | case ${EAPI:-0} in |
42 | case ${EAPI:-0} in |
| 43 | 4|5) ;; |
43 | 5) ;; |
| 44 | *) die "Unknown EAPI." ;; |
44 | *) die "Unknown EAPI." ;; |
| 45 | esac |
45 | esac |
| 46 | |
46 | |
| 47 | [[ -n $_xfconf_live ]] && _xfconf_live=src_unpack |
47 | [[ -n $_xfconf_live ]] && _xfconf_live=src_unpack |
| 48 | |
48 | |