annotate net-misc/rabbitmq/rabbitmq-1.3.0.ebuild @ 18:bbf2357b3c0d

version bump to 8.0.1
author holger@hoho.dyndns.org
date Sun, 25 May 2008 17:35:38 +0200
parents 600eb5fd07d5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
1 # Copyright 1999-2008 Gentoo Foundation
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
3 # $Header: $
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
4
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
5 # NOTE: The comments in this file are for instruction and documentation.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
6 # They're not meant to appear with your final, production ebuild. Please
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
7 # remember to remove them before submitting or committing your ebuild. That
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
8 # doesn't mean you can't add your own comments though.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
9
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
10 # The 'Header' on the third line should just be left alone. When your ebuild
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
11 # will be committed to cvs, the details on that line will be automatically
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
12 # generated to contain the correct data.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
13
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
14 # The EAPI variable tells the ebuild format in use.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
15 # Defaults to 0 if not specified. The current PMS draft contains details on
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
16 # a proposed EAPI=0 definition but is not finalized yet.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
17 # Eclasses will test for this variable if they need to use EAPI > 0 features.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
18 # Ebuilds should not define EAPI > 0 unless they absolutely need to use
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
19 # features added in that version.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
20 #EAPI=0
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
21
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
22 # inherit lists eclasses to inherit functions from. Almost all ebuilds should
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
23 # inherit eutils, as a large amount of important functionality has been
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
24 # moved there. For example, the $(get_libdir) mentioned below wont work
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
25 # without the following line:
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
26 inherit eutils
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
27 # A well-used example of an eclass function that needs eutils is epatch. If
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
28 # your source needs patches applied, it's suggested to put your patch in the
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
29 # 'files' directory and use:
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
30 #
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
31 # epatch ${FILESDIR}/patch-name-here
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
32 #
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
33 # eclasses tend to list descriptions of how to use their functions properly.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
34 # take a look at /usr/portage/eclasses/ for more examples.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
35
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
36 # Short one-line description of this package.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
37 DESCRIPTION="This is a sample skeleton ebuild file"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
38
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
39 # Homepage, not used by Portage directly but handy for developer reference
17
600eb5fd07d5 fix download
holger@hoho.dyndns.org
parents: 11
diff changeset
40 HOMEPAGE="http://www.rabbitmq.com/"
11
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
41
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
42 # Point to any required sources; these will be automatically downloaded by
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
43 # Portage.
17
600eb5fd07d5 fix download
holger@hoho.dyndns.org
parents: 11
diff changeset
44 SRC_URI="http://www.rabbitmq.com/releases/binary/${PN}-server-${PV}.tar.gz"
11
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
45
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
46 # License of the package. This must match the name of file(s) in
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
47 # /usr/portage/licenses/. For complex license combination see the developer
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
48 # docs on gentoo.org for details.
17
600eb5fd07d5 fix download
holger@hoho.dyndns.org
parents: 11
diff changeset
49 LICENSE="MPL"
11
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
50
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
51 # The SLOT variable is used to tell Portage if it's OK to keep multiple
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
52 # versions of the same package installed at the same time. For example,
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
53 # if we have a libfoo-1.2.2 and libfoo-1.3.2 (which is not compatible
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
54 # with 1.2.2), it would be optimal to instruct Portage to not remove
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
55 # libfoo-1.2.2 if we decide to upgrade to libfoo-1.3.2. To do this,
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
56 # we specify SLOT="1.2" in libfoo-1.2.2 and SLOT="1.3" in libfoo-1.3.2.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
57 # emerge clean understands SLOTs, and will keep the most recent version
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
58 # of each SLOT and remove everything else.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
59 # Note that normal applications should use SLOT="0" if possible, since
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
60 # there should only be exactly one version installed at a time.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
61 # DO NOT USE SLOT=""! This tells Portage to disable SLOTs for this package.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
62 SLOT="0"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
63
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
64 # Using KEYWORDS, we can record masking information *inside* an ebuild
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
65 # instead of relying on an external package.mask file. Right now, you should
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
66 # set the KEYWORDS variable for every ebuild so that it contains the names of
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
67 # all the architectures with which the ebuild works. All of the official
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
68 # architectures can be found in the keywords.desc file which is in
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
69 # /usr/portage/profiles/. Usually you should just set this to "~x86". The ~
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
70 # in front of the architecture indicates that the package is new and should be
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
71 # considered unstable until testing proves its stability. So, if you've
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
72 # confirmed that your ebuild works on x86 and ppc, you'd specify:
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
73 # KEYWORDS="~x86 ~ppc"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
74 # Once packages go stable, the ~ prefix is removed.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
75 # For binary packages, use -* and then list the archs the bin package
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
76 # exists for. If the package was for an x86 binary package, then
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
77 # KEYWORDS would be set like this: KEYWORDS="-* x86"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
78 # DO NOT USE KEYWORDS="*". This is deprecated and only for backward
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
79 # compatibility reasons.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
80 KEYWORDS="~x86"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
81
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
82 # Comprehensive list of any and all USE flags leveraged in the ebuild,
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
83 # with the exception of any ARCH specific flags, i.e. "ppc", "sparc",
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
84 # "x86" and "alpha". This is a required variable. If the ebuild doesn't
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
85 # use any USE flags, set to "".
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
86 IUSE="gnome X"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
87
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
88 # A space delimited list of portage features to restrict. man 5 ebuild
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
89 # for details. Usually not needed.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
90 #RESTRICT="strip"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
91
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
92 # Build-time dependencies, such as
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
93 # ssl? ( >=dev-libs/openssl-0.9.6b )
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
94 # >=dev-lang/perl-5.6.1-r1
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
95 # It is advisable to use the >= syntax show above, to reflect what you
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
96 # had installed on your system when you tested the package. Then
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
97 # other users hopefully won't be caught without the right version of
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
98 # a dependency.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
99 DEPEND=""
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
100
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
101 # Run-time dependencies. Must be defined to whatever this depends on to run.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
102 # The below is valid if the same run-time depends are required to compile.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
103 RDEPEND="${DEPEND}"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
104
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
105 # Source directory; the dir where the sources can be found (automatically
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
106 # unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
107 # If you don't need to change it, leave the S= line out of the ebuild
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
108 # to keep it tidy.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
109 #S="${WORKDIR}/${P}"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
110
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
111 src_compile() {
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
112 # Most open-source packages use GNU autoconf for configuration.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
113 # The quickest (and preferred) way of running configure is:
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
114 econf || die "econf failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
115 #
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
116 # You could use something similar to the following lines to
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
117 # configure your package before compilation. The "|| die" portion
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
118 # at the end will stop the build process if the command fails.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
119 # You should use this at the end of critical commands in the build
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
120 # process. (Hint: Most commands are critical, that is, the build
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
121 # process should abort if they aren't successful.)
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
122 #./configure \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
123 # --host=${CHOST} \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
124 # --prefix=/usr \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
125 # --infodir=/usr/share/info \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
126 # --mandir=/usr/share/man || die "./configure failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
127 # Note the use of --infodir and --mandir, above. This is to make
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
128 # this package FHS 2.2-compliant. For more information, see
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
129 # http://www.pathname.com/fhs/
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
130
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
131 # emake (previously known as pmake) is a script that calls the
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
132 # standard GNU make with parallel building options for speedier
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
133 # builds (especially on SMP systems). Try emake first. It might
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
134 # not work for some packages, because some makefiles have bugs
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
135 # related to parallelism, in these cases, use emake -j1 to limit
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
136 # make to a single process. The -j1 is a visual clue to others
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
137 # that the makefiles have bugs that have been worked around.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
138 emake || die "emake failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
139 }
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
140
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
141 src_install() {
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
142 # You must *personally verify* that this trick doesn't install
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
143 # anything outside of DESTDIR; do this by reading and
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
144 # understanding the install part of the Makefiles.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
145 # This is the preferred way to install.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
146 emake DESTDIR="${D}" install || die "emake install failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
147
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
148 # When you hit a failure with emake, do not just use make. It is
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
149 # better to fix the Makefiles to allow proper parallelization.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
150 # If you fail with that, use "emake -j1", it's still better than make.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
151
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
152 # For Makefiles that don't make proper use of DESTDIR, setting
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
153 # prefix is often an alternative. However if you do this, then
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
154 # you also need to specify mandir and infodir, since they were
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
155 # passed to ./configure as absolute paths (overriding the prefix
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
156 # setting).
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
157 #emake \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
158 # prefix="${D}"/usr \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
159 # mandir="${D}"/usr/share/man \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
160 # infodir="${D}"/usr/share/info \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
161 # libdir="${D}"/usr/$(get_libdir) \
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
162 # install || die "emake install failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
163 # Again, verify the Makefiles! We don't want anything falling
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
164 # outside of ${D}.
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
165
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
166 # The portage shortcut to the above command is simply:
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
167 #
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
168 #einstall || die "einstall failed"
b1d2c5ed0d7b initial skeleton
holger@hoho.dyndns.org
parents:
diff changeset
169 }