diff options
author | 2010-06-03 15:56:52 +0000 | |
---|---|---|
committer | 2010-06-03 15:56:52 +0000 | |
commit | 9123b57541dbe9bc1a140e8be97affe4d79a350f (patch) | |
tree | 57b836a0f77108b81eb39e581f6082d24f9474ef /media-sound | |
parent | x86 stable wrt bug 315775 (diff) | |
download | gentoo-2-9123b57541dbe9bc1a140e8be97affe4d79a350f.tar.gz gentoo-2-9123b57541dbe9bc1a140e8be97affe4d79a350f.tar.bz2 gentoo-2-9123b57541dbe9bc1a140e8be97affe4d79a350f.zip |
Taking over package and bumping to 0.16.1 (bug #303791)
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ncmpc/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/ncmpc/metadata.xml | 5 | ||||
-rw-r--r-- | media-sound/ncmpc/ncmpc-0.16.1.ebuild | 51 |
3 files changed, 62 insertions, 2 deletions
diff --git a/media-sound/ncmpc/ChangeLog b/media-sound/ncmpc/ChangeLog index 08a5bc127e66..4a7c90d77af6 100644 --- a/media-sound/ncmpc/ChangeLog +++ b/media-sound/ncmpc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/ncmpc # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpc/ChangeLog,v 1.50 2010/06/02 06:37:32 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpc/ChangeLog,v 1.51 2010/06/03 15:56:52 angelos Exp $ + +*ncmpc-0.16.1 (03 Jun 2010) + + 03 Jun 2010; Christoph Mende <angelos@gentoo.org> +ncmpc-0.16.1.ebuild, + metadata.xml: + Taking over package and bumping to 0.16.1 (bug #303791) 02 Jun 2010; Torsten Veller <tove@gentoo.org> metadata.xml: Remove omp from metadata.xml (#147119) diff --git a/media-sound/ncmpc/metadata.xml b/media-sound/ncmpc/metadata.xml index 278cbe6430bc..fa3cc5fed402 100644 --- a/media-sound/ncmpc/metadata.xml +++ b/media-sound/ncmpc/metadata.xml @@ -2,8 +2,11 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>sound</herd> + <maintainer> + <email>angelos@gentoo.org</email> + <name>Christoph Mende</name> + </maintainer> <use> - <!-- 0.12 --> <flag name="artist-screen">Enable artist screen</flag> <flag name="colors">Enable color support</flag> <flag name="help-screen">Enable the help screen</flag> diff --git a/media-sound/ncmpc/ncmpc-0.16.1.ebuild b/media-sound/ncmpc/ncmpc-0.16.1.ebuild new file mode 100644 index 000000000000..b0ffe5e7656f --- /dev/null +++ b/media-sound/ncmpc/ncmpc-0.16.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpc/ncmpc-0.16.1.ebuild,v 1.1 2010/06/03 15:56:52 angelos Exp $ + +EAPI=2 +inherit multilib + +DESCRIPTION="A ncurses client for the Music Player Daemon (MPD)" +HOMEPAGE="http://mpd.wikia.com/wiki/Client:Ncmpc" +SRC_URI="http://downloads.sourceforge.net/musicpd/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="artist-screen colors debug +help-screen key-screen lyrics-screen +mouse nls search-screen song-screen" +#lirc + +RDEPEND=">=dev-libs/glib-2.12:2 + dev-libs/popt + media-libs/libmpdclient" +# lirc? ( app-misc/lirc )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + # The use_with lyrics-screen is for multilib + # USE lirc is broken wrt #250015 + # $(use_enable lirc) \ + econf \ + --docdir=${EPREFIX}/usr/share/doc/${PF} \ + --disable-dependency-tracking \ + $(use_enable artist-screen) \ + $(use_enable colors) \ + $(use_enable debug) \ + $(use_enable help-screen) \ + $(use_enable key-screen) \ + $(use_enable lyrics-screen) \ + $(use_with lyrics-screen lyrics-plugin-dir /usr/$(get_libdir)/ncmpc/lyrics) \ + $(use_enable mouse) \ + $(use_enable nls) \ + $(use_enable nls locale) \ + $(use_enable nls multibyte) \ + $(use_enable search-screen) \ + $(use_enable song-screen) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README doc/config.sample doc/keys.sample +} |