blob: 3de4f5ab72e484d447f6ee75829495c343b7f39a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ifp-line/ifp-line-0.2.4.5.ebuild,v 1.3 2005/01/01 15:07:20 eradicator Exp $
IUSE=""
DESCRIPTION="iRiver iFP open-source driver"
HOMEPAGE="http://ifp-driver.sourceforge.net/"
SRC_URI="mirror://sourceforge/ifp-driver/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 sparc ~ppc x86"
DEPEND="dev-libs/libusb"
src_install() {
dobin ifp || die
dodoc NEWS README TIPS
}
pkg_postinst() {
ewarn "to use ifp-line as non-root user, please follow"
ewarn "the instructions in /usr/share/doc/${PF}/TIPS.gz"
}
|