blob: 7de0b253935dacf9394be06adc5892ecddccf271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# 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"
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}[X]
yubikey? (
sys-auth/ykpers
)"
DEPEND="${COMMON_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
# generator for the version.h only adds \r breaking the c file
cp src/ui/wxWidgets/version.in src/ui/wxWidgets/version.h || 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
need-wxwidgets unicode
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
}
|