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