liblscp-0.5.6.ebuild 560 B

123456789101112131415161718192021222324
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. DESCRIPTION="a C++ library for the Linux Sampler control protocol"
  4. HOMEPAGE="http://www.linuxsampler.org"
  5. SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.gz"
  6. LICENSE="LGPL-2.1"
  7. SLOT="0"
  8. KEYWORDS="~amd64 ~ppc ~x86"
  9. IUSE="doc"
  10. RDEPEND=""
  11. DEPEND="doc? ( app-doc/doxygen )"
  12. src_install() {
  13. emake DESTDIR="${D}" install || die "emake install failed."
  14. dodoc AUTHORS ChangeLog TODO NEWS README
  15. if use doc; then
  16. dohtml -r doc/html/*
  17. fi
  18. }