Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 1558

Summary: libowfat ebuild (new)
Product: Gentoo Linux Reporter: Thilo Bangert (RETIRED) (RETIRED) <bangert>
Component: New packagesAssignee: Thilo Bangert (RETIRED) (RETIRED) <bangert>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
URL: http://www.fizzelpark.com/portage/dev-libs/libowfat/libowfat-0.10.ebuild
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on: 1557    
Bug Blocks: 1559    

Description Thilo Bangert (RETIRED) (RETIRED) gentoo-dev 2002-04-05 16:09:24 UTC
this is the libowfat library from felix von leitner (of dietlibc) fame - its a
gpl reimplementation of daniel bernsteins libraries... i only tested this with
the recent dietlibc (bug #1557)
http://www.fizzelpark.com/portage/dev-libs/libowfat/libowfat-0.10.ebuild
---
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Author: Thilo Bangert <thilo.bangert@gmx.net>
# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin 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/"

DEPEND="dev-libs/dietlibc"

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
}