diff options
author | 2014-01-12 00:23:07 +0000 | |
---|---|---|
committer | 2014-01-12 00:23:07 +0000 | |
commit | 52aaa4dab6552eb9fec28bc6bc0845f4b55e7288 (patch) | |
tree | 3abd2dfc7256b4e9d8896466121ca354f3abacb0 /net-im/dianara | |
parent | Add ~ia64. (diff) | |
download | gentoo-2-52aaa4dab6552eb9fec28bc6bc0845f4b55e7288.tar.gz gentoo-2-52aaa4dab6552eb9fec28bc6bc0845f4b55e7288.tar.bz2 gentoo-2-52aaa4dab6552eb9fec28bc6bc0845f4b55e7288.zip |
version bump
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'net-im/dianara')
-rw-r--r-- | net-im/dianara/ChangeLog | 9 | ||||
-rw-r--r-- | net-im/dianara/dianara-1.1.ebuild | 67 |
2 files changed, 74 insertions, 2 deletions
diff --git a/net-im/dianara/ChangeLog b/net-im/dianara/ChangeLog index 10683798c2a1..cc8a45c96094 100644 --- a/net-im/dianara/ChangeLog +++ b/net-im/dianara/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/dianara -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/dianara/ChangeLog,v 1.4 2013/12/14 11:33:49 hasufell Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/dianara/ChangeLog,v 1.5 2014/01/12 00:23:07 hasufell Exp $ + +*dianara-1.1 (12 Jan 2014) + + 12 Jan 2014; Julian Ospald <hasufell@gentoo.org> +dianara-1.1.ebuild: + version bump *dianara-1.0 (14 Dec 2013) diff --git a/net-im/dianara/dianara-1.1.ebuild b/net-im/dianara/dianara-1.1.ebuild new file mode 100644 index 000000000000..1c8ed2356d6a --- /dev/null +++ b/net-im/dianara/dianara-1.1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/dianara/dianara-1.1.ebuild,v 1.1 2014/01/12 00:23:07 hasufell Exp $ + +EAPI=5 + +inherit eutils gnome2-utils qt4-r2 + +MY_P=${PN}-v${PV/_beta/beta} +DESCRIPTION="Qt-based client for the pump.io distributed social network" +HOMEPAGE="http://dianara.nongnu.org/" +SRC_URI="mirror://nongnu/dianara/${MY_P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-crypt/qca:2 + app-crypt/qca-ossl:2 + dev-qt/qtdbus:4 + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-libs/qjson + dev-libs/qoauth" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + default +} + +src_prepare() { + default +} + +src_configure() { + eqmake4 +} + +src_compile() { + default +} + +src_install() { + emake INSTALL_ROOT="${D}" install + + doman manual/* + dodoc README TODO CHANGELOG BUGS + doicon -s 32 icon/32x32/${PN}.png + doicon -s 64 icon/64x64/${PN}.png + domenu ${PN}.desktop +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |