blob: c731ed63eb011e11b3123bf7c6f0bdd40e10b2c0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sulu/sulu-0.15.ebuild,v 1.10 2004/09/28 20:22:17 eradicator Exp $
IUSE=""
DESCRIPTION="Samsung Uproar Linux Utility (sulu)"
HOMEPAGE="http://www.cs.toronto.edu/~kal/sulu/index.html"
SRC_URI="http://www.cs.toronto.edu/~kal/sulu/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc sparc amd64"
DEPEND=">=dev-libs/libusb-0.1.7
>=media-sound/lame-3.93.1
virtual/mpg123
=x11-libs/gtk+-1.2*
>=sys-apps/hotplug-20020826"
src_compile() {
make || die
}
src_install() {
dodoc COPYING README changelog todo
docinto notes
cp -a notes/* ${D}/usr/share/doc/${PF}/notes
prepalldocs
exeinto /usr/bin
doexe sulu
exeinto /etc/hotplug/usb
doexe ${FILESDIR}/uproar
insinto /etc/hotplug/usb
doins ${FILESDIR}/uproar.usermap
}
pkg_postinst() {
einfo "Remember to enable hotplug in your kernel and in"
einfo "your default runlevel to use sulu as a user instead"
einfo "of as root."
}
|