Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.1 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / configure.ac

commit
6e46fd4aa400
parent
5ddf0ade37db
branch
default

Allow import from files with no pad characters
---
src/lib/datahandler/gpass.py | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)

1
1c96b7e48232
dnl
2
1c96b7e48232
dnl configure.ac
3
1c96b7e48232
dnl
4
1c96b7e48232
dnl $Id$
5
1c96b7e48232
dnl
6
1c96b7e48232
7
94cc26e5e65d
dnl initialize autoconf/automake
8
a207757f8451
AC_PREREQ(2.53)
9
fcb9af262225
AC_INIT([revelation],[0.4.12],[http://oss.codepoet.no/revelation/issues/new],[revelation],[http://revelation.olasagasti.info/])
10
642c040ad57c
AM_INIT_AUTOMAKE([1.11 tar-ustar dist-xz no-dist-gzip -Wno-portability])
11
94cc26e5e65d
12
a207757f8451
dnl check for dependencies
13
5d99fc2aa75a
AC_PROG_CC()
14
ca2af4e02c4c
15
13a32d3a5428
RVL_PYTHON_PATH(2.3)
16
ca2af4e02c4c
RVL_PYGTK()
17
f7e311e828af
RVL_GETTEXT()
18
bffe619c6cec
RVL_CRACKLIB()
19
29289dada9c3
RVL_MMAN()
20
ab267e8bc63d
RVL_GCONF()
21
ab267e8bc63d
RVL_FDO_MIME()
22
9be42a38f988
23
2714cd3c4492
RVL_PYTHON_MODULE(Crypto, yes)
24
2714cd3c4492
RVL_PYTHON_MODULE(gconf, yes)
25
2714cd3c4492
RVL_PYTHON_MODULE(gtk, yes)
26
2714cd3c4492
RVL_PYTHON_MODULE(gnome, yes)
27
dc3a3a521ce7
RVL_PYTHON_MODULE(gio, yes)
28
2714cd3c4492
RVL_PYTHON_MODULE(gobject, yes)
29
2714cd3c4492
RVL_PYTHON_MODULE(pango, yes)
30
e8fc6e4fcf00
RVL_PYTHON_MODULE(dbus, yes)
31
2714cd3c4492
32
a207757f8451
33
ecd61aca9f0b
dnl Enable applet installation
34
ecd61aca9f0b
AC_ARG_WITH(applet,
35
ecd61aca9f0b
	AS_HELP_STRING([--with-applet],[Build with applet (default=no)]),
36
ecd61aca9f0b
	,with_applet=no)
37
ecd61aca9f0b
if test "x$with_applet" = "xyes" ; then
38
ecd61aca9f0b
	RVL_PYTHON_MODULE(bonobo, yes)
39
ecd61aca9f0b
	RVL_PYTHON_MODULE(gnomeapplet, yes)
40
33c06edf4875
	PKG_CHECK_MODULES(GNOME_PYTHON_EXTRAS, [gnome-python-extras-2.0 >= 2.10.0])
41
ecd61aca9f0b
fi
42
ecd61aca9f0b
AM_CONDITIONAL([WITH_APPLET], [test "x$with_applet" = "xyes"])
43
ecd61aca9f0b
44
a207757f8451
dnl output files
45
a207757f8451
AC_OUTPUT([
46
a207757f8451
	Makefile
47
a207757f8451
	data/Makefile
48
e5681e842641
	data/bonobo/Makefile
49
1c96b7e48232
	data/cracklib/Makefile
50
1c96b7e48232
	data/gconf/Makefile
51
a09619f1f68c
	data/icons/Makefile
52
3dcf95408d8d
	data/icons/16x16/Makefile
53
67d9e9983ed8
	data/icons/24x24/Makefile
54
67d9e9983ed8
	data/icons/32x32/Makefile
55
3dcf95408d8d
	data/icons/48x48/Makefile
56
7573ee354aad
	data/icons/scalable/Makefile
57
5d9cfd7b218d
	data/mime/revelation.desktop.in
58
5d85e4e10813
	data/mime/Makefile
59
086abbb6fc3c
	data/ui/Makefile
60
f7e311e828af
	po/Makefile.in
61
a207757f8451
	src/Makefile
62
b0d11bf9eca4
	src/bundle/Makefile
63
a207757f8451
	src/lib/Makefile
64
a207757f8451
	src/lib/datahandler/Makefile
65
1c56d7845099
	src/wrap/Makefile
66
1c56d7845099
	src/wrap/crack/Makefile
67
a207757f8451
])
68
a207757f8451
69
ecd61aca9f0b
echo "
70
ecd61aca9f0b
71
ecd61aca9f0b
------------------------------------------------------------------
72
ecd61aca9f0b
-- revelation compilation options
73
ecd61aca9f0b
74
ecd61aca9f0b
revelation version:        ${PACKAGE_VERSION}
75
ecd61aca9f0b
With applet:               $with_applet
76
ecd61aca9f0b
------------------------------------------------------------------
77
ecd61aca9f0b
"
78
ecd61aca9f0b