blob: dbe490974efda1aba9574743dbb5b71a8ad90f73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit subversion autotools
ESVN_REPO_URI="https://freeme2.svn.sourceforge.net/svnroot/${PN}"
DESCRIPTION="A utility that strips WM-DRM protection from wmv/asf/wma files as well as video/audio streams"
HOMEPAGE="http://sourceforge.net/projects/freeme2"
SRC_URI=""
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="dev-libs/openssl"
RDEPEND=${DEPEND}
S=${WORKDIR}/${PN}
ESVN_BOOTSTRAP="eautoreconf"
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS README || die "dodoc failed"
}
|