net-im/profanity: new package, add 0.13.1
This commit is contained in:
parent
09ae7094f9
commit
4560b403b7
3
net-im/profanity/Manifest
Normal file
3
net-im/profanity/Manifest
Normal file
|
@ -0,0 +1,3 @@
|
|||
DIST profanity-0.13.1.tar.xz 621836 BLAKE2B e038fa01272150cb7974b03f88f64335bf1690115dbbb1c6fe04c79acb69db18c556edf41316af1d363f9715cd2e7aeb3f3bd867836704b620d9a87976b64fa9 SHA512 6d7d3c96c65e26c15cac1157bd296c1dbd3e2471aec959d6c319c68b70ec21cef0c40d7b4eed40c30c377a766db9f13a774ccb4880c227ee368e4dd607d9c267
|
||||
EBUILD profanity-0.13.1.ebuild 1432 BLAKE2B d82eda77c79054e906e97999c74aacd97a799890880a2329a2824570a518b3b694fde9cf9508e8fc76746ea70f09be0c5940d18e408d30ae14f3e135e292c303 SHA512 eeca616896f0552070e0530cf7a5f352daf6f305e7f98aa473070343be69ca3bc20596cf17245fe96a7f05659283b0d5f2fd3ca215a7f16936c181e111a3443b
|
||||
MISC metadata.xml 836 BLAKE2B de63ac5ccbc1f4ec4a9fc76234e59162d650dc2703608f054747da34227e7878da7af48f1f70dbaf03a4275fd247d33b6de55e476bbda46f59d184d734f54ae9 SHA512 968c142c0af685f8a4ced1563c70139b47b1da04fe42ae6bc0a7953605e58e85db319d2732649ae405f79470acac2936eb04e7035bcc37c5c2714a4f14dba76b
|
24
net-im/profanity/metadata.xml
Normal file
24
net-im/profanity/metadata.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person" proxied="yes">
|
||||
<email>jubalh@iodoru.org</email>
|
||||
<name>Michael Vetter</name>
|
||||
</maintainer>
|
||||
<maintainer type="project" proxied="proxy">
|
||||
<email>proxy-maint@gentoo.org</email>
|
||||
<name>Proxy Maintainers</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
Profanity is a console based XMPP client written in C using
|
||||
ncurses and libstrophe, inspired by Irssi.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="gpg">Enable OpenPGP encryption</flag>
|
||||
<flag name="omemo">Enable OMEMO encryption</flag>
|
||||
<flag name="otr">Enable encrypted conversations using Off-The-Records messaging</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">profanity-im/profanity</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
73
net-im/profanity/profanity-0.13.1.ebuild
Normal file
73
net-im/profanity/profanity-0.13.1.ebuild
Normal file
|
@ -0,0 +1,73 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="A console based XMPP client inspired by Irssi"
|
||||
HOMEPAGE="https://profanity-im.github.io"
|
||||
SRC_URI="https://github.com/profanity-im/profanity/releases/download/${PV}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64"
|
||||
IUSE="libnotify omemo otr gpg test xscreensaver X"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3
|
||||
dev-libs/glib:2
|
||||
dev-libs/libassuan
|
||||
dev-libs/libgpg-error
|
||||
>=dev-libs/libstrophe-0.12.2
|
||||
net-misc/curl
|
||||
sys-libs/ncurses:=[unicode(+)]
|
||||
sys-libs/readline:=
|
||||
x11-misc/shared-mime-info
|
||||
virtual/libcrypt:=
|
||||
gpg? ( app-crypt/gpgme:= )
|
||||
libnotify? ( x11-libs/libnotify )
|
||||
omemo? (
|
||||
dev-libs/libgcrypt:=
|
||||
net-libs/libsignal-protocol-c
|
||||
)
|
||||
otr? ( net-libs/libotr )
|
||||
xscreensaver? (
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libX11
|
||||
)
|
||||
X? (
|
||||
|| ( app-accessibility/at-spi2-atk dev-libs/atk )
|
||||
media-libs/harfbuzz:=
|
||||
x11-libs/cairo
|
||||
x11-libs/gdk-pixbuf:2
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/pango
|
||||
)
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
test? ( dev-util/cmocka )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
$(use_enable X gdk-pixbuf)
|
||||
$(use_enable libnotify notifications)
|
||||
$(use_enable omemo)
|
||||
$(use_enable otr)
|
||||
$(use_enable gpg pgp)
|
||||
$(use_with xscreensaver)
|
||||
)
|
||||
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${ED}" -type f -name '*.la' -delete || die
|
||||
}
|
Loading…
Reference in a new issue