diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-04-13 12:25:21 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-04-13 12:25:21 +0000 |
commit | ad6b7bd5abd90734ef8d6b51f6bd9d6e26e1dc30 (patch) | |
tree | 440e30ba6bf0b456fd4901e3ead56554c7219ed9 /x11-misc | |
parent | Stable for amd64, wrt bug #465674 (diff) | |
download | gentoo-2-ad6b7bd5abd90734ef8d6b51f6bd9d6e26e1dc30.tar.gz gentoo-2-ad6b7bd5abd90734ef8d6b51f6bd9d6e26e1dc30.tar.bz2 gentoo-2-ad6b7bd5abd90734ef8d6b51f6bd9d6e26e1dc30.zip |
version bump
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/cbatticon/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/cbatticon/cbatticon-1.1.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/x11-misc/cbatticon/ChangeLog b/x11-misc/cbatticon/ChangeLog index 221b7622e8f7..f7945307a2f4 100644 --- a/x11-misc/cbatticon/ChangeLog +++ b/x11-misc/cbatticon/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/cbatticon # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/cbatticon/ChangeLog,v 1.1 2013/03/10 20:29:27 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/cbatticon/ChangeLog,v 1.2 2013/04/13 12:25:21 hasufell Exp $ + +*cbatticon-1.1 (13 Apr 2013) + + 13 Apr 2013; Julian Ospald <hasufell@gentoo.org> +cbatticon-1.1.ebuild: + version bump *cbatticon-1.0 (10 Mar 2013) diff --git a/x11-misc/cbatticon/cbatticon-1.1.ebuild b/x11-misc/cbatticon/cbatticon-1.1.ebuild new file mode 100644 index 000000000000..e6314c895138 --- /dev/null +++ b/x11-misc/cbatticon/cbatticon-1.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/cbatticon/cbatticon-1.1.ebuild,v 1.1 2013/04/13 12:25:21 hasufell Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="A GTK+ battery icon which uses libudev to be lightweight and fast" +HOMEPAGE="https://github.com/ColinJones/cbatticon" +SRC_URI="https://github.com/ColinJones/cbatticon/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + x11-libs/libnotify + virtual/udev" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_compile() { + tc-export CC + emake V=1 VERSION="${PF}" +} + +src_install() { + emake DESTDIR="${D}" V=1 VERSION="${PF}" install +} |