Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1558 - libowfat ebuild (new)
Summary: libowfat ebuild (new)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High enhancement (vote)
Assignee: Thilo Bangert (RETIRED) (RETIRED)
URL: http://www.fizzelpark.com/portage/dev...
Whiteboard:
Keywords:
Depends on: 1557
Blocks: 1559
  Show dependency tree
 
Reported: 2002-04-05 16:09 UTC by Thilo Bangert (RETIRED) (RETIRED)
Modified: 2002-04-16 07:41 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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
}