diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2010-05-07 10:21:56 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2010-05-07 10:21:56 +0000 |
commit | a14fe1101912b3df281d2564ef663b5c774ebc0b (patch) | |
tree | 1b16a961a6fc5843aa4aca616b0d27b2ca1a6a12 /dev-libs/libyaml | |
parent | Version bump for dev channel release. (diff) | |
download | gentoo-2-a14fe1101912b3df281d2564ef663b5c774ebc0b.tar.gz gentoo-2-a14fe1101912b3df281d2564ef663b5c774ebc0b.tar.bz2 gentoo-2-a14fe1101912b3df281d2564ef663b5c774ebc0b.zip |
version bump, solving bug #308247.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libyaml')
-rw-r--r-- | dev-libs/libyaml/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libyaml/libyaml-0.1.3.ebuild | 37 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-libs/libyaml/ChangeLog b/dev-libs/libyaml/ChangeLog index b96e0dbc1128..608edabdaeba 100644 --- a/dev-libs/libyaml/ChangeLog +++ b/dev-libs/libyaml/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libyaml # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.10 2010/01/14 21:39:14 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.11 2010/05/07 10:21:56 sbriesen Exp $ + +*libyaml-0.1.3 (07 May 2010) + + 07 May 2010; Stefan Briesenick <sbriesen@gentoo.org> + +libyaml-0.1.3.ebuild: + version bump, solving bug #308247. 14 Jan 2010; Christian Faulhammer <fauli@gentoo.org> libyaml-0.1.2.ebuild: Transfer Prefix keywords diff --git a/dev-libs/libyaml/libyaml-0.1.3.ebuild b/dev-libs/libyaml/libyaml-0.1.3.ebuild new file mode 100644 index 000000000000..ee3647728a4f --- /dev/null +++ b/dev-libs/libyaml/libyaml-0.1.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.3.ebuild,v 1.1 2010/05/07 10:21:56 sbriesen Exp $ + +EAPI="2" + +inherit eutils + +MY_P="${P/lib}" + +DESCRIPTION="YAML 1.1 parser and emitter written in C" +HOMEPAGE="http://pyyaml.org/wiki/LibYAML" +SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-linux ~x86-macos" +IUSE="doc examples test" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # conditionally remove tests + if use test ; then + sed -i -e 's: tests::g' Makefile* + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + use doc && dohtml -r doc/html/. + dodoc README + if use examples ; then + insinto /usr/share/doc/${PF}/examples + doins tests/example-*.c + fi +} |