blob: 236ae8b87d4686bf3050159e990d72284f47d513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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_alpha2.ebuild,v 1.2 2005/08/14 16:19:15 zzam Exp $
inherit eutils
SRC_URI="mirror://gentoo/${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"
S=${WORKDIR}/${PN}
src_unpack() {
unpack "${A}"
}
src_install() {
cd ${S}
make install DESTDIR="${D}"
dodoc README TODO
}
pkg_postinst() {
einfo "This packet contains no shutdown-script up to now."
einfo
ewarn "This is an alpha release!"
ewarn "Please test carefully that everything works as expected."
}
|