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: 1.8 MB): HTTPS / SSH
$ hg clone http://oss.codepoet.no/revelation
commit 258: ac9e3621e5ea
parent 257: 5a85d838a653
branch: default
tags: revelation-0.4.1
set release date
Erik Grinaker / erikg
5 years ago
Revelation / configure.ac
r258:ac9e3621e5ea 46 loc 835 bytes embed / history / annotate / raw /
dnl
dnl configure.ac
dnl
dnl $Id$
dnl

dnl initialize autoconf/automake
AC_PREREQ(2.53)
AC_INIT(src/revelation.in)
AM_INIT_AUTOMAKE(revelation, 0.4.1)


dnl check for dependencies
AC_PROG_CC()
RVL_PYTHON_PATH(2.3)
RVL_PYTHON_MODULE(Crypto, yes)
PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.3.90)
PKG_CHECK_MODULES(GNOME_PYTHON, gnome-python-2.0 >= 2.5.90)
RVL_CRACKLIB()
RVL_GCONF()
RVL_FDO_MIME()


dnl output files
AC_OUTPUT([
	Makefile
	data/Makefile
	data/cracklib/Makefile
	data/gconf/Makefile
	data/icons/Makefile
	data/icons/16x16/Makefile
	data/icons/24x24/Makefile
	data/icons/32x32/Makefile
	data/icons/48x48/Makefile
	data/icons/scalable/Makefile
	data/mime/Makefile
	data/ui/Makefile
	src/Makefile
	src/lib/Makefile
	src/lib/datahandler/Makefile
	test/Makefile
	wrap/Makefile
	wrap/authmanager/Makefile
	wrap/crack/Makefile
])