| 1 | # Copyright 1999-2005 Gentoo Foundation |
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.1.1.1 2005/11/30 09:59:22 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.8 2004/01/20 01:30:37 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: vapier@gentoo.org |
5 | # Author: vapier@gentoo.org |
| 6 | |
6 | |
| 7 | inherit eutils |
7 | ECLASS=enlightenment |
| 8 | |
8 | INHERITED="$INHERITED $ECLASS" |
| 9 | # ECVS_STATE's: |
|
|
| 10 | # release [default] |
|
|
| 11 | # KEYWORDS arch |
|
|
| 12 | # SRC_URI $P.tar.gz |
|
|
| 13 | # S $WORKDIR/$P |
|
|
| 14 | # |
|
|
| 15 | # snap $PV has .200##### datestamp or .### counter |
|
|
| 16 | # KEYWORDS ~arch |
|
|
| 17 | # SRC_URI $P.tar.bz2 |
|
|
| 18 | # S $WORKDIR/$P |
|
|
| 19 | # |
|
|
| 20 | # live $PV has a 9999 marker |
|
|
| 21 | # KEYWORDS -* |
|
|
| 22 | # SRC_URI `cvs up` |
|
|
| 23 | # S $WORKDIR/$ECVS_MODULE |
|
|
| 24 | # |
|
|
| 25 | # Overrides: |
|
|
| 26 | # KEYWORDS EKEY_STATE |
|
|
| 27 | # SRC_URI EURI_STATE |
|
|
| 28 | # S EURI_STATE |
|
|
| 29 | |
9 | |
| 30 | 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 |
| 31 | |
11 | |
| 32 | ECVS_STATE="release" |
|
|
| 33 | if [[ ${PV/9999} != ${PV} ]] ; then |
|
|
| 34 | if [[ -z ${ECVS_MODULE} ]] ; then |
|
|
| 35 | ECVS_MODULE=${PN} |
|
|
| 36 | if [[ ${CATEGORY/libs} != ${CATEGORY} ]] ; then |
|
|
| 37 | ECVS_MODULE="e17/libs/${PN}" |
|
|
| 38 | else |
|
|
| 39 | ECVS_MODULE="e17/apps/${PN}" |
|
|
| 40 | fi |
|
|
| 41 | fi |
|
|
| 42 | ECVS_SERVER=${ECVS_SERVER:-cvs.sourceforge.net:/cvsroot/enlightenment} |
|
|
| 43 | ECVS_STATE="live" |
|
|
| 44 | inherit cvs |
|
|
| 45 | elif [[ ${PV/.200[3-9][0-1][0-9][0-3][0-9]/} != ${PV} ]] ; then |
|
|
| 46 | ECVS_STATE="snap" |
|
|
| 47 | elif [[ ${PV%%.[0-9][0-9][0-9]} != ${PV} ]] ; then |
|
|
| 48 | ECVS_STATE="snap" |
|
|
| 49 | EURI_STATE="release" |
|
|
| 50 | fi |
|
|
| 51 | |
|
|
| 52 | DESCRIPTION="A DR17 production" |
12 | DESCRIPTION="A DR17 production" |
| 53 | HOMEPAGE="http://www.enlightenment.org/" |
13 | HOMEPAGE="http://www.enlightenment.org/" |
| 54 | case ${EURI_STATE:-${ECVS_STATE}} in |
|
|
| 55 | release) SRC_URI="http://enlightenment.freedesktop.org/files/${P}.tar.gz mirror://sourceforge/enlightenment/${P}.tar.gz";; |
|
|
| 56 | snap) SRC_URI="mirror://gentoo/${P}.tar.bz2";; |
14 | SRC_URI="mirror://gentoo/${P}.tar.bz2" |
| 57 | live) SRC_URI="";; |
15 | # http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
| 58 | esac |
|
|
| 59 | |
16 | |
| 60 | LICENSE="BSD" |
17 | LICENSE="as-is" |
| 61 | SLOT="0" |
18 | SLOT="0" |
| 62 | case ${EKEY_STATE:-${ECVS_STATE}} in |
19 | KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" |
| 63 | release) KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86";; |
|
|
| 64 | snap) KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86";; |
|
|
| 65 | live) KEYWORDS="-*";; |
|
|
| 66 | esac |
|
|
| 67 | IUSE="nls doc" |
20 | IUSE="nls doc" |
| 68 | |
21 | |
| 69 | DEPEND="doc? ( app-doc/doxygen )" |
22 | newdepend "doc? ( app-doc/doxygen )" |
| 70 | RDEPEND="nls? ( sys-devel/gettext )" |
23 | newrdepend "nls? ( sys-devel/gettext )" |
| 71 | |
24 | |
| 72 | case ${EURI_STATE:-${ECVS_STATE}} in |
|
|
| 73 | release) S=${WORKDIR}/${P};; |
|
|
| 74 | snap) S=${WORKDIR}/${PN};; |
25 | S=${WORKDIR}/${PN} |
| 75 | live) S=${WORKDIR}/${ECVS_MODULE};; |
|
|
| 76 | esac |
|
|
| 77 | |
26 | |
| 78 | enlightenment_warning_msg() { |
27 | enlightenment_warning_msg() { |
| 79 | if [[ ${ECVS_STATE} == "snap" ]] ; then |
28 | if [ "${PV/2003}" != "${PV}" ] ; then |
| 80 | ewarn "Please do not contact the E team about bugs in Gentoo." |
29 | ewarn "Please do not contact the E team about bugs in Gentoo." |
| 81 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
30 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
| 82 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
31 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
| 83 | ewarn "I break you :)." |
32 | ewarn "I break you :)." |
| 84 | elif [[ ${ECVS_STATE} == "live" ]] ; then |
|
|
| 85 | eerror "This is a LIVE CVS ebuild." |
|
|
| 86 | eerror "That means there are NO promises it will work." |
|
|
| 87 | eerror "If it fails to build, FIX THE CODE YOURSELF" |
|
|
| 88 | eerror "before reporting any issues." |
|
|
| 89 | fi |
33 | fi |
| 90 | } |
|
|
| 91 | |
|
|
| 92 | enlightenment_die() { |
|
|
| 93 | enlightenment_warning_msg |
|
|
| 94 | die "$@"$'\n'"!!! SEND BUG REPORTS TO vapier@gentoo.org NOT THE E TEAM" |
|
|
| 95 | } |
34 | } |
| 96 | |
35 | |
| 97 | enlightenment_pkg_setup() { |
36 | enlightenment_pkg_setup() { |
| 98 | enlightenment_warning_msg |
37 | enlightenment_warning_msg |
| 99 | } |
38 | } |
| 100 | |
39 | |
| 101 | # 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 |
| 102 | gettext_modify() { |
41 | gettext_modify() { |
| 103 | use nls || return 0 |
42 | use nls || return 0 |
| 104 | cp $(which gettextize) "${T}"/ || die "could not copy gettextize" |
43 | cp `which gettextize` ${T} || die "could not copy gettextize" |
| 105 | sed -i \ |
44 | cp ${T}/gettextize ${T}/gettextize.old |
| 106 | -e 's:read dummy < /dev/tty::' \ |
45 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
| 107 | "${T}"/gettextize |
|
|
| 108 | } |
46 | } |
| 109 | |
47 | |
| 110 | enlightenment_src_unpack() { |
48 | enlightenment_src_unpack() { |
| 111 | if [[ ${ECVS_STATE} == "live" ]] ; then |
|
|
| 112 | cvs_src_unpack |
|
|
| 113 | else |
|
|
| 114 | unpack ${A} |
49 | unpack ${A} |
| 115 | fi |
|
|
| 116 | gettext_modify |
50 | gettext_modify |
| 117 | [[ -s gendoc ]] && chmod a+rx gendoc |
|
|
| 118 | } |
51 | } |
| 119 | |
52 | |
| 120 | enlightenment_src_compile() { |
53 | enlightenment_src_compile() { |
| 121 | if [[ ! -e configure ]] ; then |
54 | use alpha && append-flags -fPIC |
| 122 | export WANT_AUTOMAKE=${EAUTOMAKE:-1.8} |
55 | use ppc && append-flags -fPIC |
|
|
56 | use hppa && append-flags -fPIC |
|
|
57 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
| 123 | env \ |
58 | env \ |
| 124 | PATH="${T}:${PATH}" \ |
59 | PATH="${T}:${PATH}" \ |
|
|
60 | WANT_AUTOCONF_2_5=1 \ |
| 125 | NOCONFIGURE=yes \ |
61 | NOCONFIGURE=yes \ |
| 126 | USER=blah \ |
62 | USER=blah \ |
| 127 | ./autogen.sh \ |
63 | ./autogen.sh \ |
| 128 | || enlightenment_die "autogen failed" |
64 | || die "autogen failed" |
| 129 | # symlinked files will cause sandbox violation |
|
|
| 130 | for x in config.{guess,sub} ; do |
|
|
| 131 | [[ ! -L ${x} ]] && continue |
|
|
| 132 | rm -f ${x} |
|
|
| 133 | touch ${x} |
|
|
| 134 | done |
|
|
| 135 | if [[ ! -z ${EHACKLIBLTDL} ]] ; then |
65 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
| 136 | cd libltdl |
66 | cd libltdl |
| 137 | autoconf || enlightenment_die "autogen in libltdl failed" |
67 | env WANT_AUTOCONF_2_5=1 autoconf || die "autogen in libltdl failed" |
| 138 | cd .. |
68 | cd .. |
| 139 | fi |
|
|
| 140 | fi |
69 | fi |
| 141 | epunt_cxx |
|
|
| 142 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
70 | econf ${MY_ECONF} || die "econf failed" |
| 143 | emake || enlightenment_die "emake failed" |
71 | emake || die "emake failed" |
| 144 | use doc && [[ -x ./gendoc ]] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
72 | [ `use doc` ] && [ -x ./gendoc ] && { ./gendoc || die "gendoc failed" ; } |
| 145 | } |
73 | } |
| 146 | |
74 | |
| 147 | enlightenment_src_install() { |
75 | enlightenment_src_install() { |
| 148 | make install DESTDIR="${D}" || enlightenment_die |
76 | make install DESTDIR=${D} || die |
| 149 | find "${D}" -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
77 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
| 150 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
78 | [ -z "${EDOCS}" ] && EDOCS="AUTHORS ChangeLog NEWS README TODO" |
|
|
79 | dodoc ${EDOCS} |
| 151 | use doc && [[ -d doc ]] && dohtml -r doc/* |
80 | [ `use doc` ] && [ -d doc ] && dohtml -r doc/* |
| 152 | } |
81 | } |
| 153 | |
82 | |
| 154 | enlightenment_pkg_postinst() { |
83 | enlightenment_pkg_postinst() { |
| 155 | enlightenment_warning_msg |
84 | enlightenment_warning_msg |
| 156 | } |
85 | } |