diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2013-07-06 18:49:13 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2013-07-06 18:49:13 +0000 |
commit | e345799c5a1c52dcfd0c8bfc2aca49b2fd246a53 (patch) | |
tree | 14929182f077ecb2df66613f486b94bf4996ae87 /media-sound/cmus | |
parent | Carry keywords over from app-emacs/gentoo-syntax, as eselect-mode was effecti... (diff) | |
download | gentoo-2-e345799c5a1c52dcfd0c8bfc2aca49b2fd246a53.tar.gz gentoo-2-e345799c5a1c52dcfd0c8bfc2aca49b2fd246a53.tar.bz2 gentoo-2-e345799c5a1c52dcfd0c8bfc2aca49b2fd246a53.zip |
added prefix support
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'media-sound/cmus')
-rw-r--r-- | media-sound/cmus/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/cmus/cmus-2.5.0-r1.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/media-sound/cmus/ChangeLog b/media-sound/cmus/ChangeLog index 8e9581301427..153341a37c69 100644 --- a/media-sound/cmus/ChangeLog +++ b/media-sound/cmus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/cmus # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.64 2013/05/05 20:11:26 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/ChangeLog,v 1.65 2013/07/06 18:49:13 ottxor Exp $ + + 06 Jul 2013; Christoph Junghans <ottxor@gentoo.org> cmus-2.5.0-r1.ebuild: + added prefix support 05 May 2013; Christian Faulhammer <fauli@gentoo.org> -cmus-2.4.3.ebuild, -cmus-2.5.0.ebuild: diff --git a/media-sound/cmus/cmus-2.5.0-r1.ebuild b/media-sound/cmus/cmus-2.5.0-r1.ebuild index 41bd6b6765a0..a65ef1e6f0e1 100644 --- a/media-sound/cmus/cmus-2.5.0-r1.ebuild +++ b/media-sound/cmus/cmus-2.5.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.5.0-r1.ebuild,v 1.3 2013/05/05 12:09:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/cmus/cmus-2.5.0-r1.ebuild,v 1.4 2013/07/06 18:49:13 ottxor Exp $ EAPI=5 inherit eutils multilib @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/cmus/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" +KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="aac alsa ao cue cdio cddb discid debug examples flac mad mikmod modplug mp4 musepack oss pidgin pulseaudio unicode vorbis wavpack wma zsh-completion" CDEPEND="sys-libs/ncurses[unicode?] @@ -77,14 +77,14 @@ src_configure() { my_config ao CONFIG_AO my_config oss CONFIG_OSS - ./configure prefix=/usr ${myconf} exampledir=/usr/share/doc/${PF}/examples \ - libdir=/usr/$(get_libdir) DEBUG=${debuglevel} || die + ./configure prefix="${EPREFIX}"/usr ${myconf} exampledir="${EPREFIX}"/usr/share/doc/${PF}/examples \ + libdir="${EPREFIX}"/usr/$(get_libdir) DEBUG=${debuglevel} || die } src_install() { default - use examples || rm -rf "${D}"/usr/share/doc/${PF}/examples + use examples || rm -rf "${ED}"/usr/share/doc/${PF}/examples if use zsh-completion; then insinto /usr/share/zsh/site-functions |