| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.47 2005/05/27 02:20:52 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.48 2005/06/01 22:13:02 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: vapier@gentoo.org |
5 | # Author: vapier@gentoo.org |
| 6 | |
6 | |
| 7 | inherit eutils |
7 | inherit eutils |
| 8 | |
8 | |
| … | |
… | |
| 105 | PATH="${T}:${PATH}" \ |
105 | PATH="${T}:${PATH}" \ |
| 106 | NOCONFIGURE=yes \ |
106 | NOCONFIGURE=yes \ |
| 107 | USER=blah \ |
107 | USER=blah \ |
| 108 | ./autogen.sh \ |
108 | ./autogen.sh \ |
| 109 | || enlightenment_die "autogen failed" |
109 | || enlightenment_die "autogen failed" |
|
|
110 | # symlinked files will cause sandbox violation |
|
|
111 | for x in config.{guess,sub} ; do |
|
|
112 | [[ ! -L ${x} ]] && continue |
|
|
113 | rm -f ${x} |
|
|
114 | touch ${x} |
|
|
115 | done |
| 110 | if [[ ! -z ${EHACKLIBLTDL} ]] ; then |
116 | if [[ ! -z ${EHACKLIBLTDL} ]] ; then |
| 111 | cd libltdl |
117 | cd libltdl |
| 112 | autoconf || enlightenment_die "autogen in libltdl failed" |
118 | autoconf || enlightenment_die "autogen in libltdl failed" |
| 113 | cd .. |
119 | cd .. |
| 114 | fi |
120 | fi |