From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 786A413829C for ; Sat, 11 Jun 2016 01:04:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CCE7254031; Sat, 11 Jun 2016 01:04:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E120C254031 for ; Sat, 11 Jun 2016 01:04:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 716D6340A9C for ; Sat, 11 Jun 2016 01:03:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E3771AE8 for ; Sat, 11 Jun 2016 01:03:55 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1465607167.7621bfc0e2a03921b2ca981c7eb7aaef185d19e1.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/argp-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/argp-standalone/argp-standalone-1.3-r1.ebuild X-VCS-Directories: sys-libs/argp-standalone/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7621bfc0e2a03921b2ca981c7eb7aaef185d19e1 X-VCS-Branch: master Date: Sat, 11 Jun 2016 01:03:55 +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: 6b6620d8-9351-4ff7-8223-754a2ecccf37 X-Archives-Hash: f117210d672e4dba6fadf68f1832c46a commit: 7621bfc0e2a03921b2ca981c7eb7aaef185d19e1 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Jun 11 01:05:49 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Jun 11 01:06:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7621bfc0 sys-libs/argp-standalone: build with gcc6, bug #582776 Package-Manager: portage-2.2.28 .../argp-standalone/argp-standalone-1.3-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/sys-libs/argp-standalone/argp-standalone-1.3-r1.ebuild b/sys-libs/argp-standalone/argp-standalone-1.3-r1.ebuild new file mode 100644 index 0000000..17c1c57 --- /dev/null +++ b/sys-libs/argp-standalone/argp-standalone-1.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils flag-o-matic + +DESCRIPTION="Standalone argp library for use with uclibc" +HOMEPAGE="http://www.lysator.liu.se/~nisse/misc/" +SRC_URI="http://www.lysator.liu.se/~nisse/misc/argp-standalone-1.3.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~mips ~ppc ~s390 ~sh ~x86" +IUSE="" + +DEPEND="!sys-libs/glibc" + +src_prepare() { + epatch "${FILESDIR}/${P}-throw-in-funcdef.patch" +} + +src_configure() { + append-cflags -fgnu89-inline + default +} + +src_install() { + dolib.a libargp.a + + insinto /usr/include + doins argp.h +}