diff options
Diffstat (limited to 'media-tv')
4 files changed, 45 insertions, 1 deletions
diff --git a/media-tv/gentoo-vdr-scripts/ChangeLog b/media-tv/gentoo-vdr-scripts/ChangeLog index f540cecafbaa..9e62f26ce132 100644 --- a/media-tv/gentoo-vdr-scripts/ChangeLog +++ b/media-tv/gentoo-vdr-scripts/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-tv/gentoo-vdr-scripts # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/ChangeLog,v 1.9 2005/10/02 23:23:22 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/ChangeLog,v 1.10 2005/10/03 13:00:57 zzam Exp $ + +*gentoo-vdr-scripts-0.1_alpha6 (03 Oct 2005) + + 03 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> + +gentoo-vdr-scripts-0.1_alpha6.ebuild: + Version bumped. *gentoo-vdr-scripts-0.1_alpha5 (02 Oct 2005) diff --git a/media-tv/gentoo-vdr-scripts/Manifest b/media-tv/gentoo-vdr-scripts/Manifest index 4a7869b87f52..9694942c0d09 100644 --- a/media-tv/gentoo-vdr-scripts/Manifest +++ b/media-tv/gentoo-vdr-scripts/Manifest @@ -1,6 +1,7 @@ MD5 12f6ca6ae2c9f35fa5d52beb6a59d25a gentoo-vdr-scripts-0.1_alpha5.ebuild 1123 MD5 fec382e867028860eca7a47570de139c gentoo-vdr-scripts-0.1_alpha2.ebuild 760 MD5 95ba83ec48404fdd7b7ea09f83f0c498 gentoo-vdr-scripts-0.1_alpha4.ebuild 1060 +MD5 a36761ff3c42f308bcaec39cfdb702e5 gentoo-vdr-scripts-0.1_alpha6.ebuild 1109 MD5 c65d5798b45144fc4a4d77a9594fd150 gentoo-vdr-scripts-0.1_alpha1.ebuild 831 MD5 6e40fa5403e7f7e380669ea7c6b8b733 gentoo-vdr-scripts-0.1_alpha3.ebuild 756 MD5 b06925ef10f04f3793fa3c54d6cc2399 ChangeLog 1879 @@ -11,4 +12,5 @@ MD5 61fda90329ee28df40ec5ee580da49d3 files/digest-gentoo-vdr-scripts-0.1_alpha2 MD5 29ca770b4dbe64180db2b069b2d001bd files/digest-gentoo-vdr-scripts-0.1_alpha3 77 MD5 624ab55224018bedcb517fe98662abab files/digest-gentoo-vdr-scripts-0.1_alpha4 77 MD5 5b37962acc52dc3f26f62566015b1cf8 files/digest-gentoo-vdr-scripts-0.1_alpha5 77 +MD5 558116ce52cb5d07bd745d4635a68ea3 files/digest-gentoo-vdr-scripts-0.1_alpha6 77 MD5 87da33b96f1f2cd1a018545f67f8d0e6 files/gentoo-vdr-scripts-0.1_alpha4-video-parameter.diff 1275 diff --git a/media-tv/gentoo-vdr-scripts/files/digest-gentoo-vdr-scripts-0.1_alpha6 b/media-tv/gentoo-vdr-scripts/files/digest-gentoo-vdr-scripts-0.1_alpha6 new file mode 100644 index 000000000000..c5a42c590b0c --- /dev/null +++ b/media-tv/gentoo-vdr-scripts/files/digest-gentoo-vdr-scripts-0.1_alpha6 @@ -0,0 +1 @@ +MD5 7eaf4a6ac5a2422c7fc7354e36746160 gentoo-vdr-scripts-0.1_alpha6.tgz 12545 diff --git a/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha6.ebuild b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha6.ebuild new file mode 100644 index 000000000000..643111655860 --- /dev/null +++ b/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-tv/gentoo-vdr-scripts/gentoo-vdr-scripts-0.1_alpha6.ebuild,v 1.1 2005/10/03 13:00:57 zzam Exp $ + +inherit eutils + +IUSE="" + +SRC_URI="http://dev.gentoo.org/~zzam/distfiles/${P}.tgz" +DESCRIPTION="scripts necessary for use of vdr as a set-top-box" +HOMEPAGE="http://www.gentoo.org/" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86 ~amd64" + +src_install() { + make install DESTDIR="${D}" || die "make install failed" + dodoc README TODO ChangeLog +} + +pkg_postinst() { + einfo "This release has included" + einfo "shutdown/wakeup-functions." + einfo + einfo "Please add this line to your /etc/sudoers-file" + einfo " vdr ALL=NOPASSWD:/usr/lib/vdr/bin/vdrshutdown-really.sh" + einfo + ewarn "This is an alpha release!" + ewarn "Please test carefully that everything works as expected." + ewarn + ewarn "The default video directory was moved to /var/vdr/video" + ewarn "If you have your video directory anywhere else, then" + ewarn "change the setting VIDEO in the file /etc/conf.d/vdr." +} |