diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-05-11 09:09:00 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-05-11 09:09:00 +0000 |
commit | 5bd89eee99c21137fdb9d6e73b33b7f5f5924777 (patch) | |
tree | ebab2a4f8fa9232ff9fd58097044014cadda1722 /x11-misc | |
parent | Convert built_with_use to use deps. #261562 (diff) | |
download | historical-5bd89eee99c21137fdb9d6e73b33b7f5f5924777.tar.gz historical-5bd89eee99c21137fdb9d6e73b33b7f5f5924777.tar.bz2 historical-5bd89eee99c21137fdb9d6e73b33b7f5f5924777.zip |
Initial commit. Ebuild based on live ebuild in qt overlay.
Package-Manager: portage-2.2.0_alpha103/cvs/Linux x86_64
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/ptbatterysystemtray/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/ptbatterysystemtray/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/ptbatterysystemtray/metadata.xml | 5 | ||||
-rw-r--r-- | x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild | 30 |
4 files changed, 49 insertions, 0 deletions
diff --git a/x11-misc/ptbatterysystemtray/ChangeLog b/x11-misc/ptbatterysystemtray/ChangeLog new file mode 100644 index 000000000000..39276fffa8e5 --- /dev/null +++ b/x11-misc/ptbatterysystemtray/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/ptbatterysystemtray +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ptbatterysystemtray/ChangeLog,v 1.1 2012/05/11 09:09:00 yngwin Exp $ + +*ptbatterysystemtray-1.0.0_rc2 (11 May 2012) + + 11 May 2012; Ben de Groot <yngwin@gentoo.org> +metadata.xml, + +ptbatterysystemtray-1.0.0_rc2.ebuild: + Initial commit. Ebuild based on live ebuild in qt overlay. + diff --git a/x11-misc/ptbatterysystemtray/Manifest b/x11-misc/ptbatterysystemtray/Manifest new file mode 100644 index 000000000000..597aaf8f0d35 --- /dev/null +++ b/x11-misc/ptbatterysystemtray/Manifest @@ -0,0 +1,4 @@ +DIST ptbatterysystemtray-1.0.0_rc2.tar.gz 234884 RMD160 9359614801642deb508fc5c0965f13ab58bb106e SHA1 70c6dbd21cb0a682a14aaf04f4356f106b9978ae SHA256 c28e43e9157df74c7e4599485c24fe8dc79201133c56d7d72f3e4eda5def12f4 +EBUILD ptbatterysystemtray-1.0.0_rc2.ebuild 723 RMD160 82f93031a6fc1dd1876b16f5a03e0f4445b3a3d0 SHA1 0e691d354208420bb4dde27ad282d63d35b0ebc1 SHA256 4e9fdcb5689efbf917577b1fcfce3acd93ab9da01eab0c48dcf591663727c46a +MISC ChangeLog 441 RMD160 7ff992e9dc879e31d71a3fe21c0e6271d60bf562 SHA1 1c9d53379631e228be5a318ff61daffc66f210c1 SHA256 7c8ebb2b0a21649ad8a354e52593a92c4f38d94c8209792b899a87f5db60ddce +MISC metadata.xml 155 RMD160 654eebe07944b4d18c58e4a54c50758eceead53e SHA1 967490b59f5185a6849cb5583390dd0d0b0dd512 SHA256 94ed5876ef16dbc191744ff6b8939a0f428fcb8add316d898880e1c4c880b9e7 diff --git a/x11-misc/ptbatterysystemtray/metadata.xml b/x11-misc/ptbatterysystemtray/metadata.xml new file mode 100644 index 000000000000..dc439f7e84f5 --- /dev/null +++ b/x11-misc/ptbatterysystemtray/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>qt</herd> +</pkgmetadata> diff --git a/x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild b/x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild new file mode 100644 index 000000000000..e6bb2c0b3cac --- /dev/null +++ b/x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild,v 1.1 2012/05/11 09:09:00 yngwin Exp $ + +EAPI=4 + +inherit qt4-r2 + +DESCRIPTION="A simple battery monitor in the system tray" +HOMEPAGE="https://gitorious.org/ptbatterysystemtray" +SRC_URI="https://gitorious.org/${PN}/${PN}/archive-tarball/${PV/_/-} -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="debug" + +DEPEND="x11-libs/qt-gui:4" +RDEPEND="${DEPEND}" + +DOCS="AUTHORS ChangeLog README" + +src_unpack() { + default + mv ${PN}-${PN} "${S}" || die +} + +src_configure() { + eqmake4 ${PN}.pro INSTALL_PREFIX=/usr +} |