| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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/enlightenment.eclass,v 1.22 2004/07/19 22:20:16 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.24 2004/10/13 19:51:01 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: vapier@gentoo.org |
5 | # Author: vapier@gentoo.org |
| 6 | |
6 | |
| 7 | ECLASS=enlightenment |
7 | ECLASS=enlightenment |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | INHERITED="$INHERITED $ECLASS" |
| 9 | |
9 | |
| 10 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst |
10 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst |
| 11 | |
11 | |
| 12 | USE_CVS="no" |
12 | ECVS_STATE="release" |
| 13 | if [ "${PV/.9999}" != "${PV}" ] ; then |
13 | if [ "${PV/9999}" != "${PV}" ] ; then |
| 14 | USE_CVS="yes" |
14 | ECVS_STATE="live" |
| 15 | inherit cvs |
15 | inherit cvs |
|
|
16 | elif [ "${PV/.200?????/}" != "${PV}" ] ; then |
|
|
17 | ECVS_STATE="snap" |
| 16 | fi |
18 | fi |
| 17 | |
19 | |
| 18 | DESCRIPTION="A DR17 production" |
20 | DESCRIPTION="A DR17 production" |
| 19 | HOMEPAGE="http://www.enlightenment.org/" |
21 | HOMEPAGE="http://www.enlightenment.org/" |
| 20 | if [ "${USE_CVS}" == "no" ] ; then |
22 | case ${ECVS_STATE} in |
|
|
23 | release) SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz";; |
| 21 | SRC_URI="mirror://gentoo/${P}.tar.bz2" |
24 | snap) SRC_URI="mirror://gentoo/${P}.tar.bz2";; |
| 22 | # http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
25 | live) SRC_URI="";; |
| 23 | fi |
26 | esac |
| 24 | |
27 | |
| 25 | LICENSE="BSD" |
28 | LICENSE="BSD" |
| 26 | SLOT="0" |
29 | SLOT="0" |
| 27 | KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" |
30 | KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" |
| 28 | IUSE="nls doc" |
31 | IUSE="nls doc" |
| 29 | |
32 | |
| 30 | DEPEND="doc? ( app-doc/doxygen ) |
33 | DEPEND="doc? ( app-doc/doxygen ) |
| 31 | >=sys-devel/autoconf-2.58-r1" |
34 | >=sys-devel/autoconf-2.58-r1" |
| 32 | RDEPEND="nls? ( sys-devel/gettext )" |
35 | RDEPEND="nls? ( sys-devel/gettext )" |
| 33 | |
36 | |
| 34 | S=${WORKDIR}/${PN} |
37 | case ${ECVS_STATE} in |
|
|
38 | release) S=${WORKDIR}/${P};; |
|
|
39 | snap|live) S=${WORKDIR}/${PN};; |
|
|
40 | esac |
| 35 | |
41 | |
| 36 | enlightenment_warning_msg() { |
42 | enlightenment_warning_msg() { |
| 37 | if [ "${PV/200}" != "${PV}" ] ; then |
43 | if [ "${PV/200}" != "${PV}" ] ; then |
| 38 | ewarn "Please do not contact the E team about bugs in Gentoo." |
44 | ewarn "Please do not contact the E team about bugs in Gentoo." |
| 39 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
45 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
| … | |
… | |
| 58 | cp ${T}/gettextize ${T}/gettextize.old |
64 | cp ${T}/gettextize ${T}/gettextize.old |
| 59 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
65 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
| 60 | } |
66 | } |
| 61 | |
67 | |
| 62 | enlightenment_src_unpack() { |
68 | enlightenment_src_unpack() { |
| 63 | [ "${USE_CVS}" == "no" ] && unpack ${A} |
69 | [ "${ECVS_STATE}" != "live" ] && unpack ${A} |
| 64 | gettext_modify |
70 | gettext_modify |
| 65 | } |
71 | } |
| 66 | |
72 | |
| 67 | enlightenment_src_compile() { |
73 | enlightenment_src_compile() { |
|
|
74 | if [ "${ECVS_STATE}" != "release" ] ; then |
| 68 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
75 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
| 69 | export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" |
76 | export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" |
| 70 | env \ |
77 | env \ |
| 71 | PATH="${T}:${PATH}" \ |
78 | PATH="${T}:${PATH}" \ |
| 72 | NOCONFIGURE=yes \ |
79 | NOCONFIGURE=yes \ |
| 73 | USER=blah \ |
80 | USER=blah \ |
| 74 | ./autogen.sh \ |
81 | ./autogen.sh \ |
| 75 | || enlightenment_die "autogen failed" |
82 | || enlightenment_die "autogen failed" |
| 76 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
83 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
| 77 | cd libltdl |
84 | cd libltdl |
| 78 | autoconf || enlightenment_die "autogen in libltdl failed" |
85 | autoconf || enlightenment_die "autogen in libltdl failed" |
| 79 | cd .. |
86 | cd .. |
|
|
87 | fi |
| 80 | fi |
88 | fi |
| 81 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
89 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
| 82 | emake || enlightenment_die "emake failed" |
90 | emake || enlightenment_die "emake failed" |
| 83 | use doc && [ -x ./gendoc ] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
91 | use doc && [ -x ./gendoc ] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
| 84 | } |
92 | } |