| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.2 2003/10/14 02:33:33 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.7 2003/12/02 02:54:18 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 src_unpack src_compile src_install |
10 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst |
| 11 | |
11 | |
| 12 | DESCRIPTION="A DR17 production" |
12 | DESCRIPTION="A DR17 production" |
| 13 | HOMEPAGE="http://www.enlightenment.org/" |
13 | HOMEPAGE="http://www.enlightenment.org/" |
| 14 | SRC_URI="mirror://gentoo/${P}.tar.bz2 |
14 | SRC_URI="mirror://gentoo/${P}.tar.bz2 |
| 15 | http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
15 | http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
| 16 | |
16 | |
| 17 | LICENSE="as-is" |
17 | LICENSE="as-is" |
| 18 | SLOT="0" |
18 | SLOT="0" |
| 19 | KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" |
19 | KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" |
| 20 | IUSE="nls" |
20 | IUSE="nls doc" |
| 21 | |
21 | |
|
|
22 | newdepend "doc? ( app-doc/doxygen )" |
| 22 | DEPEND="nls? ( sys-devel/gettext )" |
23 | newrdepend "nls? ( sys-devel/gettext )" |
| 23 | |
24 | |
| 24 | S=${WORKDIR}/${PN} |
25 | S=${WORKDIR}/${PN} |
|
|
26 | |
|
|
27 | enlightenment_warning_msg() { |
|
|
28 | if [ "${PV/2003}" != "${PV}" ] ; then |
|
|
29 | ewarn "Please do not contact the E team about bugs in Gentoo." |
|
|
30 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
|
|
31 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
|
|
32 | ewarn "I break you :)." |
|
|
33 | fi |
|
|
34 | } |
|
|
35 | |
|
|
36 | enlightenment_pkg_setup() { |
|
|
37 | enlightenment_warning_msg |
|
|
38 | } |
| 25 | |
39 | |
| 26 | # the stupid gettextize script prevents non-interactive mode, so we hax it |
40 | # the stupid gettextize script prevents non-interactive mode, so we hax it |
| 27 | gettext_modify() { |
41 | gettext_modify() { |
| 28 | use nls || return 0 |
42 | use nls || return 0 |
| 29 | cp `which gettextize` ${T} || die "could not copy gettextize" |
43 | cp `which gettextize` ${T} || die "could not copy gettextize" |
| … | |
… | |
| 37 | } |
51 | } |
| 38 | |
52 | |
| 39 | enlightenment_src_compile() { |
53 | enlightenment_src_compile() { |
| 40 | use alpha && append-flags -fPIC |
54 | use alpha && append-flags -fPIC |
| 41 | use ppc && append-flags -fPIC |
55 | use ppc && append-flags -fPIC |
|
|
56 | use hppa && append-flags -fPIC |
| 42 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
57 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
| 43 | env \ |
58 | env \ |
| 44 | PATH="${T}:${PATH}" \ |
59 | PATH="${T}:${PATH}" \ |
| 45 | WANT_AUTOCONF_2_5=1 \ |
60 | WANT_AUTOCONF_2_5=1 \ |
| 46 | NOCONFIGURE=yes \ |
61 | NOCONFIGURE=yes \ |
| 47 | USER=blah \ |
62 | USER=blah \ |
| 48 | ./autogen.sh \ |
63 | ./autogen.sh \ |
| 49 | || die "autogen failed" |
64 | || die "autogen failed" |
|
|
65 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
|
|
66 | cd libltdl |
|
|
67 | env WANT_AUTOCONF_2_5=1 autoconf || die "autogen in libltdl failed" |
|
|
68 | cd .. |
|
|
69 | fi |
| 50 | econf ${MY_ECONF} || die "econf failed" |
70 | econf ${MY_ECONF} || die "econf failed" |
| 51 | emake || die "emake failed" |
71 | emake || die "emake failed" |
|
|
72 | [ `use doc` ] && [ -x ./gendoc ] && { ./gendoc || die "gendoc failed" ; } |
| 52 | } |
73 | } |
| 53 | |
74 | |
| 54 | enlightenment_src_install() { |
75 | enlightenment_src_install() { |
| 55 | make install DESTDIR=${D} || die |
76 | make install DESTDIR=${D} || die |
| 56 | find ${D} -name CVS -type d -exec rm -rf '{}' \; |
77 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
| 57 | [ -z "${EDOCS}" ] && EDOCS="AUTHORS ChangeLog NEWS README TODO" |
78 | [ -z "${EDOCS}" ] && EDOCS="AUTHORS ChangeLog NEWS README TODO" |
| 58 | dodoc ${EDOCS} |
79 | dodoc ${EDOCS} |
| 59 | [ -d doc ] && dohtml -r doc/* |
80 | [ `use doc` ] && [ -d doc ] && dohtml -r doc/* |
| 60 | } |
81 | } |
|
|
82 | |
|
|
83 | enlightenment_pkg_postinst() { |
|
|
84 | enlightenment_warning_msg |
|
|
85 | } |