blob: 47ac6f1f39087e4c3ccd810e7bfdf9792e4c85ce (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header:
DESCRIPTION="Utility for the Diamond Rio 300 portable MP3 player"
SRC_URI="http://www.world.co.uk/sba/${PN}007.tgz"
HOMEPAGE="http://www.world.co.uk/sba/rio.html"
SLOT="0"
KEYWORDS="~x86"
LICENSE="GPL-2"
DEPEND="virtual/glibc"
RDEPEND=""
UNPACKDIR=rio107
S=${WORKDIR}/${UNPACKDIR}
src_compile() {
emake || die
}
src_install() {
into /usr
dobin rio
dodoc CREDITS README gpl.txt playlist.txt rio.txt
}
pkg_postinst() {
einfo
einfo "Warning! The /usr/bin/rio binary is installed SUID/GUID root."
einfo
}
|