Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
xmms-volnorm CVS ebuild
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
Erlend
Guru
Guru


Joined: 26 Dec 2004
Posts: 493

PostPosted: Sun Oct 09, 2005 11:45 am    Post subject: xmms-volnorm CVS ebuild Reply with quote

Here's a quick ebuild I wrote to install xmms-volnorm from cvs:

Code:

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:

IUSE=""

inherit eutils cvs

ECVS_SERVER="cvs.sourceforge.net:/cvsroot/volnorm"
ECVS_MODULE="volnorm"
ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}"
S=${WORKDIR}/${ECVS_MODULE}

DESCRIPTION="Plugin for XMMS, music will be played at the same volume even if it
is recorded at a different volume level"
SRC_URI=""
HOMEPAGE="http://volnorm.sourceforge.net"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~alpha ~amd64 ~sparc"

DEPEND="media-sound/xmms"

src_unpack() {
   cvs_src_unpack || die "no cvs-unpack"
   cd ${S}

   ./autogen.sh || die "autogen.sh failed"
   libtoolize --copy --force || die "libtoolize failed"
}

src_compile() {
   econf
   emake || die "no make"
}

src_install() {
   make DESTDIR="${D}" install || die "make install failed"

   dodoc AUTHORS BUGS ChangeLog NEWS README RELEASE TODO
}


How would this get added to portage?

Erlend
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum