forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-admin/keepassx: Bump to version 2.0.3
Package-Manager: portage-2.3.1 Signed-off-by: Lars Wendler <[email protected]>
- Loading branch information
Lars Wendler
committed
Oct 8, 2016
1 parent
6ca7c50
commit e087b94
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST keepassx-0.4.4.tar.gz 1371560 SHA256 3e27068ca85e68705347f0921c6b3c9248d7c5a84c79c0483daf22d141c0adc4 SHA512 2fc93d77f5576a0cce6514b39ee9b319efaa72b475762438eed5601c5e3edb7693a5fbb9c1e741be1e5d3a08849bc54b0cff90fe3a86cf240129febc0cc703d8 WHIRLPOOL 41c987607c8b233292eac5c5d654974caa1ae2a0d277468081ad4a6e9fcd248314239162ba23dc414f0854a5f6ba09e1c1f9d3aa078756438650a0e9151e81d2 | ||
DIST keepassx-2.0.2.tar.gz 1532353 SHA256 204bdcf49c72078cd6f02b4f29b062923cca9e7b2d3551f2bf352763daa236b8 SHA512 3f661d3b5807c5acafc65310ecd8bd4d0bcd51a0c919e219bba616cb3f54434f8f81ba533ab5ccec00d454838355ff048f4ffbc308442fad4f973d1766b95072 WHIRLPOOL 0d793bb3ce4ba015ea9cabc1625c61bdf0cc7fabfe5be67fe09ea180a5fb3654ef850531bff7e09bdc47107d69bf06f5e94fa308dbb0b8d5f9468b3c02349810 | ||
DIST keepassx-2.0.3.tar.gz 1540235 SHA256 23ffb4ae360c58aa139943442d175bc6b8f08e6a876ae76c4543ab983a6647c5 SHA512 bf1a4ffa49fc4a6b7a27e6292981c9c13920712b4cd86759a99976f7e0593a243ea14575c57d664ba7e55d2449b5d83bc3d43a64a9a6972335e52234da79d773 WHIRLPOOL 7cd81732932461c8a823c32ec8ce7f203cd95cf32aee20b7dbb6c2a7f93e9fc9199191aa335cfe5004e9317e761207d2721f3557ac1b6da8d6c11578a731d234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit cmake-utils gnome2-utils vcs-snapshot xdg | ||
|
||
DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions" | ||
HOMEPAGE="http://www.keepassx.org/" | ||
SRC_URI="https://www.keepassx.org/releases/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain || ( LGPL-2.1 GPL-3 )" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="test" | ||
|
||
DEPEND=" | ||
dev-libs/libgcrypt:0= | ||
dev-qt/qtcore:4 | ||
dev-qt/qtgui:4 | ||
dev-qt/qttest:4 | ||
sys-libs/zlib | ||
x11-libs/libX11 | ||
x11-libs/libXtst | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=(CHANGELOG) | ||
|
||
src_prepare() { | ||
xdg_src_prepare | ||
cmake-utils_src_prepare | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DWITH_TESTS="$(usex test)" | ||
) | ||
cmake-utils_src_configure | ||
} | ||
|
||
pkg_preinst() { | ||
gnome2_icon_savelist | ||
xdg_pkg_preinst | ||
} | ||
pkg_postinst() { | ||
gnome2_icon_cache_update | ||
xdg_pkg_postinst | ||
} | ||
|
||
pkg_postrm() { | ||
gnome2_icon_cache_update | ||
xdg_pkg_postrm | ||
} |