blob: 21cc980737300338d89895896206052e5458d61a (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/ringtonetools/ringtonetools-2.25.ebuild,v 1.4 2006/01/03 11:36:42 mrness Exp $
DESCRIPTION="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="~amd64 ~ppc x86"
IUSE=""
DEPEND=""
src_compile() {
emake FLAGS="${CFLAGS}" || die "make failed"
}
src_install() {
dobin ringtonetools || die
dodoc docs/*
docinto samples
dodoc samples/*
}
|