blob: 31259a9c49cb3f274f32ac1361622d72f617f846 (
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-mobilephone/ringtonetools/ringtonetools-2.24.ebuild,v 1.3 2005/07/31 21:05:33 dertobi123 Exp $
DESCRIPTION="Ringtone Tools is a program for creating ringtones and logos for mobile phones"
HOMEPAGE="http://ringtonetools.mikekohn.net/"
SRC_URI="http://downloads.mikekohn.net/ringtonetools/${P}.tar.gz"
LICENSE="ringtonetools"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
emake FLAGS="${CFLAGS}" || die "make failed"
}
src_install() {
dobin ringtonetools
dodoc docs/*
docinto samples
dodoc samples/*
}
|