diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2014-03-21 16:35:26 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2014-03-21 16:35:26 +0000 |
commit | 89510e340bbf133314ecd933cdb81de2a8517026 (patch) | |
tree | acebefb830faf7ac34b0f7f20ba33e9051991452 /mail-client/trojita | |
parent | Disable -ftrapv flag on hppa until gcc ICEs get sorted out #505182 by Jeroen ... (diff) | |
download | gentoo-2-89510e340bbf133314ecd933cdb81de2a8517026.tar.gz gentoo-2-89510e340bbf133314ecd933cdb81de2a8517026.tar.bz2 gentoo-2-89510e340bbf133314ecd933cdb81de2a8517026.zip |
Remove old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Diffstat (limited to 'mail-client/trojita')
-rw-r--r-- | mail-client/trojita/ChangeLog | 5 | ||||
-rw-r--r-- | mail-client/trojita/trojita-0.4.ebuild | 70 |
2 files changed, 4 insertions, 71 deletions
diff --git a/mail-client/trojita/ChangeLog b/mail-client/trojita/ChangeLog index 067001e95db4..a025fafd6880 100644 --- a/mail-client/trojita/ChangeLog +++ b/mail-client/trojita/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-client/trojita # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/trojita/ChangeLog,v 1.31 2014/03/21 16:33:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/trojita/ChangeLog,v 1.32 2014/03/21 16:35:26 ago Exp $ + + 21 Mar 2014; Agostino Sarubbo <ago@gentoo.org> -trojita-0.4.ebuild: + Remove old *trojita-0.4.1 (21 Mar 2014) diff --git a/mail-client/trojita/trojita-0.4.ebuild b/mail-client/trojita/trojita-0.4.ebuild deleted file mode 100644 index c44a578562af..000000000000 --- a/mail-client/trojita/trojita-0.4.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/trojita/trojita-0.4.ebuild,v 1.1 2014/03/06 12:13:48 scarabeus Exp $ - -EAPI=5 - -QT_REQUIRED="4.8.0" -EGIT_REPO_URI="git://anongit.kde.org/${PN}.git" -[[ ${PV} == "9999" ]] && GIT_ECLASS="git-2" - -inherit cmake-utils virtualx ${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 da de el es et fr ga gl hu ia it lt mr nb nl pl pt pt_BR ro sk sv tr ug uk zh_CN zh_TW" -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=" - >=dev-qt/qtbearer-${QT_REQUIRED}:4 - >=dev-qt/qtgui-${QT_REQUIRED}:4 - >=dev-qt/qtsql-${QT_REQUIRED}:4[sqlite] - >=dev-qt/qtwebkit-${QT_REQUIRED}:4 -" -DEPEND="${RDEPEND} - test? ( >=dev-qt/qttest-${QT_REQUIRED}:4 ) - zlib? ( - virtual/pkgconfig - sys-libs/zlib - ) -" - -DOCS="README LICENSE" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_with test TESTS) - $(cmake-utils_use_with zlib 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 - - # the build system is taking a look at `git describe ... --dirty` and - # gentoo's modifications to CMakeLists.txt break these - sed -i "s/--dirty//" "${S}/cmake/TrojitaVersion.cmake" || die "Cannot fix the version check" - - cmake-utils_src_configure -} - -src_test() { - VIRTUALX_COMMAND=cmake-utils_src_test virtualmake -} |