Add files via upload

This commit is contained in:
KronoZed 2017-02-27 13:58:44 +03:00 committed by GitHub
parent 8a73fb1afc
commit 36f0fb1c00
3 changed files with 67 additions and 8 deletions

View File

@ -1 +1,3 @@
EBUILD profanity-9999.ebuild 1046 SHA256 4c92f5571c6281f0cd80e24df27f380b9049de33534fc768d0575fe3ffd050c0 SHA512 7fd6a5d8502888fe6cc1f144ef90b1325651b30b2384ef88db290fd8bd00fff71e9d3e0ba8cda909b30a6ef721acf70967c1b764562417b6d3794b1119fe9f5e WHIRLPOOL f36c3918d7be6c4306668162db7500b40f59904da05dafe96fd5150f63e66e6f7448d892ae540102535ea5e6db6e8af3b399feb9b7b598a6a1a33cf5c48d19f6
DIST profanity-0.5.1.tar.gz 691508 SHA256 e3513713e74ec3363fbdbac2919bdc17e249988780cc5a4589d1425807a7feb8 SHA512 fcafa7e1dcf0948d7fa30ba33665e1ec0e8bb9e0246df2d1cf3fe5d7f2bd25b07fa2cb0fd383ee23fc720850ff295159537567f175c21f1c93f50da0099e209d WHIRLPOOL 17da0ae4088619dcf9d25552ed2f1f366ec03e61abf117c8cd5843244c751b9d732e4e47add5395f35fe1bf8845b562a1c23e5a7935b454ef1270ec7afc65aae
EBUILD profanity-0.5.1.ebuild 1192 SHA256 3a21a1311373e961bbca7437997cb86d3831d7002d2a6ef9fd8cc39bf540e6fd SHA512 009f363da0681f7ddfcb27aa447babf7b3859495a893b11b5995c4dd67c36c5dec2468c74ec14a5ef47a9dfb11afb84fbb8709641275ba2186acafa1c6d66b59 WHIRLPOOL 7c68247a77f71af7838e491434365278b86f4aab59d51e5bc47b4848a24253f3cccbc3ddffe8ffb299075fa30dfb9f34cb77d4182c8367ac382a71f96b860b26
EBUILD profanity-9999.ebuild 1303 SHA256 58d44bc17bbc729e78140b056538fb23b41d4163e8361b6726feccc534becad6 SHA512 59b37a63eda14964f829b7122285832ae84e496cd1054c2a738dcc117b37e2d4b1cec2e6220bcc44a80954181c913b1adb6af9d59c1a5e4f3e29e0068f776214 WHIRLPOOL 464b318c5255f79a70baee4c902137db4f02b776940e3be543cc375ab745401c102d9ab94c8460d9b392b2c0e42ce08f9f75fc8485d3e5d9621334073a7b08a3

View File

@ -0,0 +1,50 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
DESCRIPTION="Ncurses based jabber client inspired by irssi"
HOMEPAGE="http://www.profanity.im/"
SRC_URI="http://www.profanity.im/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gpg -gtk libnotify otr plugins +themes xscreensaver"
RDEPEND=">=dev-libs/glib-2.26:2
|| (
>=dev-libs/libstrophe-0.9.0
>=dev-libs/libmesode-0.9.0
)
net-misc/curl
sys-libs/ncurses
sys-libs/readline
gtk? ( >=x11-libs/gtk+-2.24.10:2 )
gpg? ( app-crypt/gpgme )
otr? ( net-libs/libotr )
plugins? ( dev-lang/python )
xscreensaver? ( x11-libs/libXScrnSaver )
libnotify? ( x11-libs/libnotify )"
DEPEND="${RDEPEND}"
src_configure() {
econf \
$(use_enable gpg pgp) \
$(use_enable gtk icons) \
$(use_enable libnotify notifications) \
$(use_enable otr) \
$(use_enable plugins) \
$(use_enable plugins python-plugins) \
$(use_enable plugins c-plugins) \
$(use_with themes) \
$(use_with xscreensaver)
}
pkg_postinst() {
elog
elog "User guide is available online:"
elog " http://www.profanity.im/userguide.html"
elog
}

View File

@ -1,4 +1,4 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@ -14,21 +14,24 @@ HOMEPAGE="http://www.profanity.im/"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS=""
IUSE="libnotify otr pgp +themes xscreensaver"
IUSE="gpg -gtk libnotify otr plugins +themes xscreensaver"
RDEPEND=">=dev-libs/glib-2.26:2
|| (
dev-libs/libmesode
>=dev-libs/libstrophe-0.8.9
>=dev-libs/libstrophe-0.9.0
>=dev-libs/libmesode-0.9.0
)
net-misc/curl
sys-libs/ncurses
sys-libs/readline
pgp? ( app-crypt/gpgme )
gtk? ( >=x11-libs/gtk+-2.24.10:2 )
gpg? ( app-crypt/gpgme )
otr? ( net-libs/libotr )
plugins? ( dev-lang/python )
xscreensaver? ( x11-libs/libXScrnSaver )
libnotify? ( x11-libs/libnotify )"
DEPEND="${RDEPEND}"
DEPEND="${RDEPEND}
sys-devel/autoconf-archive"
S="${WORKDIR}/${P/-/_}"
@ -38,9 +41,13 @@ src_prepare() {
src_configure() {
econf \
$(use_enable gpg pgp) \
$(use_enable gtk icons) \
$(use_enable libnotify notifications) \
$(use_enable otr) \
$(use_enable pgp) \
$(use_enable plugins) \
$(use_enable plugins python-plugins) \
$(use_enable plugins c-plugins) \
$(use_with themes) \
$(use_with xscreensaver)
}