| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.7 2003/12/02 02:54:18 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.13 2004/02/17 07:36:54 mr_bones_ 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 | 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="BSD" |
| 18 | SLOT="0" |
18 | SLOT="0" |
| 19 | KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" |
19 | KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64" |
| 20 | IUSE="nls doc" |
20 | IUSE="nls doc" |
| 21 | |
21 | |
| 22 | newdepend "doc? ( app-doc/doxygen )" |
22 | DEPEND="doc? ( app-doc/doxygen )" |
| 23 | newrdepend "nls? ( sys-devel/gettext )" |
23 | RDEPEND="nls? ( sys-devel/gettext )" |
| 24 | |
24 | |
| 25 | S=${WORKDIR}/${PN} |
25 | S=${WORKDIR}/${PN} |
| 26 | |
26 | |
| 27 | enlightenment_warning_msg() { |
27 | enlightenment_warning_msg() { |
| 28 | if [ "${PV/2003}" != "${PV}" ] ; then |
28 | if [ "${PV/2003}" != "${PV}" ] ; then |
| … | |
… | |
| 49 | unpack ${A} |
49 | unpack ${A} |
| 50 | gettext_modify |
50 | gettext_modify |
| 51 | } |
51 | } |
| 52 | |
52 | |
| 53 | enlightenment_src_compile() { |
53 | enlightenment_src_compile() { |
| 54 | use alpha && append-flags -fPIC |
|
|
| 55 | use ppc && append-flags -fPIC |
|
|
| 56 | use hppa && append-flags -fPIC |
|
|
| 57 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
54 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
| 58 | env \ |
55 | env \ |
| 59 | PATH="${T}:${PATH}" \ |
56 | PATH="${T}:${PATH}" \ |
| 60 | WANT_AUTOCONF_2_5=1 \ |
57 | WANT_AUTOCONF_2_5=1 \ |
| 61 | NOCONFIGURE=yes \ |
58 | NOCONFIGURE=yes \ |
| … | |
… | |
| 73 | } |
70 | } |
| 74 | |
71 | |
| 75 | enlightenment_src_install() { |
72 | enlightenment_src_install() { |
| 76 | make install DESTDIR=${D} || die |
73 | make install DESTDIR=${D} || die |
| 77 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
74 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
| 78 | [ -z "${EDOCS}" ] && EDOCS="AUTHORS ChangeLog NEWS README TODO" |
75 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
| 79 | dodoc ${EDOCS} |
|
|
| 80 | [ `use doc` ] && [ -d doc ] && dohtml -r doc/* |
76 | [ `use doc` ] && [ -d doc ] && dohtml -r doc/* |
| 81 | } |
77 | } |
| 82 | |
78 | |
| 83 | enlightenment_pkg_postinst() { |
79 | enlightenment_pkg_postinst() { |
| 84 | enlightenment_warning_msg |
80 | enlightenment_warning_msg |