Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 685640
Collapse All | Expand All

(-)a/media-video/asfrecorder/asfrecorder-1.1-r1.ebuild (+32 lines)
Line 0 Link Here
1
# Copyright 1999-2019 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
inherit toolchain-funcs
7
8
MY_PN="${PN/asfr/ASFR}"
9
DESCRIPTION="Linux Windows Media Streaming client"
10
HOMEPAGE="https://sourceforge.net/projects/asfrecorder/"
11
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
12
13
LICENSE="public-domain"
14
SLOT="0"
15
KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos"
16
17
BDEPEND="app-arch/unzip"
18
19
S=${WORKDIR}/${MY_PN}
20
21
src_compile() {
22
	# There is a Makefile, but it only works for Cygwin, so we
23
	# only compile this single program.
24
	cd "${S}"/source || die
25
	$(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} ${PN}.c || die "Build failed"
26
}
27
28
src_install () {
29
	# Again, no makefiles, so just take what we want.
30
	dobin source/${PN}
31
	dodoc README.TXT
32
}
(-)a/media-video/asfrecorder/asfrecorder-1.1.ebuild (-2 / +2 lines)
Lines 1-4 Link Here
1
# Copyright 1999-2011 Gentoo Foundation
1
# Copyright 1999-2019 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=4
4
EAPI=4
Lines 6-12 EAPI=4 Link Here
6
inherit toolchain-funcs
6
inherit toolchain-funcs
7
7
8
MY_PN="${PN/asfr/ASFR}"
8
MY_PN="${PN/asfr/ASFR}"
9
DESCRIPTION="ASFRecorder - Download Windows Media Streaming files"
9
DESCRIPTION="Linux Windows Media Streaming client"
10
HOMEPAGE="https://sourceforge.net/projects/asfrecorder/"
10
HOMEPAGE="https://sourceforge.net/projects/asfrecorder/"
11
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
11
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
12
12

Return to bug 685640