diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-11-02 18:25:33 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-11-02 18:25:33 +0000 |
commit | d111111ab7a4939a366ecc4d485b1bf266fb2b38 (patch) | |
tree | 6e67eed6cf049e18214b532de97f1999d6398b2e /dev-libs/sord | |
parent | remove old (diff) | |
download | gentoo-2-d111111ab7a4939a366ecc4d485b1bf266fb2b38.tar.gz gentoo-2-d111111ab7a4939a366ecc4d485b1bf266fb2b38.tar.bz2 gentoo-2-d111111ab7a4939a366ecc4d485b1bf266fb2b38.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-libs/sord')
-rw-r--r-- | dev-libs/sord/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/sord/sord-0.12.2.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-libs/sord/ChangeLog b/dev-libs/sord/ChangeLog index d894bb185927..3527c06c20cb 100644 --- a/dev-libs/sord/ChangeLog +++ b/dev-libs/sord/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/sord # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/sord/ChangeLog,v 1.12 2014/11/02 18:23:48 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/sord/ChangeLog,v 1.13 2014/11/02 18:25:33 aballier Exp $ + +*sord-0.12.2 (02 Nov 2014) + + 02 Nov 2014; Alexis Ballier <aballier@gentoo.org> +sord-0.12.2.ebuild: + version bump 02 Nov 2014; Alexis Ballier <aballier@gentoo.org> -sord-0.5.0.ebuild, -sord-0.8.0.ebuild, -files/ldconfig.patch: diff --git a/dev-libs/sord/sord-0.12.2.ebuild b/dev-libs/sord/sord-0.12.2.ebuild new file mode 100644 index 000000000000..d45110efdbfd --- /dev/null +++ b/dev-libs/sord/sord-0.12.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/sord/sord-0.12.2.ebuild,v 1.1 2014/11/02 18:25:33 aballier Exp $ + +EAPI=4 + +inherit waf-utils + +DESCRIPTION="Library for storing RDF data in memory" +HOMEPAGE="http://drobilla.net/software/sord/" +SRC_URI="http://download.drobilla.net/${P}.tar.bz2" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc static-libs test" + +RDEPEND=">=dev-libs/serd-0.14.0" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + virtual/pkgconfig" + +DOCS=( "AUTHORS" "NEWS" "README" ) + +src_prepare() { + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die +} + +src_configure() { + waf-utils_src_configure \ + --docdir=/usr/share/doc/${PF} \ + $(use test && echo "--test") \ + $(use doc && echo "--docs") \ + $(use static-libs && echo "--static") +} + +src_test() { + ./waf test || die +} |