You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-client/trojita/trojita-0.3.91.ebuild

63 lines
1.4 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/trojita/trojita-0.3.91.ebuild,v 1.1 2013/01/16 20:40:20 hwoarang Exp $
EAPI=4
QT_REQUIRED="4.6.0"
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
[[ ${PV} == "9999" ]] && GIT_ECLASS="git-2"
inherit qt4-r2 ${GIT_ECLASS}
DESCRIPTION="A Qt IMAP e-mail client"
HOMEPAGE="http://trojita.flaska.net/"
if [[ ${PV} == "9999" ]]; then
SRC_URI=""
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
MY_LANGS="bs cs de es et ga gl hu ia lt nl pt pt_BR sk sv uk zh_CN"
fi
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
IUSE="debug test +zlib"
for MY_LANG in ${MY_LANGS} ; do
IUSE="${IUSE} linguas_${MY_LANG}"
done
RDEPEND="
>=x11-libs/qt-gui-${QT_REQUIRED}:4
>=x11-libs/qt-sql-${QT_REQUIRED}:4[sqlite]
>=x11-libs/qt-webkit-${QT_REQUIRED}:4
"
DEPEND="${RDEPEND}
test? ( >=x11-libs/qt-test-${QT_REQUIRED}:4 )
zlib? (
virtual/pkgconfig
sys-libs/zlib
)
"
src_configure() {
local myopts=""
use debug && myopts="$myopts CONFIG+=debug"
use test || myopts="$myopts CONFIG+=disable_tests"
use zlib || myopts="$myopts CONFIG+=disable_zlib"
if [[ ${MY_LANGS} ]]; then
rm po/trojita_common_x-test.po
for x in po/*.po; do
mylang=${x#po/trojita_common_}
mylang=${mylang%.po}
use linguas_$mylang || rm $x
done
fi
eqmake4 PREFIX=/usr $myopts
}
src_test() {
Xemake test
}