blob: 8e51227c09c12bbc7ecbfc502eb1a85bf6f14e20 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild,v 1.1 2004/07/17 13:54:27 s4t4n Exp $
inherit eutils
IUSE=""
DESCRIPTION="Window Maker Dockable CD-Player with CDDB"
SRC_URI="http://www.harshbutfair.org/dl/${P}.tar.gz"
HOMEPAGE="http://www.harshbutfair.org/software/wmsvencd.html"
DEPEND="virtual/x11
|| ( >=x11-wm/windowmaker-0.62.0
x11-wm/windowmaker-cvs )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/wmsvencd-compile.patch
}
src_compile() {
emake CFLAGS="${CFLAGS} -fno-strength-reduce" || die "make failed"
}
src_install() {
newman wmsvencd.1x wmsvencd.1
dobin wmsvencd
dodoc README
insinto /usr/share/applications
doins ${FILESDIR}/${PN}.desktop
}
|