| 1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
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.15 2004/02/21 04:50:58 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.22 2004/07/19 22:20:16 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" |
|
|
13 | if [ "${PV/.9999}" != "${PV}" ] ; then |
|
|
14 | USE_CVS="yes" |
|
|
15 | inherit cvs |
|
|
16 | fi |
|
|
17 | |
| 12 | DESCRIPTION="A DR17 production" |
18 | DESCRIPTION="A DR17 production" |
| 13 | HOMEPAGE="http://www.enlightenment.org/" |
19 | HOMEPAGE="http://www.enlightenment.org/" |
|
|
20 | if [ "${USE_CVS}" == "no" ] ; then |
| 14 | SRC_URI="mirror://gentoo/${P}.tar.bz2" |
21 | SRC_URI="mirror://gentoo/${P}.tar.bz2" |
| 15 | # http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
22 | # http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
|
|
23 | fi |
| 16 | |
24 | |
| 17 | LICENSE="BSD" |
25 | LICENSE="BSD" |
| 18 | SLOT="0" |
26 | SLOT="0" |
| 19 | KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" |
27 | KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" |
| 20 | IUSE="nls doc" |
28 | IUSE="nls doc" |
| 21 | |
29 | |
| 22 | DEPEND="doc? ( app-doc/doxygen ) |
30 | DEPEND="doc? ( app-doc/doxygen ) |
| 23 | >=sys-devel/autoconf-2.58-r1" |
31 | >=sys-devel/autoconf-2.58-r1" |
| 24 | RDEPEND="nls? ( sys-devel/gettext )" |
32 | RDEPEND="nls? ( sys-devel/gettext )" |
| 25 | |
33 | |
| 26 | S=${WORKDIR}/${PN} |
34 | S=${WORKDIR}/${PN} |
| 27 | |
35 | |
| 28 | enlightenment_warning_msg() { |
36 | enlightenment_warning_msg() { |
| 29 | if [ "${PV/2003}" != "${PV}" ] ; then |
37 | if [ "${PV/200}" != "${PV}" ] ; then |
| 30 | ewarn "Please do not contact the E team about bugs in Gentoo." |
38 | ewarn "Please do not contact the E team about bugs in Gentoo." |
| 31 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
39 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
| 32 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
40 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
| 33 | ewarn "I break you :)." |
41 | ewarn "I break you :)." |
| 34 | fi |
42 | fi |
|
|
43 | } |
|
|
44 | |
|
|
45 | enlightenment_die() { |
|
|
46 | enlightenment_warning_msg |
|
|
47 | die "$@"$'\n'"!!! SEND BUG REPORTS TO vapier@gentoo.org NOT THE E TEAM" |
| 35 | } |
48 | } |
| 36 | |
49 | |
| 37 | enlightenment_pkg_setup() { |
50 | enlightenment_pkg_setup() { |
| 38 | enlightenment_warning_msg |
51 | enlightenment_warning_msg |
| 39 | } |
52 | } |
| … | |
… | |
| 45 | cp ${T}/gettextize ${T}/gettextize.old |
58 | cp ${T}/gettextize ${T}/gettextize.old |
| 46 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
59 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
| 47 | } |
60 | } |
| 48 | |
61 | |
| 49 | enlightenment_src_unpack() { |
62 | enlightenment_src_unpack() { |
| 50 | unpack ${A} |
63 | [ "${USE_CVS}" == "no" ] && unpack ${A} |
| 51 | gettext_modify |
64 | gettext_modify |
| 52 | } |
65 | } |
| 53 | |
66 | |
| 54 | enlightenment_src_compile() { |
67 | enlightenment_src_compile() { |
| 55 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
68 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
|
|
69 | export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" |
| 56 | env \ |
70 | env \ |
| 57 | PATH="${T}:${PATH}" \ |
71 | PATH="${T}:${PATH}" \ |
| 58 | WANT_AUTOCONF_2_5=1 \ |
|
|
| 59 | NOCONFIGURE=yes \ |
72 | NOCONFIGURE=yes \ |
| 60 | USER=blah \ |
73 | USER=blah \ |
| 61 | ./autogen.sh \ |
74 | ./autogen.sh \ |
| 62 | || die "autogen failed" |
75 | || enlightenment_die "autogen failed" |
| 63 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
76 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
| 64 | cd libltdl |
77 | cd libltdl |
| 65 | env WANT_AUTOCONF_2_5=1 autoconf || die "autogen in libltdl failed" |
78 | autoconf || enlightenment_die "autogen in libltdl failed" |
| 66 | cd .. |
79 | cd .. |
| 67 | fi |
80 | fi |
| 68 | econf ${MY_ECONF} || die "econf failed" |
81 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
| 69 | emake || die "emake failed" |
82 | emake || enlightenment_die "emake failed" |
| 70 | [ `use doc` ] && [ -x ./gendoc ] && { ./gendoc || die "gendoc failed" ; } |
83 | use doc && [ -x ./gendoc ] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
| 71 | } |
84 | } |
| 72 | |
85 | |
| 73 | enlightenment_src_install() { |
86 | enlightenment_src_install() { |
| 74 | make install DESTDIR=${D} || die |
87 | make install DESTDIR=${D} || enlightenment_die |
| 75 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
88 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
| 76 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
89 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
| 77 | [ `use doc` ] && [ -d doc ] && dohtml -r doc/* |
90 | use doc && [ -d doc ] && dohtml -r doc/* |
| 78 | } |
91 | } |
| 79 | |
92 | |
| 80 | enlightenment_pkg_postinst() { |
93 | enlightenment_pkg_postinst() { |
| 81 | enlightenment_warning_msg |
94 | enlightenment_warning_msg |
| 82 | } |
95 | } |