diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-12-05 22:24:31 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-12-05 22:24:31 +0000 |
commit | b681d6bc3fbf982a60c6a4b5080e4659bc93d1af (patch) | |
tree | e5afdc456b1d80ed1aefdaef4a469e63598dff79 /media-sound/ncmpcpp | |
parent | Version bump. (diff) | |
download | gentoo-2-b681d6bc3fbf982a60c6a4b5080e4659bc93d1af.tar.gz gentoo-2-b681d6bc3fbf982a60c6a4b5080e4659bc93d1af.tar.bz2 gentoo-2-b681d6bc3fbf982a60c6a4b5080e4659bc93d1af.zip |
Version bump, and move unicode to eapi-2 style use dep. Add minimal mpd version supported as runtime dependency.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-hh6 i686)
Diffstat (limited to 'media-sound/ncmpcpp')
-rw-r--r-- | media-sound/ncmpcpp/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/media-sound/ncmpcpp/ChangeLog b/media-sound/ncmpcpp/ChangeLog index 6fa731410692..29c9d464a33d 100644 --- a/media-sound/ncmpcpp/ChangeLog +++ b/media-sound/ncmpcpp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/ncmpcpp # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.2 2008/10/15 16:50:50 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.3 2008/12/05 22:24:31 yngwin Exp $ + +*ncmpcpp-0.2.5 (05 Dec 2008) + + 05 Dec 2008; Ben de Groot <yngwin@gentoo.org> +ncmpcpp-0.2.5.ebuild: + Version bump, and move unicode to eapi-2 style use dep. Add minimal mpd + version supported as runtime dependency. *ncmpcpp-0.2.4 (15 Oct 2008) diff --git a/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild new file mode 100644 index 000000000000..b04950d6f494 --- /dev/null +++ b/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild,v 1.1 2008/12/05 22:24:31 yngwin Exp $ + +EAPI="2" +inherit eutils + +DESCRIPTION="An ncurses mpd client, ncmpc clone with some new features, written in C++" +HOMEPAGE="http://unkart.ovh.org/ncmpcpp" +SRC_URI="http://unkart.ovh.org/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +IUSE="curl taglib unicode" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/ncurses[unicode] + curl? ( net-misc/curl ) + taglib? ( media-libs/taglib )" +RDEPEND="${DEPEND} + >=media-sound/mpd-0.14_alpha1" + +src_compile() { + econf $(use_enable unicode) $(use_with curl) $(use_with taglib) \ + || die "configure failed" + emake || die "make failed" +} + +src_install() { + make install DESTDIR="${D}" docdir="${ROOT}/usr/share/doc/${PF}" \ + || die "install failed" + prepalldocs +} + +pkg_postinst() { + echo + elog "Example configuration files have been installed at" + elog "${ROOT}usr/share/doc/${PF}" + elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/keys" + elog "as user configuration files." + echo +} |