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