diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2003-12-14 23:17:41 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2003-12-14 23:17:41 +0000 |
commit | 781dec4a54795178b9056229e4d8296d418107bb (patch) | |
tree | 83af580dbd30873890a2ad60db896266ff11bbed /media-sound/edna | |
parent | added html docs and did some housecleaning (diff) | |
download | gentoo-2-781dec4a54795178b9056229e4d8296d418107bb.tar.gz gentoo-2-781dec4a54795178b9056229e4d8296d418107bb.tar.bz2 gentoo-2-781dec4a54795178b9056229e4d8296d418107bb.zip |
added html docs and did some housecleaning
Diffstat (limited to 'media-sound/edna')
-rw-r--r-- | media-sound/edna/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/edna/Manifest | 6 | ||||
-rw-r--r-- | media-sound/edna/edna-0.5-r1.ebuild | 56 | ||||
-rw-r--r-- | media-sound/edna/edna-0.5.ebuild | 10 | ||||
-rw-r--r-- | media-sound/edna/files/digest-edna-0.5-r1 | 1 |
5 files changed, 68 insertions, 12 deletions
diff --git a/media-sound/edna/ChangeLog b/media-sound/edna/ChangeLog index 9e2c6f7e1345..9f1ecdfc5ee3 100644 --- a/media-sound/edna/ChangeLog +++ b/media-sound/edna/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/edna # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/edna/ChangeLog,v 1.1 2003/12/14 22:57:58 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/edna/ChangeLog,v 1.2 2003/12/14 23:17:39 nerdboy Exp $ + +*edna-0.5-r1 (14 Dec 2003) + + 14 Dec 2003; <nerdboy@gentoo.org> edna-0.5-r1.ebuild, edna-0.5.ebuild: + added html docs (doh!) and cleaned up ebuilds a bit *edna-0.5 (14 Dec 2003) diff --git a/media-sound/edna/Manifest b/media-sound/edna/Manifest index 06f0c091afae..ac6e971e68d9 100644 --- a/media-sound/edna/Manifest +++ b/media-sound/edna/Manifest @@ -1,7 +1,7 @@ -MD5 c42e8a57b4c256dfcc1927d68be72b3c edna-0.5.ebuild 1439 +MD5 92a49e04d726cb4475afe83f38b9270a edna-0.5.ebuild 1439 MD5 7b52e105c2857fc04035cd20183d8ee2 metadata.xml 324 -MD5 2b1290cf657a25fd02259819c469c3a6 ChangeLog 530 -MD5 54777231564dca5e9a6f325ee5c9d71f edna-0.5-r1.ebuild 1456 +MD5 88618784fb7bff7835e2b528ab8e73fd ChangeLog 530 +MD5 a2ad6cee12469fad06c8872bdbef3a62 edna-0.5-r1.ebuild 1459 MD5 1ec24bb2d64996afa8b8a32d8ba3c39e files/edna.gentoo 492 MD5 0afeb0ec9a434506f2b38f2e66dbb0e3 files/digest-edna-0.5 59 MD5 0afeb0ec9a434506f2b38f2e66dbb0e3 files/digest-edna-0.5-r1 59 diff --git a/media-sound/edna/edna-0.5-r1.ebuild b/media-sound/edna/edna-0.5-r1.ebuild new file mode 100644 index 000000000000..e20c52656e12 --- /dev/null +++ b/media-sound/edna/edna-0.5-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/edna/edna-0.5-r1.ebuild,v 1.1 2003/12/14 23:17:39 nerdboy Exp $ + +# This is Greg Stein's streaming audio server + +IUSE="python ednad" + + +DESCRIPTION="Greg Stein's python streaming audio server for desktop or LAN use" +HOMEPAGE="http://edna.sourceforge.net/" +#SRC_URI="http://edna.sourceforge.net/${P}.tar.gz" +SRC_URI="mirror://sourceforge/edna/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" + +DEPEND="dev-lang/python" + +RDEPEND="${DEPEND}" + +src_install() { + + if [ "`use ednad`" ]; then + einfo "Installing in daemon mode" + insinto /etc/init.d + insopts -m 755 + newins ${FILESDIR}/edna.gentoo edna + exeinto /usr/bin ; doexe daemon/ednad + fi + + dodir /usr/bin /usr/lib/edna /usr/lib/edna/templates + exeinto /usr/bin ; newexe edna.py edna + exeinto /usr/lib/edna ; doexe ezt.py + exeinto /usr/lib/edna ; doexe MP3Info.py + insinto /usr/lib/edna/templates + insopts -m 644 + doins templates/* + + insinto /etc/edna + insopts -m 644 + doins edna.conf + dosym templates /etc/edna/templates + + dodoc COPYING README ChangeLog + dohtml -r www/* +} + +pkg_postinst() { + ewarn + einfo "Edit edna.conf to suite before starting edna and test it." + einfo "Emerge with USE="ednad" if you want to install in daemon" + einfo "mode. See edna.conf and the html docs for more info." + ewarn +} diff --git a/media-sound/edna/edna-0.5.ebuild b/media-sound/edna/edna-0.5.ebuild index d9747b2ed593..38a0c03e9e2b 100644 --- a/media-sound/edna/edna-0.5.ebuild +++ b/media-sound/edna/edna-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/edna/edna-0.5.ebuild,v 1.1 2003/12/14 22:57:58 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/edna/edna-0.5.ebuild,v 1.2 2003/12/14 23:17:39 nerdboy Exp $ # This is Greg Stein's streaming audio server @@ -20,12 +20,6 @@ DEPEND="dev-lang/python" RDEPEND="${DEPEND}" -#src_unpack() { -# unpack ${A} -# cd ${S} -# epatch ${FILESDIR}/edna-make.patch -#} - src_install() { if [ "`use ednad`" ]; then @@ -56,6 +50,6 @@ pkg_postinst() { ewarn einfo "Edit edna.conf to suite before starting edna and test it." einfo "Emerge with USE="ednad" if you want to install in daemon" - einfo "mode. See edna.conf and the homepage for more info." + einfo "mode. See edna.conf and the html docs for more info." ewarn } diff --git a/media-sound/edna/files/digest-edna-0.5-r1 b/media-sound/edna/files/digest-edna-0.5-r1 new file mode 100644 index 000000000000..98bcede95ebc --- /dev/null +++ b/media-sound/edna/files/digest-edna-0.5-r1 @@ -0,0 +1 @@ +MD5 ec3d46b25fa582b78db7c32acf78da47 edna-0.5.tar.gz 85785 |