summaryrefslogtreecommitdiff
blob: a7e9aca2d449a7c023cac2a923b0c6959e60d42f (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
# vim: set filetype=ebuild :

# List of stuff this jobuild needs
# Excluding portage config files
SRC_URI="http://dev.gentooexperimental.org/~bheekling/sample-jobfile"
# DEPEND on a jobuild with glee
# The job must be completed in the same chroot
DEPEND="bheekling/test-libbeagle
		bheekling/test-gstreamer
		bheekling/build-glib"
# SuperImpose DEPEND
# When we only need to know that a jobuild finished successfully
# And don't need it's effects on this chroot to continue
SIDEPEND=""

# Unpack SRC_URI
src_unpack() {
	echo 'unpack'
}

# Do work
do_work() {
	echo 'work'
}

# Cleanup
cleanup() {
	echo 'cleanup'
}