You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libowfat/libowfat-0.24.ebuild

41 lines
1.0 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libowfat/libowfat-0.24.ebuild,v 1.7 2011/11/20 09:17:01 xarthisius Exp $
DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein."
SRC_URI="http://dl.fefe.de/${P}.tar.bz2"
HOMEPAGE="http://www.fefe.de/libowfat/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 sparc x86"
IUSE=""
DEPEND=">=dev-libs/dietlibc-0.23
>=sys-apps/sed-4"
RDEPEND=">=dev-libs/dietlibc-0.23"
src_unpack() {
unpack ${A} ; cd ${S}
sed -i -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:" \
GNUmakefile
}
src_compile() {
emake || die
}
src_install () {
make \
LIBDIR=${D}/usr/lib \
MAN3DIR=${D}/usr/share/man/man3 \
INCLUDEDIR=${D}/usr/include/libowfat \
install || die "make install failed"
cd "${D}"/usr/share/man
mv man3/buffer.3 man3/owfat-buffer.3
}