| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.11 2002/07/15 11:56:31 blizzy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.15 2002/10/18 18:52:09 blizzy Exp $ |
| 4 | |
4 | |
| 5 | # NOTE: The comments in this file are for instruction and documentation. |
5 | # NOTE: The comments in this file are for instruction and documentation. |
| 6 | # They're not meant to appear with your final, production ebuild. Please |
6 | # They're not meant to appear with your final, production ebuild. Please |
| 7 | # remember to remove them before submitting or committing your ebuild. That |
7 | # remember to remove them before submitting or committing your ebuild. That |
| 8 | # doesn't mean you can't add your own comments though. |
8 | # doesn't mean you can't add your own comments though. |
| … | |
… | |
| 35 | # emerge clean understands SLOTs, and will keep the most recent version |
35 | # emerge clean understands SLOTs, and will keep the most recent version |
| 36 | # of each SLOT and remove everything else. |
36 | # of each SLOT and remove everything else. |
| 37 | # Note that normal applications should use SLOT="0" if possible, since |
37 | # Note that normal applications should use SLOT="0" if possible, since |
| 38 | # there should only be exactly one version installed at a time. |
38 | # there should only be exactly one version installed at a time. |
| 39 | # DO NOT USE SLOT=""! This tells Portage to disable SLOTs for this package. |
39 | # DO NOT USE SLOT=""! This tells Portage to disable SLOTs for this package. |
| 40 | SLOT="1" |
40 | SLOT="0" |
| 41 | |
41 | |
| 42 | # Using KEYWORDS, we can record masking information *inside* an ebuild |
42 | # Using KEYWORDS, we can record masking information *inside* an ebuild |
| 43 | # instead of relying on an external package.mask file. Right now, you |
43 | # instead of relying on an external package.mask file. Right now, you |
| 44 | # should set the KEYWORDS variable for every ebuild so that it contains |
44 | # should set the KEYWORDS variable for every ebuild so that it contains |
| 45 | # the names of all the architectures with which the ebuild works. We have |
45 | # the names of all the architectures with which the ebuild works. We have |
| … | |
… | |
| 49 | # For packages that are platform-independant (like Java, PHP or Perl |
49 | # For packages that are platform-independant (like Java, PHP or Perl |
| 50 | # applications) specify all keywords. |
50 | # applications) specify all keywords. |
| 51 | # DO NOT USE KEYWORDS="*". This is deprecated and only for backward |
51 | # DO NOT USE KEYWORDS="*". This is deprecated and only for backward |
| 52 | # compatibility reasons. |
52 | # compatibility reasons. |
| 53 | KEYWORDS="x86" |
53 | KEYWORDS="x86" |
|
|
54 | |
|
|
55 | # Comprehensive list of any and all USE flags leveraged in the ebuild, |
|
|
56 | # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", |
|
|
57 | # "sparc64", "x86" and "alpha". This is a required variable. If the |
|
|
58 | # ebuild doesn't use any USE flags, set to "". |
|
|
59 | IUSE="X gnome" |
| 54 | |
60 | |
| 55 | # Build-time dependencies, such as |
61 | # Build-time dependencies, such as |
| 56 | # ssl? ( >=openssl-0.9.6b ) |
62 | # ssl? ( >=openssl-0.9.6b ) |
| 57 | # >=perl-5.6.1-r1 |
63 | # >=perl-5.6.1-r1 |
| 58 | # It is advisable to use the >= syntax show above, to reflect what you |
64 | # It is advisable to use the >= syntax show above, to reflect what you |
| … | |
… | |
| 66 | |
72 | |
| 67 | # Source directory; the dir where the sources can be found (automatically |
73 | # Source directory; the dir where the sources can be found (automatically |
| 68 | # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} |
74 | # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} |
| 69 | # if you omit this line. |
75 | # if you omit this line. |
| 70 | |
76 | |
| 71 | S=${WORKDIR}/${P} |
77 | S="${WORKDIR}/${P}" |
| 72 | |
78 | |
| 73 | src_compile() { |
79 | src_compile() { |
| 74 | # Most open-source packages use GNU autoconf for configuration. |
80 | # Most open-source packages use GNU autoconf for configuration. |
| 75 | # You should use something similar to the following lines to |
81 | # You should use something similar to the following lines to |
| 76 | # configure your package before compilation. The "|| die" portion |
82 | # configure your package before compilation. The "|| die" portion |
| … | |
… | |
| 94 | # to normal "make". |
100 | # to normal "make". |
| 95 | emake || die |
101 | emake || die |
| 96 | #make || die |
102 | #make || die |
| 97 | } |
103 | } |
| 98 | |
104 | |
| 99 | src_install () { |
105 | src_install() { |
| 100 | # You must *personally verify* that this trick doesn't install |
106 | # You must *personally verify* that this trick doesn't install |
| 101 | # anything outside of DESTDIR; do this by reading and |
107 | # anything outside of DESTDIR; do this by reading and |
| 102 | # understanding the install part of the Makefiles. |
108 | # understanding the install part of the Makefiles. |
| 103 | make DESTDIR=${D} install || die |
109 | make DESTDIR=${D} install || die |
| 104 | # For Makefiles that don't make proper use of DESTDIR, setting |
110 | # For Makefiles that don't make proper use of DESTDIR, setting |