blob: ebf3d5bf8232410ab4c6815f0c17aa80f9a14191 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ringtonetools/ringtonetools-2.18.ebuild,v 1.5 2004/08/03 11:45:49 dholm Exp $
DESCRIPTION="Ringtone Tools is a program for creating ringtones and logos for mobile phones"
HOMEPAGE="http://ringtonetools.mikekohn.net/"
SRC_URI="http://www.mikekohn.com/ringtonetools/${P}.tar.gz"
LICENSE="ringtonetools"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
emake FLAGS="${CFLAGS}" || die
}
src_install() {
dobin ringtonetools || die
dodoc docs/*
docinto samples
dodoc samples/*
}
|