linkers-and-loaders-1.ebuild 562 B

1234567891011121314151617181920212223242526
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI="4"
  4. DESCRIPTION="the Linkers and Loaders book"
  5. HOMEPAGE="http://linker.iecc.com/"
  6. SRC_URI="http://wh0rd.org/books/${P}.tar.lzma"
  7. LICENSE="all-rights-reserved"
  8. SLOT="0"
  9. KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
  10. IUSE="doc"
  11. RESTRICT="mirror bindist"
  12. RDEPEND=""
  13. DEPEND="app-arch/xz-utils"
  14. S=${WORKDIR}
  15. src_install() {
  16. dohtml *.html *.jpg
  17. dodoc *.pdf
  18. use doc && dodoc *.txt *.rtf
  19. }