diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-07-23 08:15:50 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-07-23 08:15:50 +0000 |
commit | 3b88395acbce084ab451767251d78201a9b5f3d6 (patch) | |
tree | 4e260044521610b1dde2b9f881f7d9a68c3f6d42 /media-sound/ezstream/ezstream-0.5.3.ebuild | |
parent | p.masked, and just found out it doesn't even work (diff) | |
download | historical-3b88395acbce084ab451767251d78201a9b5f3d6.tar.gz historical-3b88395acbce084ab451767251d78201a9b5f3d6.tar.bz2 historical-3b88395acbce084ab451767251d78201a9b5f3d6.zip |
conf.d and init.d files wrt #199602, thanks to Yoann LE TOUCHE.
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'media-sound/ezstream/ezstream-0.5.3.ebuild')
-rw-r--r-- | media-sound/ezstream/ezstream-0.5.3.ebuild | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/media-sound/ezstream/ezstream-0.5.3.ebuild b/media-sound/ezstream/ezstream-0.5.3.ebuild index af1bf41d55d7..fe819a660f01 100644 --- a/media-sound/ezstream/ezstream-0.5.3.ebuild +++ b/media-sound/ezstream/ezstream-0.5.3.ebuild @@ -1,6 +1,9 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.5.3.ebuild,v 1.2 2008/01/13 18:49:03 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.5.3.ebuild,v 1.3 2009/07/23 08:15:50 ssuominen Exp $ + +EAPI=2 +inherit eutils DESCRIPTION="Enables you to stream mp3 or vorbis files to an icecast server without reencoding" HOMEPAGE="http://www.icecast.org/ezstream.php" @@ -22,14 +25,17 @@ RDEPEND="${COMMON_DEPEND} DEPEND="${COMMON_DEPEND} dev-util/pkgconfig" -src_compile() { - econf --enable-examplesdir="/usr/share/doc/${PF}/examples" \ - --docdir="/usr/share/doc/${PF}" $(use_with taglib) - emake || die "emake failed." +src_configure() { + econf \ + --enable-examplesdir=/usr/share/doc/${PF}/examples \ + --docdir=/usr/share/doc/${PF} \ + $(use_with taglib) } src_install() { - emake DESTDIR="${D}" install || die "emake install failed." + emake DESTDIR="${D}" install || die "emake install failed" + newinitd "${FILESDIR}"/${PN}.initd ${PN} || die "newinitd failed" + newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed" rm -f "${D}"/usr/share/doc/${PF}/COPYING dodoc ChangeLog prepalldocs |