diff options
author | 2010-07-22 20:36:10 +0000 | |
---|---|---|
committer | 2010-07-22 20:36:10 +0000 | |
commit | e038433c59776a33bb03770e5d801e01e04e3a23 (patch) | |
tree | 532406bb157cc1cc3c3f94b97e0813a2b6c3a2a9 /app-crypt/sgeps/sgeps-0_pre12.ebuild | |
parent | sort rdepend, use same detection of live ebuild everywhere, cosmetics, by ... (diff) | |
download | historical-e038433c59776a33bb03770e5d801e01e04e3a23.tar.gz historical-e038433c59776a33bb03770e5d801e01e04e3a23.tar.bz2 historical-e038433c59776a33bb03770e5d801e01e04e3a23.zip |
Bump to a newer revision.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'app-crypt/sgeps/sgeps-0_pre12.ebuild')
-rw-r--r-- | app-crypt/sgeps/sgeps-0_pre12.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-crypt/sgeps/sgeps-0_pre12.ebuild b/app-crypt/sgeps/sgeps-0_pre12.ebuild new file mode 100644 index 000000000000..5e7394e4428e --- /dev/null +++ b/app-crypt/sgeps/sgeps-0_pre12.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/sgeps/sgeps-0_pre12.ebuild,v 1.1 2010/07/22 20:36:10 flameeyes Exp $ + +EAPI=2 + +DESCRIPTION="simple GnuPG-encrypted password store written in perl" +HOMEPAGE="http://roland.entierement.nu/blog/2010/01/22/simple-gnupg-encrypted-password-store.html" +SRC_URI="mirror://gentoo/${P}.pl.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="app-crypt/gnupg + dev-lang/perl + virtual/perl-Storable + virtual/perl-File-Temp + virtual/perl-Getopt-Long + dev-perl/Config-Simple" +DEPEND="" + +src_install() { + newbin "${WORKDIR}/${P}.pl" "${PN}" || die "newbin failed" +} + +pkg_postinst() { + elog "To make use of sgeps, remember to create a configuration file as" + elog " ~/.config/sgeps.conf with these values:" + elog "" + elog "store = ~/somewhere/safe" + elog "keyid = 012345678" + elog "" +} |