diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-14 09:43:44 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-14 09:43:44 +0000 |
commit | 2b0353320a6cd2a47b217f823cedeb6993f716a0 (patch) | |
tree | c08dc4c0dcd080f844f7487742c897ee59e953ed /skel.ebuild | |
parent | Added license for net-analyzer/dsniff called DSNIFF (diff) | |
download | gentoo-2-2b0353320a6cd2a47b217f823cedeb6993f716a0.tar.gz gentoo-2-2b0353320a6cd2a47b217f823cedeb6993f716a0.tar.bz2 gentoo-2-2b0353320a6cd2a47b217f823cedeb6993f716a0.zip |
removed || die from einstall, and added alpha to the list, and made note about unstable/testing profiles
Diffstat (limited to 'skel.ebuild')
-rw-r--r-- | skel.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/skel.ebuild b/skel.ebuild index 5bd79a7c23c1..1de982aa1fff 100644 --- a/skel.ebuild +++ b/skel.ebuild @@ -43,14 +43,17 @@ SLOT="0" # instead of relying on an external package.mask file. Right now, you # should set the KEYWORDS variable for every ebuild so that it contains # the names of all the architectures with which the ebuild works. We have -# 4 official architecture names right now: "x86", "ppc", "sparc" and -# "sparc64". So, if you've confirmed that your ebuild works on x86 and ppc, -# you'd specify: KEYWORDS="x86 ppc" +# 5 official architecture names right now: "~x86", "~ppc", "~sparc", "~sparc64" +# and "~alpha". The ~ in front of the architecture indicates that the +# package is new and should be considered unstable until testing proves its +# stability. Once packages go stable the ~ prefix is removed. +# So, if you've confirmed that your ebuild works on x86 and ppc, +# you'd specify: KEYWORDS="~x86 ~ppc" # For packages that are platform-independant (like Java, PHP or Perl # applications) specify all keywords. # DO NOT USE KEYWORDS="*". This is deprecated and only for backward # compatibility reasons. -KEYWORDS="x86" +KEYWORDS="~x86" # Comprehensive list of any and all USE flags leveraged in the ebuild, # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", @@ -73,7 +76,7 @@ DEPEND="" # Source directory; the dir where the sources can be found (automatically # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} # if you omit this line. -S="${WORKDIR}/${P}" +S=${WORKDIR}/${P} src_compile() { # Most open-source packages use GNU autoconf for configuration. @@ -126,5 +129,5 @@ src_install() { # The portage shortcut to the above command is simply: # - #einstall || die + #einstall } |