# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Convert (repair) text based subtitle files" HOMEPAGE="http://bat-kolio.net/" SRC_URI="http://bat-kolio.net/files/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="" RDEPEND="${DEPEND} >=dev-util/cmake-2.4.2" src_compile() { cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr . || die "cmake failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" }