From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C1FAA139082 for ; Wed, 29 Nov 2017 23:19:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1123FE0CC7; Wed, 29 Nov 2017 23:19:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2178E0D20 for ; Wed, 29 Nov 2017 23:19:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0939E3402FE for ; Wed, 29 Nov 2017 23:19:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0CC5AC13 for ; Wed, 29 Nov 2017 23:19:53 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1511997559.ff4926d32c2031a8b959d704fa7a7a0b8b02b843.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libowfat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libowfat/libowfat-0.31-r1.ebuild X-VCS-Directories: dev-libs/libowfat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ff4926d32c2031a8b959d704fa7a7a0b8b02b843 X-VCS-Branch: master Date: Wed, 29 Nov 2017 23:19:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6db116ef-7b59-4a0c-bec0-bfef03e846b9 X-Archives-Hash: b30a34eb6a487c598a4c3975f6890e4d commit: ff4926d32c2031a8b959d704fa7a7a0b8b02b843 Author: Rolf Eike Beer sf-mail de> AuthorDate: Sun Oct 22 18:54:16 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 29 23:19:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff4926d3 dev-libs/libowfat: use DESTDIR Support was added in version 0.31. While at it do some other improvements as suggested by Jonas Stein. Closes: https://bugs.gentoo.org/598980 Closes: https://github.com/gentoo/gentoo/pull/6017 dev-libs/libowfat/libowfat-0.31-r1.ebuild | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/dev-libs/libowfat/libowfat-0.31-r1.ebuild b/dev-libs/libowfat/libowfat-0.31-r1.ebuild new file mode 100644 index 00000000000..8f007a7cef7 --- /dev/null +++ b/dev-libs/libowfat/libowfat-0.31-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit flag-o-matic toolchain-funcs eutils + +DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein" +SRC_URI="https://www.fefe.de/${PN}/${P}.tar.xz" +HOMEPAGE="https://www.fefe.de/libowfat/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~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 \ + DESTDIR="${D}" \ + LIBDIR="/usr/lib" \ + MAN3DIR="/usr/share/man/man3" \ + INCLUDEDIR="/usr/include/libowfat" \ + install + + cd "${D}"/usr/share/man + mv man3/buffer.3 man3/owfat-buffer.3 +}