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
c612387bf775
parent
d1c13e095736
branch
default
tags
revelation-0.4.0

fixed typo in python path checks

1
94cc26e5e65d
dnl initialize autoconf/automake
2
a207757f8451
AC_PREREQ(2.53)
3
a207757f8451
AC_INIT(src/revelation.in)
4
ab267e8bc63d
AM_INIT_AUTOMAKE(revelation, 0.4.0)
5
5d99fc2aa75a
6
94cc26e5e65d
7
a207757f8451
dnl check for dependencies
8
5d99fc2aa75a
AC_PROG_CC()
9
ab267e8bc63d
10
a207757f8451
AM_PATH_PYTHON(2.3)
11
ab267e8bc63d
RVL_PYTHON_PATH()
12
ab267e8bc63d
RVL_PYTHON_MODULE(Crypto, yes)
13
a207757f8451
PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.3.90)
14
a207757f8451
PKG_CHECK_MODULES(GNOME_PYTHON, gnome-python-2.0 >= 2.5.90)
15
a207757f8451
16
ab267e8bc63d
RVL_GCONF()
17
ab267e8bc63d
RVL_FDO_MIME()
18
9be42a38f988
19
a207757f8451
20
a207757f8451
dnl output files
21
a207757f8451
AC_OUTPUT([
22
a207757f8451
	Makefile
23
a207757f8451
	data/Makefile
24
a09619f1f68c
	data/icons/Makefile
25
3dcf95408d8d
	data/icons/16x16/Makefile
26
67d9e9983ed8
	data/icons/24x24/Makefile
27
67d9e9983ed8
	data/icons/32x32/Makefile
28
3dcf95408d8d
	data/icons/48x48/Makefile
29
5d85e4e10813
	data/mime/Makefile
30
086abbb6fc3c
	data/ui/Makefile
31
a207757f8451
	src/Makefile
32
a207757f8451
	src/lib/Makefile
33
a207757f8451
	src/lib/datahandler/Makefile
34
9445df12ea7b
	test/Makefile
35
5d99fc2aa75a
	wrap/Makefile
36
a207757f8451
])
37
a207757f8451