# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="CVS ebuild" LICENSE="GPL" SLOT="0" KEYWORDS="x86" DEPEND="" RDEPEND="" src_unpack() { cd ${WORKDIR} CVS_RSH="ssh" cvs -z3 \ -d:ext:anoncvs@savannah.nongnu.org:/cvsroot/om-synth \ co ${PN} } src_compile() { cd ${WORKDIR}/${PN} ./autogen.sh econf \ --enable-gtk-client \ --enable-patch-loader \ --enable-dssi \ --enable-ladspa \ --enable-alsa \ || die "Failed configuring ${PN}!" emake || die "Failed making ${PN}!" } src_install() { cd ${WORKDIR}/${PN} make DESTDIR=${D} install || die }