blob: 3e92bd65801df62e6f42db040a787e40e60ace85 (
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
29
|
# Copyright 1999-2008 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/freeme2"
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="~amd64 ~x86"
DEPEND="dev-libs/openssl"
S=${WORKDIR}/${PN}
src_unpack() {
subversion_src_unpack
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS README
}
|