blob: 22b60caea376067134ca2f40aeb66a8b43493552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ewd/ewd-0.0.1.20030220-r1.ebuild,v 1.1 2003/03/20 13:32:44 vladimir Exp $
DESCRIPTION="library providing thread-safe basic data structures like hashes, lists and trees"
HOMEPAGE="http://www.enlightenment.org/pages/ewd.html"
SRC_URI="mirror://gentoo/${P}.tar.bz2
http://wh0rd.tk/gentoo/distfiles/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~ppc ~alpha"
IUSE=""
DEPEND="virtual/glibc
sys-devel/gcc"
S=${WORKDIR}/${PN}
pkg_setup() {
# the stupid gettextize script prevents non-interactive mode, so we hax it
cp `which gettextize` ${T} || die "could not copy gettextize"
cp ${T}/gettextize ${T}/gettextize.old
sed -e 's:read dummy < /dev/tty::' ${T}/gettextize.old > ${T}/gettextize
}
src_compile() {
env PATH="${T}:${PATH}" WANT_AUTOCONF_2_5=1 NOCONFIGURE=yes ./autogen.sh || die
econf --with-gnu-ld || die
emake || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc AUTHORS ChangeLog NEWS README
dohtml -r doc
}
|