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

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.2)


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
])