torrentzip-0.9.ebuild 544 B

12345678910111213141516171819202122232425262728293031
  1. # Copyright 1999-2016 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=6
  4. inherit autotools
  5. DESCRIPTION="Create identical zip archives over multiple systems"
  6. HOMEPAGE="https://sourceforge.net/projects/trrntzip"
  7. SRC_URI="http://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
  8. LICENSE="GPL-2"
  9. SLOT="0"
  10. KEYWORDS="amd64 x86"
  11. IUSE=""
  12. RDEPEND="
  13. sys-libs/zlib"
  14. DEPEND="
  15. ${RDEPEND}
  16. app-arch/unzip"
  17. DOCS=(README AUTHORS)
  18. src_prepare() {
  19. default
  20. export CPPFLAGS+=" -DOF\\(args\\)=args"
  21. eautoreconf
  22. }