diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-10-23 20:37:41 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-10-23 20:37:41 +0000 |
commit | 4ec46585023ba9484c291a38fc671b2caeed7d9d (patch) | |
tree | dbebe2eee6e444bc50c40e2ce0cfc0b063b3737e /app-mobilephone | |
parent | Initial import, ebuild by me. (diff) | |
download | gentoo-2-4ec46585023ba9484c291a38fc671b2caeed7d9d.tar.gz gentoo-2-4ec46585023ba9484c291a38fc671b2caeed7d9d.tar.bz2 gentoo-2-4ec46585023ba9484c291a38fc671b2caeed7d9d.zip |
Version bump
(Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key B4AFF2C2)
Diffstat (limited to 'app-mobilephone')
-rw-r--r-- | app-mobilephone/anyremote/ChangeLog | 7 | ||||
-rw-r--r-- | app-mobilephone/anyremote/anyremote-6.1.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/app-mobilephone/anyremote/ChangeLog b/app-mobilephone/anyremote/ChangeLog index 4198a629c78b..31cbcab0e2c8 100644 --- a/app-mobilephone/anyremote/ChangeLog +++ b/app-mobilephone/anyremote/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-mobilephone/anyremote # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/anyremote/ChangeLog,v 1.28 2012/10/13 20:06:04 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/anyremote/ChangeLog,v 1.29 2012/10/23 20:37:41 hwoarang Exp $ + +*anyremote-6.1.1 (23 Oct 2012) + + 23 Oct 2012; Markos Chandras <hwoarang@gentoo.org> +anyremote-6.1.1.ebuild: + Version bump *anyremote-6.1 (13 Oct 2012) diff --git a/app-mobilephone/anyremote/anyremote-6.1.1.ebuild b/app-mobilephone/anyremote/anyremote-6.1.1.ebuild new file mode 100644 index 000000000000..d7784ef6fc9f --- /dev/null +++ b/app-mobilephone/anyremote/anyremote-6.1.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/anyremote/anyremote-6.1.1.ebuild,v 1.1 2012/10/23 20:37:41 hwoarang Exp $ + +EAPI="4" + +DESCRIPTION="Anyremote provides wireless bluetooth, infrared or cable remote control service" +HOMEPAGE="http://anyremote.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="bluetooth dbus" + +RDEPEND="bluetooth? ( net-wireless/bluez ) + dbus? ( sys-apps/dbus ) + x11-libs/libXtst" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=(AUTHORS ChangeLog NEWS README) +src_configure() { + econf --docdir="/usr/share/doc/${PF}/" $(use_enable bluetooth) $(use_enable dbus) +} |