diff options
author | Sergio D. Rodríguez Inclan (ZeRoX) <srinclan@gmail.com> | 2008-12-10 22:11:30 +0000 |
---|---|---|
committer | Sergio D. Rodríguez Inclan (ZeRoX) <srinclan@gmail.com> | 2008-12-10 22:11:30 +0000 |
commit | e3f077fa05edd379e2969671f8ed2c9a61b74b0d (patch) | |
tree | e3377f525fd78df44e954dc294f6b6258d900d71 | |
parent | media-radio/qrq: New ebuild for media-radio/qrq (bug 250521). Thanks to scara... (diff) | |
download | sunrise-e3f077fa05edd379e2969671f8ed2c9a61b74b0d.tar.gz sunrise-e3f077fa05edd379e2969671f8ed2c9a61b74b0d.tar.bz2 sunrise-e3f077fa05edd379e2969671f8ed2c9a61b74b0d.zip |
net-im/qwit: New ebuild for bug 250562. Thanks to Scarabeus and Tommy.
svn path=/sunrise/; revision=7480
-rw-r--r-- | net-im/qwit/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/qwit/Manifest | 4 | ||||
-rw-r--r-- | net-im/qwit/metadata.xml | 5 | ||||
-rw-r--r-- | net-im/qwit/qwit-0.6.ebuild | 26 |
4 files changed, 43 insertions, 0 deletions
diff --git a/net-im/qwit/ChangeLog b/net-im/qwit/ChangeLog new file mode 100644 index 000000000..e6821ac35 --- /dev/null +++ b/net-im/qwit/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-im/qwit +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 10 Dec 2008; Sergio D. Rodríguez Inclan (ZeRoX) <srinclan@gmail.com> + +qwit-0.6.ebuild, +metadata.xml: + New ebuild for bug 250562. Thanks to Scarabeus and Tommy. + diff --git a/net-im/qwit/Manifest b/net-im/qwit/Manifest new file mode 100644 index 000000000..3a9fcf8d7 --- /dev/null +++ b/net-im/qwit/Manifest @@ -0,0 +1,4 @@ +DIST qwit-0.6-src.tar.bz2 20104 RMD160 ba5e5295f07db769e9281007ea7f3bfa7326569a SHA1 49d3354e652aee049618813ab1f97fa36473b92e SHA256 19c331fb1493798dc828cec4837cd6ee33745778bc7fb0cb5fa2b672a2728ca7 +EBUILD qwit-0.6.ebuild 533 RMD160 2dfc6c6cf0f84659a0ad1ad801b1e161f9bcc5ac SHA1 a8bdc2a83bd2953629d711cdd3746f6090151d77 SHA256 37eca518661a2dfef333b5d8b92ee14cd61f68f1cf7a59f4c60f4264e7d7b776 +MISC ChangeLog 280 RMD160 19b43b02ce6c3ddca4ef427c970fe492230725fe SHA1 a7374880195167919fe2267f802dee8dbeacc22a SHA256 fddbf9aad6330bdbf5a90eaf64e00234de3299092107a8dd34d2e484d06f8b4c +MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/net-im/qwit/metadata.xml b/net-im/qwit/metadata.xml new file mode 100644 index 000000000..7e3286984 --- /dev/null +++ b/net-im/qwit/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>maintainer-wanted</herd> +</pkgmetadata> diff --git a/net-im/qwit/qwit-0.6.ebuild b/net-im/qwit/qwit-0.6.ebuild new file mode 100644 index 000000000..807691bea --- /dev/null +++ b/net-im/qwit/qwit-0.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="1" + +inherit qt4 + +MY_P=${P}-src + +DESCRIPTION="Qt4 cross-platform client for Twitter." +HOMEPAGE="http://code.google.com/p/qwit/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="|| ( ( x11-libs/qt-core x11-libs/qt-gui ) x11-libs/qt:4 )" + +S=${WORKDIR}/${MY_P} + +src_install(){ + emake INSTALL_ROOT="${D}" install || die "Install failed" +} |