mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-im/mcabber: version bump (greetings to Sarah Salzstein)
Package-Manager: portage-2.2.28
This commit is contained in:
@@ -2,3 +2,4 @@ DIST mcabber-0.10.2_p20131025.tar.gz 399025 SHA256 90f4e583a7ea929abcd243dc970d6
|
||||
DIST mcabber-0.10.3.tar.bz2 612153 SHA256 77466138496cc26db125145cc28dc4fc0df79827143b922dfb9f02eb0dc7fa6d SHA512 3f4c83dbe99f1e1981a89d2a9cdfbaf96b265aaabe133e41d562491557e0acc2d780ae88aa3e45eca9088318ef7d7b284f1df445d2b5afb139d5a247e111bc10 WHIRLPOOL 7139d7b44837026276b269f5d911486bc898ef4c72d0cec2ada066636f284c00205b207241024d4311a82f7eb6a83590dbf402167dec4441e477f6166a7595b5
|
||||
DIST mcabber-1.0.0.tar.bz2 602173 SHA256 5476bcba395e0b9527823f5a9bce725151756f685ce2dcf6fad3dbe50a157032 SHA512 bad8af15ed984ac0a568ea497464a3fa9b3ba3dea51cdd4042361be10783bba3578859ced532cd2c1cf19588fc42bdd561486b9fce6ed2da86a509e29c26c497 WHIRLPOOL f9eba52f2686f0571947e006ce825378be7f00db8192988e5a071a86160c48b113609fe4f539d61191378348333763c24e013f5bc69863f4b41a54264313e3f8
|
||||
DIST mcabber-1.0.1.tar.bz2 604661 SHA256 579a45a2bc944455012ca9b308f7f3454efabbe0c36c6723af761aa1f3092d93 SHA512 23b268fb0c4e5ce0f28333d2b35fa8b6ead819359c0e2a633158bdcb637040c23deb2ca54d7d1a98a8a8fa37323bfe078371e790b5809af76fe9b940529f728c WHIRLPOOL 9e5a2478a5bc7c8d35526bb81178842e04a5367b23cd7ec8dfa303069a6ad75ae74411977b9f354d3758c80a6ed578a4caf4c21cdb5322feece818d50e053a6b
|
||||
DIST mcabber-1.0.2.tar.bz2 604995 SHA256 e7143891ea6c6ec2f3008c25c13506121d83d15aa83640827aea3b66a8761fde SHA512 e7d8f54f0f5cbcd685d6ada49c29fbc3af3315d5727a7a6babcc0aae49880f0cc1df48a1ceec78caeb17822c26f8c00aae23df2565336d92c4e388c8cebb4263 WHIRLPOOL 8903b6e77f645202357f00868733633abed220f05260d29e30bc0396abf64f94fe0c69c84cae7f9c6c6ebfbe3d64f4d4be970dfe51593c84ca582fccfb4d7c2a
|
||||
|
||||
119
net-im/mcabber/mcabber-1.0.2.ebuild
Normal file
119
net-im/mcabber/mcabber-1.0.2.ebuild
Normal file
@@ -0,0 +1,119 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit flag-o-matic autotools-utils
|
||||
|
||||
DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP"
|
||||
HOMEPAGE="http://mcabber.com/"
|
||||
#REV="a18e1b488f1c"
|
||||
#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="http://mcabber.com/files/${P}.tar.bz2"
|
||||
|
||||
#S=${WORKDIR}/${PN}-${REV}/${PN}
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
|
||||
IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
|
||||
|
||||
LANGS="cs de fr it nl pl ru uk"
|
||||
# localized help versions are installed only, when LINGUAS var is set
|
||||
for i in ${LANGS}; do
|
||||
IUSE="${IUSE} linguas_${i}"
|
||||
done;
|
||||
|
||||
RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
|
||||
otr? ( >=net-libs/libotr-3.1.0 )
|
||||
aspell? ( app-text/aspell )
|
||||
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
|
||||
idn? ( net-dns/libidn )
|
||||
spell? ( app-text/enchant )
|
||||
dev-libs/glib:2
|
||||
sys-libs/ncurses:0=
|
||||
>=net-libs/loudmouth-1.4.3-r1[ssl?]"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
## autotools-utils.eclass settings
|
||||
AUTOTOOLS_AUTORECONF="1"
|
||||
AUTOTOOLS_IN_SOURCE_BUILD="1"
|
||||
DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt )
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-0.10.3-vim-ftdetect.patch"
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
if use aspell && use spell; then
|
||||
ewarn "NOTE: You have both USE flags 'aspell' and 'spell' enabled, enchant (USE flag 'spell') will be preferred."
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
$(use_enable crypt gpgme) \
|
||||
$(use_enable otr) \
|
||||
$(use_enable aspell) \
|
||||
$(use_enable spell enchant) \
|
||||
$(use_enable modules) \
|
||||
$(use_with idn libidn)
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
|
||||
# clean unneeded language documentation
|
||||
for i in ${LANGS}; do
|
||||
use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
|
||||
done
|
||||
|
||||
# contrib themes
|
||||
insinto /usr/share/${PN}/themes
|
||||
doins "${S}"/contrib/themes/*
|
||||
|
||||
# contrib generic scripts
|
||||
exeinto /usr/share/${PN}/scripts
|
||||
doexe "${S}"/contrib/*.{pl,py}
|
||||
|
||||
# contrib event scripts
|
||||
exeinto /usr/share/${PN}/scripts/events
|
||||
doexe "${S}"/contrib/events/*
|
||||
|
||||
if use vim-syntax; then
|
||||
cd contrib/vim/ || die
|
||||
|
||||
insinto /usr/share/vim/vimfiles/syntax
|
||||
doins mcabber_log-syntax.vim
|
||||
|
||||
insinto /usr/share/vim/vimfiles/ftdetect
|
||||
doins mcabber_log-ftdetect.vim
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog
|
||||
elog "MCabber requires you to create a subdirectory .mcabber in your home"
|
||||
elog "directory and to place a configuration file there."
|
||||
elog "An example mcabberrc was installed as part of the documentation."
|
||||
elog "To create a new mcabberrc based on the example mcabberrc, execute the"
|
||||
elog "following commands:"
|
||||
elog
|
||||
elog " mkdir -p ~/.mcabber"
|
||||
elog " bzcat ${EROOT}usr/share/doc/${PF}/mcabberrc.example.bz2 >~/.mcabber/mcabberrc"
|
||||
elog
|
||||
elog "Then edit ~/.mcabber/mcabberrc with your favorite editor."
|
||||
elog
|
||||
elog "See the CONFIGURATION FILE and FILES sections of the mcabber"
|
||||
elog "manual page (section 1) for more information."
|
||||
elog
|
||||
elog "From version 0.9.0 on, MCabber supports PGP encryption of messages."
|
||||
elog "See README_PGP.txt for details."
|
||||
echo
|
||||
einfo "Check out ${EROOT}usr/share/${PN} for contributed themes and event scripts."
|
||||
echo
|
||||
}
|
||||
Reference in New Issue
Block a user