diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2011-09-02 09:43:32 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2011-09-02 09:43:32 +0000 |
commit | 9daae8d1a80141f008cd8d4879280ce7649eb003 (patch) | |
tree | aebf8a290f13c821e07a1fc7efe81eef057c916d | |
parent | Version bump. Newly updated autoconfig functionality by Jaco Kroon closes bug... (diff) | |
download | gentoo-2-9daae8d1a80141f008cd8d4879280ce7649eb003.tar.gz gentoo-2-9daae8d1a80141f008cd8d4879280ce7649eb003.tar.bz2 gentoo-2-9daae8d1a80141f008cd8d4879280ce7649eb003.zip |
Revision bump. EAPI 4 port by Agostino "ago" Sarubbo in bug #381335.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
-rw-r--r-- | dev-libs/libmcs/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libmcs/libmcs-0.7.1-r3.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-libs/libmcs/ChangeLog b/dev-libs/libmcs/ChangeLog index 576b17ad900a..a28367ce1cd8 100644 --- a/dev-libs/libmcs/ChangeLog +++ b/dev-libs/libmcs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libmcs -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmcs/ChangeLog,v 1.48 2010/01/14 21:32:53 fauli Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmcs/ChangeLog,v 1.49 2011/09/02 09:43:32 chainsaw Exp $ + +*libmcs-0.7.1-r3 (02 Sep 2011) + + 02 Sep 2011; Tony Vroon <chainsaw@gentoo.org> +libmcs-0.7.1-r3.ebuild: + Revision bump. EAPI 4 port by Agostino "ago" Sarubbo in bug #381335. 14 Jan 2010; Christian Faulhammer <fauli@gentoo.org> libmcs-0.7.1-r2.ebuild: diff --git a/dev-libs/libmcs/libmcs-0.7.1-r3.ebuild b/dev-libs/libmcs/libmcs-0.7.1-r3.ebuild new file mode 100644 index 000000000000..2ff44ca921a1 --- /dev/null +++ b/dev-libs/libmcs/libmcs-0.7.1-r3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmcs/libmcs-0.7.1-r3.ebuild,v 1.1 2011/09/02 09:43:32 chainsaw Exp $ + +EAPI=4 + +DESCRIPTION="Abstracts the storage of configuration settings away from applications." +HOMEPAGE="http://sacredspiral.co.uk/~nenolod/mcs/" +SRC_URI="http://distfiles.atheme.org/${P}.tgz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux" +IUSE="gnome" + +RDEPEND=">=dev-libs/libmowgli-0.6.1 + gnome? ( >=gnome-base/gconf-2.6.0 )" +DEPEND=">=dev-util/pkgconfig-0.9.0 + ${RDEPEND}" + +src_configure() { + econf \ + --disable-kconfig \ + $(use_enable gnome gconf) +} + +src_install() { + default + dodoc AUTHORS README TODO +} |