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
60595491f191
parent
ac1d7b7ffc91
branch
default
tags
revelation-0.4.5

set release date

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
a207757f8451
AC_INIT(src/revelation.in)
10
a5d7096d76f2
AM_INIT_AUTOMAKE(revelation, 0.4.5)
11
5d99fc2aa75a
12
94cc26e5e65d
13
a207757f8451
dnl check for dependencies
14
5d99fc2aa75a
AC_PROG_CC()
15
ca2af4e02c4c
16
13a32d3a5428
RVL_PYTHON_PATH(2.3)
17
ca2af4e02c4c
RVL_PYGTK()
18
bffe619c6cec
RVL_CRACKLIB()
19
ab267e8bc63d
RVL_GCONF()
20
cb0f2b51a795
RVL_LIBPANELAPPLET()
21
ab267e8bc63d
RVL_FDO_MIME()
22
9be42a38f988
23
2714cd3c4492
RVL_PYTHON_MODULE(Crypto, yes)
24
2714cd3c4492
RVL_PYTHON_MODULE(bonobo, yes)
25
2714cd3c4492
RVL_PYTHON_MODULE(bonobo.ui, yes)
26
2714cd3c4492
RVL_PYTHON_MODULE(gconf, yes)
27
2714cd3c4492
RVL_PYTHON_MODULE(gtk, yes)
28
2714cd3c4492
RVL_PYTHON_MODULE(gtk.gdk, yes)
29
2714cd3c4492
RVL_PYTHON_MODULE(gnome, yes)
30
2714cd3c4492
RVL_PYTHON_MODULE(gnome.applet, yes)
31
2714cd3c4492
RVL_PYTHON_MODULE(gnome.ui, yes)
32
2714cd3c4492
RVL_PYTHON_MODULE(gnome.vfs, yes)
33
2714cd3c4492
RVL_PYTHON_MODULE(gobject, yes)
34
2714cd3c4492
RVL_PYTHON_MODULE(pango, yes)
35
2714cd3c4492
36
a207757f8451
37
a207757f8451
dnl output files
38
a207757f8451
AC_OUTPUT([
39
a207757f8451
	Makefile
40
a207757f8451
	data/Makefile
41
e5681e842641
	data/bonobo/Makefile
42
1c96b7e48232
	data/cracklib/Makefile
43
1c96b7e48232
	data/gconf/Makefile
44
a09619f1f68c
	data/icons/Makefile
45
3dcf95408d8d
	data/icons/16x16/Makefile
46
67d9e9983ed8
	data/icons/24x24/Makefile
47
67d9e9983ed8
	data/icons/32x32/Makefile
48
3dcf95408d8d
	data/icons/48x48/Makefile
49
51d3c446da8f
	data/icons/scalable/Makefile
50
5d85e4e10813
	data/mime/Makefile
51
086abbb6fc3c
	data/ui/Makefile
52
a207757f8451
	src/Makefile
53
a207757f8451
	src/lib/Makefile
54
a207757f8451
	src/lib/datahandler/Makefile
55
1c56d7845099
	src/wrap/Makefile
56
1c56d7845099
	src/wrap/crack/Makefile
57
0f8c7965fdf3
	src/wrap/gnomemisc/Makefile
58
a207757f8451
])
59
a207757f8451