| 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.17 2004/03/30 16:18:51 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 ~ia64"
|
| 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 |
NOCONFIGURE=yes \
|
| 64 |
USER=blah \
|
| 65 |
./autogen.sh \
|
| 66 |
|| enlightenment_die "autogen failed"
|
| 67 |
if [ ! -z "${EHACKLIBLTDL}" ] ; then
|
| 68 |
cd libltdl
|
| 69 |
autoconf || enlightenment_die "autogen in libltdl failed"
|
| 70 |
cd ..
|
| 71 |
fi
|
| 72 |
econf ${MY_ECONF} || enlightenment_die "econf failed"
|
| 73 |
emake || enlightenment_die "emake failed"
|
| 74 |
use doc && [ -x ./gendoc ] && { ./gendoc || enlightenment_die "gendoc failed" ; }
|
| 75 |
}
|
| 76 |
|
| 77 |
enlightenment_src_install() {
|
| 78 |
make install DESTDIR=${D} || enlightenment_die
|
| 79 |
find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null
|
| 80 |
dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS}
|
| 81 |
use doc && [ -d doc ] && dohtml -r doc/*
|
| 82 |
}
|
| 83 |
|
| 84 |
enlightenment_pkg_postinst() {
|
| 85 |
enlightenment_warning_msg
|
| 86 |
}
|