From 1a9f65d2ee2f0477945466de7261a5d0eed7cecf Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Tue, 19 May 2015 11:13:21 +0300 Subject: [passwordsafe] added passwordsafe --- .../passwordsafe/passwordsafe-0.95.1_beta.ebuild | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 app-crypt/passwordsafe/passwordsafe-0.95.1_beta.ebuild (limited to 'app-crypt/passwordsafe/passwordsafe-0.95.1_beta.ebuild') diff --git a/app-crypt/passwordsafe/passwordsafe-0.95.1_beta.ebuild b/app-crypt/passwordsafe/passwordsafe-0.95.1_beta.ebuild new file mode 100644 index 00000000..6c6e58ec --- /dev/null +++ b/app-crypt/passwordsafe/passwordsafe-0.95.1_beta.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +WX_GTK_VER="3.0" + +inherit eutils flag-o-matic wxwidgets + +MY_P="pwsafe-${PV/_beta/BETA}" +DESCRIPTION="Password manager with wxGTK based frontend" +HOMEPAGE="http://pwsafe.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tgz" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="yubikey" + +COMMON_DEPEND="dev-libs/xerces-c + sys-apps/util-linux + sys-devel/gettext + x11-libs/libXt + x11-libs/libXtst + x11-libs/wxGTK:${WX_GTK_VER} + yubikey? ( + sys-auth/ykpers + )" +DEPEND="${COMMOND_DEPEND} + >=sys-devel/make-3.81" +RDEPEND="${COMMON_DEPEND}" + +S="${WORKDIR}/${MY_P}" + +pkg_pretend() { + einfo "Checking for -std=c++11 support in compiler" + test-flags-CXX -std=c++11 > /dev/null || die +} + +src_prepare() { + # remove hard coded compilers and compiler flags + sed -e '/^export CXXFLAGS/d' -i Makefile.linux || die + sed -i src/core/Makefile src/os/linux/Makefile src/ui/wxWidgets/Makefile \ + -e 's/-O[0-3]\?//g' -e 's/-g(gdb)\?//g' \ + -e '/^CC=/d' -e '/^CXX=/d' || die + + # binary name pwsafe is in use by app-misc/pwsafe, we use passwordsafe + # instead. Perform required changes in linking files + sed -i install/desktop/pwsafe.desktop -e "s/pwsafe/${PN}/g" || die + sed -i docs/pwsafe.1 \ + -e 's/PWSAFE/PASSWORDSAFE/' \ + -e "s/^.B pwsafe/.B ${PN}/" || die +} + +src_configure() { + if ! use yubikey ; then + export NO_YUBI=1 + fi + + strip-flags + append-cxxflags -std=c++11 +} + +src_compile() { + emake unicoderelease + emake help + emake I18N +} + +src_install() { + newbin src/ui/wxWidgets/GCCUnicodeRelease/pwsafe ${PN} + newman docs/pwsafe.1 ${PN}.1 + + dodoc README.txt docs/{ReleaseNotes.txt,ChangeLog.txt} + + insinto /usr/share/pwsafe/xml + doins xml/* + + insinto /usr/share/locale + doins -r src/ui/wxWidgets/I18N/mos/* + + # The upstream Makefile builds this .zip file from html source material for + # use by the package's internal help system. Must prevent + # Portage from applying additional compression. + docompress -x /usr/share/doc/${PN}/help + insinto /usr/share/doc/${PN}/help + doins help/*.zip + + newicon install/graphics/pwsafe.png ${PN}.png + newmenu install/desktop/pwsafe.desktop ${PN}.desktop +} -- cgit v1.2.3