diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2007-07-08 18:59:11 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2007-07-08 18:59:11 +0000 |
commit | c4373ed186b92355ec12da4c3e384992038d08fd (patch) | |
tree | 4634c1837cb9179551d951a0de56f4dbfc79c951 /app-misc/pwsafe/pwsafe-0.2.0.ebuild | |
parent | Stable on amd64 wrt bug #184538 (diff) | |
download | gentoo-2-c4373ed186b92355ec12da4c3e384992038d08fd.tar.gz gentoo-2-c4373ed186b92355ec12da4c3e384992038d08fd.tar.bz2 gentoo-2-c4373ed186b92355ec12da4c3e384992038d08fd.zip |
initial import
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-misc/pwsafe/pwsafe-0.2.0.ebuild')
-rw-r--r-- | app-misc/pwsafe/pwsafe-0.2.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/pwsafe/pwsafe-0.2.0.ebuild b/app-misc/pwsafe/pwsafe-0.2.0.ebuild new file mode 100644 index 000000000000..137ab2a55b5f --- /dev/null +++ b/app-misc/pwsafe/pwsafe-0.2.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pwsafe/pwsafe-0.2.0.ebuild,v 1.1 2007/07/08 18:59:11 taviso Exp $ + +inherit eutils + +DESCRIPTION="Password Safe Compatible Commandline Password Manager" +HOMEPAGE="http://nsd.dyndns.org/pwsafe/" +SRC_URI="http://nsd.dyndns.org/pwsafe/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="X readline" + +DEPEND="sys-libs/ncurses + dev-libs/openssl + readline? ( sys-libs/readline ) + X? ( || ( ( + x11-libs/libSM + x11-libs/libICE + x11-libs/libXmu + x11-libs/libX11 + ) + virtual/x11 + ) + )" +RDEPEND="${DEPEND}" + +src_compile() { + econf $(use_with X x) $(use_with readline) + emake +} + +src_install() { + doman pwsafe.1 + dobin pwsafe + dodoc README NEWS +} |