diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-01-19 10:27:40 +0100 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-01-19 10:27:40 +0100 |
commit | d084925cb26f58df36ad9acc460bc9079afea117 (patch) | |
tree | 880f6f8499c9654f2f6335b1f74f5f0cc47e9684 /dev-libs/libowfat/libowfat-0.30.ebuild | |
parent | net-irc/irker: Bump (diff) | |
download | gentoo-d084925cb26f58df36ad9acc460bc9079afea117.tar.gz gentoo-d084925cb26f58df36ad9acc460bc9079afea117.tar.bz2 gentoo-d084925cb26f58df36ad9acc460bc9079afea117.zip |
dev-libs/libowfat: Bump #571296
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-libs/libowfat/libowfat-0.30.ebuild')
-rw-r--r-- | dev-libs/libowfat/libowfat-0.30.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-libs/libowfat/libowfat-0.30.ebuild b/dev-libs/libowfat/libowfat-0.30.ebuild new file mode 100644 index 000000000000..1a7df932d040 --- /dev/null +++ b/dev-libs/libowfat/libowfat-0.30.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit flag-o-matic toolchain-funcs eutils + +DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein" +SRC_URI="http://www.fefe.de/libowfat/${P}.tar.xz" +HOMEPAGE="http://www.fefe.de/libowfat/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="diet" + +RDEPEND="diet? ( >=dev-libs/dietlibc-0.33_pre20090721 )" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +pkg_setup() { + # Required for mult/umult64.c to be usable + append-flags -fomit-frame-pointer +} + +src_compile() { + emake -j1 \ + CC=$(tc-getCC) \ + CFLAGS="-I. ${CFLAGS}" \ + DIET="/usr/bin/diet -Os" \ + prefix=/usr \ + INCLUDEDIR=/usr/include/libowfat \ + $( use diet || echo 'DIET=' ) +} + +src_install () { + emake -j1 \ + LIBDIR="${D}/usr/lib" \ + MAN3DIR="${D}/usr/share/man/man3" \ + INCLUDEDIR="${D}/usr/include/libowfat" \ + install || die "emake install failed" + + cd "${D}"/usr/share/man + mv man3/buffer.3 man3/owfat-buffer.3 +} |