| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.16 2002/10/24 06:08:47 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.26 2004/03/11 22:38:25 mr_bones_ 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. |
| 9 | |
9 | |
| 10 | # The 'Header' on the third line should just be left alone. When your ebuild |
10 | # The 'Header' on the third line should just be left alone. When your ebuild |
| 11 | # will be commited to cvs, the details on that line will be automatically |
11 | # will be committed to cvs, the details on that line will be automatically |
| 12 | # generated to contain the correct data. |
12 | # generated to contain the correct data. |
| 13 | |
13 | |
| 14 | # Short one-line description of this package. |
14 | # Short one-line description of this package. |
| 15 | DESCRIPTION="This is a sample skeleton ebuild file" |
15 | DESCRIPTION="This is a sample skeleton ebuild file" |
| 16 | |
16 | |
| … | |
… | |
| 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 |
| 46 | # 4 official architecture names right now: "x86", "ppc", "sparc" and |
46 | # 4 official architecture names right now: "~x86", "~ppc", "~sparc" |
|
|
47 | # and "~alpha". The ~ in front of the architecture indicates that the |
|
|
48 | # package is new and should be considered unstable until testing proves its |
|
|
49 | # stability. Once packages go stable the ~ prefix is removed. |
| 47 | # "sparc64". So, if you've confirmed that your ebuild works on x86 and ppc, |
50 | # So, if you've confirmed that your ebuild works on x86 and ppc, |
| 48 | # you'd specify: KEYWORDS="x86 ppc" |
51 | # you'd specify: KEYWORDS="~x86 ~ppc" |
| 49 | # For packages that are platform-independant (like Java, PHP or Perl |
52 | # For packages that are platform-independent (like Java, PHP or Perl |
| 50 | # applications) specify all keywords. |
53 | # applications) specify all keywords. |
|
|
54 | # For binary packages, use -* and then list the archs the bin package |
|
|
55 | # exists for. If the package was for an x86 binary package, then |
|
|
56 | # KEYWORDS would be set like this: KEYWORDS="-* x86" |
| 51 | # DO NOT USE KEYWORDS="*". This is deprecated and only for backward |
57 | # DO NOT USE KEYWORDS="*". This is deprecated and only for backward |
| 52 | # compatibility reasons. |
58 | # compatibility reasons. |
| 53 | KEYWORDS="x86" |
59 | KEYWORDS="~x86" |
| 54 | |
60 | |
| 55 | # Comprehensive list of any and all USE flags leveraged in the ebuild, |
61 | # 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", |
62 | # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", |
| 57 | # "sparc64", "x86" and "alpha". This is a required variable. If the |
63 | # "x86" and "alpha". This is a required variable. If the |
| 58 | # ebuild doesn't use any USE flags, set to "". |
64 | # ebuild doesn't use any USE flags, set to "". |
| 59 | IUSE="X gnome" |
65 | IUSE="X gnome" |
| 60 | |
66 | |
| 61 | # Build-time dependencies, such as |
67 | # Build-time dependencies, such as |
| 62 | # ssl? ( >=openssl-0.9.6b ) |
68 | # ssl? ( >=dev-libs/openssl-0.9.6b ) |
| 63 | # >=perl-5.6.1-r1 |
69 | # >=dev-lang/perl-5.6.1-r1 |
| 64 | # It is advisable to use the >= syntax show above, to reflect what you |
70 | # It is advisable to use the >= syntax show above, to reflect what you |
| 65 | # had installed on your system when you tested the package. Then |
71 | # had installed on your system when you tested the package. Then |
| 66 | # other users hopefully won't be caught without the right version of |
72 | # other users hopefully won't be caught without the right version of |
| 67 | # a dependency. |
73 | # a dependency. |
| 68 | DEPEND="" |
74 | DEPEND="" |
| 69 | |
75 | |
| 70 | # Run-time dependencies, same as DEPEND if RDEPEND isn't defined: |
76 | # Run-time dependencies, same as DEPEND if RDEPEND isn't defined: |
| 71 | #RDEPEND="" |
77 | #RDEPEND="" |
| 72 | |
78 | |
| 73 | # Source directory; the dir where the sources can be found (automatically |
79 | # Source directory; the dir where the sources can be found (automatically |
| 74 | # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} |
80 | # unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P} |
| 75 | # if you omit this line. |
81 | # If you don't need to change it, leave the S= line out of the ebuild |
|
|
82 | # to keep it tidy. |
| 76 | S="${WORKDIR}/${P}" |
83 | S=${WORKDIR}/${P} |
| 77 | |
84 | |
| 78 | src_compile() { |
85 | src_compile() { |
| 79 | # Most open-source packages use GNU autoconf for configuration. |
86 | # Most open-source packages use GNU autoconf for configuration. |
| 80 | # You should use something similar to the following lines to |
87 | # You should use something similar to the following lines to |
| 81 | # configure your package before compilation. The "|| die" portion |
88 | # configure your package before compilation. The "|| die" portion |
| … | |
… | |
| 90 | --mandir=/usr/share/man || die "./configure failed" |
97 | --mandir=/usr/share/man || die "./configure failed" |
| 91 | # Note the use of --infodir and --mandir, above. This is to make |
98 | # Note the use of --infodir and --mandir, above. This is to make |
| 92 | # this package FHS 2.2-compliant. For more information, see |
99 | # this package FHS 2.2-compliant. For more information, see |
| 93 | # http://www.pathname.com/fhs/ |
100 | # http://www.pathname.com/fhs/ |
| 94 | |
101 | |
|
|
102 | # Also note that it is cleaner and easier to use econf, which is the |
|
|
103 | # portage shortcut to the above ./configure statement: |
|
|
104 | # |
|
|
105 | # econf || die |
|
|
106 | # Note that econf will die on failure, but please use econf || die |
|
|
107 | # for consistency. |
|
|
108 | |
| 95 | # emake (previously known as pmake) is a script that calls the |
109 | # emake (previously known as pmake) is a script that calls the |
| 96 | # standard GNU make with parallel building options for speedier |
110 | # standard GNU make with parallel building options for speedier |
| 97 | # builds (especially on SMP systems). Try emake first. It might |
111 | # builds (especially on SMP systems). Try emake first. It might |
| 98 | # not work for some packages, in which case you'll have to resort |
112 | # not work for some packages, because some makefiles have bugs |
| 99 | # to normal "make". |
113 | # related to parallelism, in these cases, use emake -j1 to limit |
| 100 | emake || die |
114 | # make to a single process. The -j1 is a visual clue to others |
| 101 | #make || die |
115 | # that the makefiles have bugs that have been worked around. |
|
|
116 | emake || die "emake failed" |
| 102 | } |
117 | } |
| 103 | |
118 | |
| 104 | src_install() { |
119 | src_install() { |
| 105 | # You must *personally verify* that this trick doesn't install |
120 | # You must *personally verify* that this trick doesn't install |
| 106 | # anything outside of DESTDIR; do this by reading and |
121 | # anything outside of DESTDIR; do this by reading and |
| … | |
… | |
| 116 | # mandir=${D}/usr/share/man \ |
131 | # mandir=${D}/usr/share/man \ |
| 117 | # infodir=${D}/usr/share/info \ |
132 | # infodir=${D}/usr/share/info \ |
| 118 | # install || die |
133 | # install || die |
| 119 | # Again, verify the Makefiles! We don't want anything falling |
134 | # Again, verify the Makefiles! We don't want anything falling |
| 120 | # outside of ${D}. |
135 | # outside of ${D}. |
|
|
136 | |
|
|
137 | # The portage shortcut to the above command is simply: |
|
|
138 | # |
|
|
139 | #einstall || die |
|
|
140 | # Note that einstall will die on failure, but please use einstall || die |
|
|
141 | # for consistency. |
| 121 | } |
142 | } |