summaryrefslogtreecommitdiff
blob: 10e98d49246f782f2e6b8e0019aae0ceff275ca7 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3

inherit eutils

DESCRIPTION="Test for 386555"
HOMEPAGE="http://dev.gentoo.org/~blueness"
SRC_URI=""

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

src_unpack() {
	mkdir -p "${S}"
}

src_prepare() {
	if has "${EAPI:-0}" 0 1 2 3; then
		ewarn "Going to beep!"
		ebeep 10
	fi
}