You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/gmorgan/gmorgan-0.39.ebuild

43 lines
958 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit eutils autotools
MY_P=${PN}_${PV}
DESCRIPTION="Opensource software rhythm station"
HOMEPAGE="http://gmorgan.sourceforge.net/"
SRC_URI="mirror://sourceforge/gmorgan/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
media-libs/alsa-lib
x11-libs/fltk:1"
DEPEND="${RDEPEND}
sys-devel/gettext"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${PN}-cflags.patch"
# Stolen from enlightenment.eclass
cp $(type -p gettextize) "${T}/" || die "Could not copy gettextize"
sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize"
einfo "Running gettextize -f --no-changelog..."
( "${T}/gettextize" -f --no-changelog > /dev/null ) || die "gettexize failed"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS NEWS README || die
}