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 0B8A4138336 for ; Fri, 2 Nov 2018 14:34:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2D30E0821; Fri, 2 Nov 2018 14:34:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CA7C9E0821 for ; Fri, 2 Nov 2018 14:34:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A7CB7335C5D for ; Fri, 2 Nov 2018 14:34:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3634435 for ; Fri, 2 Nov 2018 14:33:58 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1541169232.5d4cc04ca85a003204616ab3a484b40822f6ebc6.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cgilib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cgilib/cgilib-0.7-r1.ebuild X-VCS-Directories: dev-libs/cgilib/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 5d4cc04ca85a003204616ab3a484b40822f6ebc6 X-VCS-Branch: master Date: Fri, 2 Nov 2018 14:33:58 +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: e04de73a-5906-414c-8428-c65671711a8c X-Archives-Hash: 950bde8b661e81e4ee0186240de8f34c commit: 5d4cc04ca85a003204616ab3a484b40822f6ebc6 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Nov 2 11:48:00 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Nov 2 14:33:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d4cc04c dev-libs/cgilib: Drop autotools-utils.eclass Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Jeroen Roovers gentoo.org> dev-libs/cgilib/cgilib-0.7-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-libs/cgilib/cgilib-0.7-r1.ebuild b/dev-libs/cgilib/cgilib-0.7-r1.ebuild new file mode 100644 index 00000000000..1f29dddb4b3 --- /dev/null +++ b/dev-libs/cgilib/cgilib-0.7-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="A simple and lightweight interface to the CGI for C and C++ programs" +HOMEPAGE="http://www.infodrom.org/projects/cgilib/" +SRC_URI="${HOMEPAGE}download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="static-libs" + +DOCS=( AUTHORS ChangeLog README cookies.txt ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +}