diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2013-04-24 17:50:34 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2013-04-24 17:50:34 +0000 |
commit | b038f0082cb9d9c1f5782548fd051401f85da714 (patch) | |
tree | 4284102d0085670b3ba98ee9cd41f3811f0033a4 /gnustep-libs | |
parent | Disable silent make rules. Fix building with automake-1.13. (diff) | |
download | gentoo-2-b038f0082cb9d9c1f5782548fd051401f85da714.tar.gz gentoo-2-b038f0082cb9d9c1f5782548fd051401f85da714.tar.bz2 gentoo-2-b038f0082cb9d9c1f5782548fd051401f85da714.zip |
Version bump, bugfix release
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Diffstat (limited to 'gnustep-libs')
-rw-r--r-- | gnustep-libs/dbuskit/ChangeLog | 9 | ||||
-rw-r--r-- | gnustep-libs/dbuskit/dbuskit-0.1.1.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/gnustep-libs/dbuskit/ChangeLog b/gnustep-libs/dbuskit/ChangeLog index 9c8e26324471..ef114f7feee4 100644 --- a/gnustep-libs/dbuskit/ChangeLog +++ b/gnustep-libs/dbuskit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnustep-libs/dbuskit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/dbuskit/ChangeLog,v 1.7 2012/06/07 15:09:06 xmw Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/dbuskit/ChangeLog,v 1.8 2013/04/24 17:50:34 voyageur Exp $ + +*dbuskit-0.1.1 (24 Apr 2013) + + 24 Apr 2013; Bernard Cafarelli <voyageur@gentoo.org> +dbuskit-0.1.1.ebuild: + Version bump, bugfix release 07 Jun 2012; Michael Weber <xmw@gentoo.org> dbuskit-0.1.ebuild: ppc stable (bug 410601) diff --git a/gnustep-libs/dbuskit/dbuskit-0.1.1.ebuild b/gnustep-libs/dbuskit/dbuskit-0.1.1.ebuild new file mode 100644 index 000000000000..0759f0c9b82a --- /dev/null +++ b/gnustep-libs/dbuskit/dbuskit-0.1.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/dbuskit/dbuskit-0.1.1.ebuild,v 1.1 2013/04/24 17:50:33 voyageur Exp $ + +EAPI=5 +inherit gnustep-2 + +DESCRIPTION="framework that interfaces Objective-C applications with the D-Bus IPC service" +HOMEPAGE="http://www.gnustep.org" +SRC_URI="http://download.gna.org/gnustep/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=sys-apps/dbus-1.2.1" +RDEPEND="${DEPEND}" + +src_prepare() { + if ! use doc; then + # Remove doc target + sed -i -e "/SUBPROJECTS/s/Documentation//" GNUmakefile \ + || die "doc sed failed" + fi +} |