37 lines
710 B
Bash
37 lines
710 B
Bash
|
|
# Copyright 1999-2018 Gentoo Foundation
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=6
|
||
|
|
|
||
|
|
inherit cmake-utils
|
||
|
|
|
||
|
|
DESCRIPTION="An encryption add-on for irssi, it's based on blowfish"
|
||
|
|
HOMEPAGE="https://github.com/falsovsky/fish-irssi"
|
||
|
|
|
||
|
|
if [[ ${PV} == *9999* ]]; then
|
||
|
|
EGIT_REPO_URI="https://github.com/falsovsky/fish-irssi"
|
||
|
|
inherit git-r3
|
||
|
|
KEYWORDS=""
|
||
|
|
else
|
||
|
|
SRC_URI="https://github.com/falsovsky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
KEYWORDS="amd64 ~x86"
|
||
|
|
S="${WORKDIR}/${P/fish/FiSH}"
|
||
|
|
fi
|
||
|
|
|
||
|
|
|
||
|
|
LICENSE=""
|
||
|
|
SLOT="0"
|
||
|
|
IUSE=""
|
||
|
|
|
||
|
|
DOCS=( README.md )
|
||
|
|
|
||
|
|
DEPEND="
|
||
|
|
dev-libs/glib:2
|
||
|
|
dev-libs/openssl
|
||
|
|
net-irc/irssi
|
||
|
|
"
|
||
|
|
RDEPEND="
|
||
|
|
${RDEPEND}
|
||
|
|
virtual/pkgconfig
|
||
|
|
"
|