tapecat-1.0.0.ebuild 528 B

12345678910111213141516171819202122
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. DESCRIPTION="tapecat is a tape utility used to describe the physical content of a tape"
  4. HOMEPAGE="http://www.inventivetechnology.at/tapecat/"
  5. SRC_URI="http://downloads.inventivetechnology.at/${PN}/${P}.tar.bz2"
  6. LICENSE="GPL-2"
  7. SLOT="0"
  8. KEYWORDS="amd64 ppc x86"
  9. IUSE=""
  10. DEPEND="sys-apps/file"
  11. RDEPEND="${DEPEND}"
  12. src_compile() {
  13. emake CFLAGS="${CFLAGS} -Wall -ansi"
  14. }
  15. src_install() {
  16. dobin tapecat
  17. doman tapecat.1
  18. }