diff options
author | Justus Ranvier <justusranvier@tormail.org> | 2013-01-13 09:40:12 -0600 |
---|---|---|
committer | Justus Ranvier <justusranvier@tormail.org> | 2013-01-13 09:40:12 -0600 |
commit | 7c25a79efdff3be0fc9e7d4346f986861ed84dd2 (patch) | |
tree | 5b185df7e68a73992e4a3d22125a56610d45500e | |
parent | Update armory-9999 to use testing branch (diff) | |
download | jranvier-7c25a79efdff3be0fc9e7d4346f986861ed84dd2.tar.gz jranvier-7c25a79efdff3be0fc9e7d4346f986861ed84dd2.tar.bz2 jranvier-7c25a79efdff3be0fc9e7d4346f986861ed84dd2.zip |
add ebuild for v0.87-beta
-rw-r--r-- | net-misc/armory/armory-0.87.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net-misc/armory/armory-0.87.ebuild b/net-misc/armory/armory-0.87.ebuild new file mode 100644 index 0000000..8b87014 --- /dev/null +++ b/net-misc/armory/armory-0.87.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit git-2 + +DESCRIPTION="Armory is an advanced Bitcoin client" +HOMEPAGE="http://bitcoinarmory.com/" + +EGIT_REPO_URI="git://github.com/etotheipi/BitcoinArmory.git" +EGIT_COMMIT="v0.87-beta" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +RDEPEND="net-p2p/bitcoin-qt" + +DEPEND="dev-python/PyQt4 + dev-lang/swig + dev-python/twisted + x11-misc/xdg-utils" + +src_install() { + emake DESTDIR="${D}" install + dodoc README +} + +pkg_postinst() { + xdg-icon-resource install --novendor --context apps --size 64 /usr/share/armory/img/armory_icon_64x64.png armoryicon + xdg-icon-resource install --novendor --context apps --size 64 /usr/share/armory/img/armory_icon_64x64.png armoryofflineicon + xdg-icon-resource install --novendor --context apps --size 64 /usr/share/armory/img/armory_icon_green_64x64.png armorytestneticon +} |