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 02152138A1A for ; Thu, 22 Jan 2015 00:09:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F28FE08F4; Thu, 22 Jan 2015 00:09:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 963EDE0872 for ; Thu, 22 Jan 2015 00:09:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C19AE340719 for ; Thu, 22 Jan 2015 00:09:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECDD110177 for ; Thu, 22 Jan 2015 00:09:39 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1421696955.9c5920bd0f2562a6647d60dc9d5db1c4a535b2a6.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-libs/mxml/ X-VCS-Repository: proj/sci X-VCS-Files: dev-libs/mxml/metadata.xml dev-libs/mxml/mxml-2.9.ebuild X-VCS-Directories: dev-libs/mxml/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 9c5920bd0f2562a6647d60dc9d5db1c4a535b2a6 X-VCS-Branch: master Date: Thu, 22 Jan 2015 00:09:39 +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: bb746ede-8ae2-4d37-8432-beaf1231e5a1 X-Archives-Hash: 164e07e6a12a5ee52a7878fd8289eed1 commit: 9c5920bd0f2562a6647d60dc9d5db1c4a535b2a6 Author: Chris Kerr dasganma tk> AuthorDate: Mon Jan 19 19:49:15 2015 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Jan 19 19:49:15 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9c5920bd New ebuild for mxml (Mini-XML) --- dev-libs/mxml/metadata.xml | 14 ++++++++++++++ dev-libs/mxml/mxml-2.9.ebuild | 19 +++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-libs/mxml/metadata.xml b/dev-libs/mxml/metadata.xml new file mode 100644 index 0000000..1fc0a4f --- /dev/null +++ b/dev-libs/mxml/metadata.xml @@ -0,0 +1,14 @@ + + + +sci + + cjk34@cam.ac.uk + Chris Kerr + I don't develop this software, I'm just a Gentoo user who + wanted to install it + +Mini-XML is a lightweight, ultra-portable XML library + that requires only an ANSI C compiler and a 'make' program. + + diff --git a/dev-libs/mxml/mxml-2.9.ebuild b/dev-libs/mxml/mxml-2.9.ebuild new file mode 100644 index 0000000..548ae36 --- /dev/null +++ b/dev-libs/mxml/mxml-2.9.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +DESCRIPTION="Mini-XML: A lightweight ANSI C XML library" +HOMEPAGE="http://www.msweet.org/projects.php?Z3" +SRC_URI="http://www.msweet.org/files/project3/${P}.tar.gz" + +LICENSE="LGPL-2-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +src_install() { + emake install DSTROOT="${D}" + dodoc README ANNOUNCEMENT CHANGES +}