blob: 87a8ef40bd70c117548edab2783926d71533cf58 (
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
33
34
35
36
37
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Id: envtest-1.2.3-r4.ebuild,v 1.25 2003/04/09 11:00:20 carpaski Exp $
DESCRIPTION="This ebuild display the environment for an ebuild. It's for portage-testing purposes only and will _always_ fail."
HOMEPAGE="http://foo.bar.com/"
SRC_URI="http://gentoo.twobtt.net/portage/portage-2.0.47-r13.tar.bz2"
LICENSE="as-is GPL-2"
SLOT="0"
KEYWORDS="~x86 sparc ppc alpha arm mips"
IUSE=""
DEPEND=">=sys-apps/portage-2.0.47-r10"
S=${WORKDIR}/${P}
src_compile() {
set
die "Died on purpose. You aren't supposed to merge this. Have a nice day. :)"
}
src_install() {
die "Have a nice day!"
}
|