diff options
author | Maxim Koltsov <maksbotan@gentoo.org> | 2011-11-26 19:37:34 +0000 |
---|---|---|
committer | Maxim Koltsov <maksbotan@gentoo.org> | 2011-11-26 19:37:34 +0000 |
commit | 1c2e8e0306e6520b57b1e14581aec9b6a0fcb90e (patch) | |
tree | 3bd194409b83c217de9bd5d795e8c3bf54c79ccc /dev-libs/libee | |
parent | Version bump. (diff) | |
download | historical-1c2e8e0306e6520b57b1e14581aec9b6a0fcb90e.tar.gz historical-1c2e8e0306e6520b57b1e14581aec9b6a0fcb90e.tar.bz2 historical-1c2e8e0306e6520b57b1e14581aec9b6a0fcb90e.zip |
Bumped to 0.3.2. Thanks to slepnoga
Package-Manager: portage-2.1.10.33/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/libee')
-rw-r--r-- | dev-libs/libee/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libee/libee-0.3.2.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-libs/libee/ChangeLog b/dev-libs/libee/ChangeLog index 3e8227ca17ac..ce2bfdd22428 100644 --- a/dev-libs/libee/ChangeLog +++ b/dev-libs/libee/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libee # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/ChangeLog,v 1.2 2011/09/18 10:49:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/ChangeLog,v 1.3 2011/11/26 19:33:47 maksbotan Exp $ + +*libee-0.3.2 (26 Nov 2011) + + 26 Nov 2011; Maxim Koltsov <maksbotan@gentoo.org> +libee-0.3.2.ebuild: + Bumped to 0.3.2. Thanks to slepnoga 18 Sep 2011; Michał Górny <mgorny@gentoo.org> libee-0.3.1.ebuild, metadata.xml: diff --git a/dev-libs/libee/libee-0.3.2.ebuild b/dev-libs/libee/libee-0.3.2.ebuild new file mode 100644 index 000000000000..c9861b2f75f0 --- /dev/null +++ b/dev-libs/libee/libee-0.3.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libee/libee-0.3.2.ebuild,v 1.1 2011/11/26 19:33:47 maksbotan Exp $ + +EAPI=4 + +AUTOTOOLS_IN_SOURCE_BUILD=1 +inherit autotools-utils + +DESCRIPTION="An Event Expression Library inspired by CEE" +HOMEPAGE="http://www.libee.org" +SRC_URI="http://www.libee.org/files/download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~amd64-linux ~x86" +IUSE="debug static-libs" + +DEPEND="dev-libs/libxml2 + dev-libs/libestr" +RDEPEND="${DEPEND}" + +DOCS=(INSTALL ChangeLog) + +src_configure() { + local myeconfargs=( + $(use_enable debug) + --enable-testbench + ) + autotools-utils_src_configure +} + +src_compile() { + emake -j1 +} |