| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.22 2004/07/19 22:20:16 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.38 2004/12/27 14:23:14 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" |
12 | ECVS_STATE="release" |
| 13 | if [ "${PV/.9999}" != "${PV}" ] ; then |
13 | if [[ ${PV/9999} != ${PV} ]] ; then |
| 14 | USE_CVS="yes" |
14 | if [[ -z ${ECVS_MODULE} ]] ; then |
|
|
15 | ECVS_MODULE="${PN}" |
|
|
16 | if [[ ${CATEGORY/libs} != ${CATEGORY} ]] ; then |
|
|
17 | ECVS_MODULE="e17/libs/${PN}" |
|
|
18 | else |
|
|
19 | ECVS_MODULE="e17/apps/${PN}" |
|
|
20 | fi |
|
|
21 | fi |
|
|
22 | ECVS_SERVER="${ECVS_SERVER:-cvs.sourceforge.net:/cvsroot/enlightenment}" |
|
|
23 | ECVS_STATE="live" |
| 15 | inherit cvs |
24 | inherit cvs |
|
|
25 | elif [[ ${PV/.200?????/} != ${PV} ]] || [[ ${PV/2003????} != ${PV} ]] ; then |
|
|
26 | ECVS_STATE="snap" |
| 16 | fi |
27 | fi |
| 17 | |
28 | |
| 18 | DESCRIPTION="A DR17 production" |
29 | DESCRIPTION="A DR17 production" |
| 19 | HOMEPAGE="http://www.enlightenment.org/" |
30 | HOMEPAGE="http://www.enlightenment.org/" |
| 20 | if [ "${USE_CVS}" == "no" ] ; then |
31 | case ${ECVS_STATE} in |
|
|
32 | release) SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz";; |
| 21 | SRC_URI="mirror://gentoo/${P}.tar.bz2" |
33 | snap) SRC_URI="mirror://gentoo/${P}.tar.bz2";; |
| 22 | # http://wh0rd.de/gentoo/distfiles/${P}.tar.bz2" |
34 | live) SRC_URI="";; |
| 23 | fi |
35 | esac |
| 24 | |
36 | |
| 25 | LICENSE="BSD" |
37 | LICENSE="BSD" |
| 26 | SLOT="0" |
38 | SLOT="0" |
| 27 | KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" |
39 | case ${ECVS_STATE} in |
|
|
40 | release) KEYWORDS="alpha amd64 arm hppa ia64 mips ppc sparc x86";; |
|
|
41 | snap) KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86";; |
|
|
42 | live) KEYWORDS="-*";; |
|
|
43 | esac |
| 28 | IUSE="nls doc" |
44 | IUSE="nls doc" |
| 29 | |
45 | |
| 30 | DEPEND="doc? ( app-doc/doxygen ) |
46 | DEPEND="doc? ( app-doc/doxygen )" |
| 31 | >=sys-devel/autoconf-2.58-r1" |
|
|
| 32 | RDEPEND="nls? ( sys-devel/gettext )" |
47 | RDEPEND="nls? ( sys-devel/gettext )" |
| 33 | |
48 | |
|
|
49 | case ${ECVS_STATE} in |
|
|
50 | release) S=${WORKDIR}/${P};; |
| 34 | S=${WORKDIR}/${PN} |
51 | snap) S=${WORKDIR}/${PN};; |
|
|
52 | live) S=${WORKDIR}/${ECVS_MODULE};; |
|
|
53 | esac |
| 35 | |
54 | |
| 36 | enlightenment_warning_msg() { |
55 | enlightenment_warning_msg() { |
| 37 | if [ "${PV/200}" != "${PV}" ] ; then |
56 | if [[ ${PV/200} != ${PV} ]] ; then |
| 38 | ewarn "Please do not contact the E team about bugs in Gentoo." |
57 | ewarn "Please do not contact the E team about bugs in Gentoo." |
| 39 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
58 | ewarn "Only contact vapier@gentoo.org via e-mail or bugzilla." |
| 40 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
59 | ewarn "Remember, this stuff is CVS only code so dont cry when" |
| 41 | ewarn "I break you :)." |
60 | ewarn "I break you :)." |
|
|
61 | elif [[ ${PV/9999} != ${PV} ]] ; then |
|
|
62 | eerror "This is a LIVE CVS ebuild." |
|
|
63 | eerror "That means there are NO promises it will work." |
|
|
64 | eerror "If it fails to build, FIX THE CODE YOURSELF" |
|
|
65 | eerror "before reporting any issues." |
| 42 | fi |
66 | fi |
| 43 | } |
67 | } |
| 44 | |
68 | |
| 45 | enlightenment_die() { |
69 | enlightenment_die() { |
| 46 | enlightenment_warning_msg |
70 | enlightenment_warning_msg |
| … | |
… | |
| 52 | } |
76 | } |
| 53 | |
77 | |
| 54 | # the stupid gettextize script prevents non-interactive mode, so we hax it |
78 | # the stupid gettextize script prevents non-interactive mode, so we hax it |
| 55 | gettext_modify() { |
79 | gettext_modify() { |
| 56 | use nls || return 0 |
80 | use nls || return 0 |
| 57 | cp `which gettextize` ${T} || die "could not copy gettextize" |
81 | cp $(which gettextize) ${T} || die "could not copy gettextize" |
| 58 | cp ${T}/gettextize ${T}/gettextize.old |
82 | cp ${T}/gettextize ${T}/gettextize.old |
| 59 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
83 | sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize |
| 60 | } |
84 | } |
| 61 | |
85 | |
| 62 | enlightenment_src_unpack() { |
86 | enlightenment_src_unpack() { |
| 63 | [ "${USE_CVS}" == "no" ] && unpack ${A} |
87 | if [[ ${ECVS_STATE} == "live" ]] ; then |
|
|
88 | cvs_src_unpack |
|
|
89 | else |
|
|
90 | unpack ${A} |
|
|
91 | fi |
| 64 | gettext_modify |
92 | gettext_modify |
| 65 | } |
93 | } |
| 66 | |
94 | |
| 67 | enlightenment_src_compile() { |
95 | enlightenment_src_compile() { |
|
|
96 | if [[ ${ECVS_STATE} != "release" ]] ; then |
| 68 | [ ! -z "${EHACKAUTOGEN}" ] && sed -i 's:.*configure.*::' autogen.sh |
97 | [[ ! -z ${EHACKAUTOGEN} ]] && sed -i 's:.*configure.*::' autogen.sh |
| 69 | export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" |
98 | export WANT_AUTOMAKE="${EAUTOMAKE:-1.8}" |
| 70 | env \ |
99 | env \ |
| 71 | PATH="${T}:${PATH}" \ |
100 | PATH="${T}:${PATH}" \ |
| 72 | NOCONFIGURE=yes \ |
101 | NOCONFIGURE=yes \ |
| 73 | USER=blah \ |
102 | USER=blah \ |
| 74 | ./autogen.sh \ |
103 | ./autogen.sh \ |
| 75 | || enlightenment_die "autogen failed" |
104 | || enlightenment_die "autogen failed" |
| 76 | if [ ! -z "${EHACKLIBLTDL}" ] ; then |
105 | if [[ ! -z ${EHACKLIBLTDL} ]] ; then |
| 77 | cd libltdl |
106 | cd libltdl |
| 78 | autoconf || enlightenment_die "autogen in libltdl failed" |
107 | autoconf || enlightenment_die "autogen in libltdl failed" |
| 79 | cd .. |
108 | cd .. |
|
|
109 | fi |
| 80 | fi |
110 | fi |
| 81 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
111 | econf ${MY_ECONF} || enlightenment_die "econf failed" |
| 82 | emake || enlightenment_die "emake failed" |
112 | emake || enlightenment_die "emake failed" |
| 83 | use doc && [ -x ./gendoc ] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
113 | use doc && [[ -x ./gendoc ]] && { ./gendoc || enlightenment_die "gendoc failed" ; } |
| 84 | } |
114 | } |
| 85 | |
115 | |
| 86 | enlightenment_src_install() { |
116 | enlightenment_src_install() { |
| 87 | make install DESTDIR=${D} || enlightenment_die |
117 | make install DESTDIR=${D} || enlightenment_die |
| 88 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
118 | find ${D} -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null |
| 89 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
119 | dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS} |
| 90 | use doc && [ -d doc ] && dohtml -r doc/* |
120 | use doc && [[ -d doc ]] && dohtml -r doc/* |
| 91 | } |
121 | } |
| 92 | |
122 | |
| 93 | enlightenment_pkg_postinst() { |
123 | enlightenment_pkg_postinst() { |
| 94 | enlightenment_warning_msg |
124 | enlightenment_warning_msg |
| 95 | } |
125 | } |