diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-12-17 18:49:01 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-12-17 18:49:01 +0000 |
commit | 4b7efecd8c0af8985bf72cd337cd28e952e1461c (patch) | |
tree | bb2021dc544d8b961a92010e116b6ecdbf14b8e7 /media-sound | |
parent | Fixed compilation with --as-needed (bug 206817, patch by Arfrever Frehtes Tai... (diff) | |
download | gentoo-2-4b7efecd8c0af8985bf72cd337cd28e952e1461c.tar.gz gentoo-2-4b7efecd8c0af8985bf72cd337cd28e952e1461c.tar.bz2 gentoo-2-4b7efecd8c0af8985bf72cd337cd28e952e1461c.zip |
Several minor ebuild improvements, thanks to angelos.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-hh8 i686)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ncmpcpp/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild | 17 |
2 files changed, 12 insertions, 10 deletions
diff --git a/media-sound/ncmpcpp/ChangeLog b/media-sound/ncmpcpp/ChangeLog index d3070b09dcad..1421c7dc841f 100644 --- a/media-sound/ncmpcpp/ChangeLog +++ b/media-sound/ncmpcpp/ChangeLog @@ -1,6 +1,9 @@ # 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.5 2008/12/12 20:03:25 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.6 2008/12/17 18:49:01 yngwin Exp $ + + 17 Dec 2008; Ben de Groot <yngwin@gentoo.org> ncmpcpp-0.2.5.ebuild: + Several minor ebuild improvements, thanks to angelos. 12 Dec 2008; Raúl Porcel <armin76@gentoo.org> ncmpcpp-0.2.4.ebuild: x86 stable wrt #249993 diff --git a/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild index b04950d6f494..e9c35a6f74d9 100644 --- a/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild +++ b/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild @@ -1,6 +1,6 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.2.5.ebuild,v 1.2 2008/12/17 18:49:01 yngwin Exp $ EAPI="2" inherit eutils @@ -13,20 +13,16 @@ IUSE="curl taglib unicode" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="sys-libs/ncurses[unicode] +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_configure() { + econf $(use_enable unicode) $(use_with curl) $(use_with taglib) } src_install() { - make install DESTDIR="${D}" docdir="${ROOT}/usr/share/doc/${PF}" \ + emake install DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \ || die "install failed" prepalldocs } @@ -38,4 +34,7 @@ pkg_postinst() { elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/keys" elog "as user configuration files." echo + elog "This version of ncmpcc uses features from mpd-0.14, so" + elog "we recommend you use this with >=mpd-0.14_alpha1." + echo } |