ckpass-0.2.ebuild 508 B

123456789101112131415161718192021222324
  1. # Copyright 1999-2017 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=5
  4. inherit autotools eutils
  5. DESCRIPTION="ncurses based password database client compatible with KeePass 1.x databases"
  6. HOMEPAGE="http://ckpass.sourceforge.net/"
  7. SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
  8. LICENSE="GPL-3"
  9. SLOT="0"
  10. KEYWORDS="~amd64"
  11. DEPEND=">=dev-libs/libkpass-6"
  12. RDEPEND="${DEPEND}"
  13. src_prepare() {
  14. epatch "${FILESDIR}"/${P}-tinfo.patch
  15. eautoreconf
  16. }
  17. DOCS=( AUTHORS )