blob: 4a9c690807be833e912dc55285dcd4cdfc6abcd8 (
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.25.ebuild,v 1.3 2005/10/18 18:34:03 sekretarz 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/*
}
|