blob: 2cb0ad84a2cd6cb03860f1830ab126f9d46a1d02 (
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
38
39
40
41
42
43
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/libowfat-0.10.ebuild,v 1.9 2004/02/22 20:05:14 agriffis Exp $
S=${WORKDIR}/${P}
DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein."
SRC_URI="http://www.fefe.de/libowfat/${P}.tar.bz2"
HOMEPAGE="http://www.fefe.de/libowfat/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc"
DEPEND=">=dev-libs/dietlibc-0.16"
src_unpack() {
unpack ${A} ; cd ${S}
mv Makefile Makefile.orig
sed -e "s:^CFLAGS.*:CFLAGS=-I. ${CFLAGS}:" \
-e "s:^DIET.*:DIET=/usr/bin/diet -Os:" \
-e "s:^prefix.*:prefix=/usr:" \
-e "s:^INCLUDEDIR.*:INCLUDEDIR=\${prefix}/include/libowfat:" \
Makefile.orig > Makefile
#patch Makefile to fix a bug in the install section
#this has been submitted upstream and is fixed in cvs
#ie. it should not be necessary for libowfat-0.11 and later
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
emake || die
}
src_install () {
make \
LIBDIR=${D}/usr/lib \
MAN3DIR=${D}/usr/share/man/man3 \
INCLUDEDIR=${D}/usr/include/libowfat \
install || die
}
|