logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git

netpgp-20140220.ebuild (508B)


  1. # Copyright 2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=7
  4. DESCRIPTION="OpenPGP implementation from NetBSD"
  5. HOMEPAGE="http://netpgp.com/"
  6. LICENSE="ISC"
  7. SRC_URI="http://netpgp.com/src/${P}.tar.gz"
  8. SLOT="0"
  9. KEYWORDS="~amd64"
  10. # OpenSSL 0.9.8 or newer
  11. # TODO: bzlib ?
  12. DEPEND="
  13. dev-libs/openssl:=
  14. sys-libs/zlib
  15. "
  16. RDEPEND="${DEPEND}"
  17. src_prepare() {
  18. sed -i 's/WARNCFLAGS="-Werror /WARNCFLAGS="/' configure || die
  19. default
  20. }