| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 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.58 2011/04/14 14:30:56 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.60 2011/08/17 19:28:30 ulm 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. |
| … | |
… | |
| 34 | |
34 | |
| 35 | # Short one-line description of this package. |
35 | # Short one-line description of this package. |
| 36 | DESCRIPTION="This is a sample skeleton ebuild file" |
36 | DESCRIPTION="This is a sample skeleton ebuild file" |
| 37 | |
37 | |
| 38 | # Homepage, not used by Portage directly but handy for developer reference |
38 | # Homepage, not used by Portage directly but handy for developer reference |
| 39 | HOMEPAGE="http://foo.bar.com/" |
39 | HOMEPAGE="http://foo.example.org/" |
| 40 | |
40 | |
| 41 | # Point to any required sources; these will be automatically downloaded by |
41 | # Point to any required sources; these will be automatically downloaded by |
| 42 | # Portage. |
42 | # Portage. |
| 43 | SRC_URI="ftp://foo.bar.com/${P}.tar.gz" |
43 | SRC_URI="ftp://foo.example.org/${P}.tar.gz" |
| 44 | |
44 | |
| 45 | |
45 | |
| 46 | # License of the package. This must match the name of file(s) in |
46 | # License of the package. This must match the name of file(s) in |
| 47 | # /usr/portage/licenses/. For complex license combination see the developer |
47 | # /usr/portage/licenses/. For complex license combination see the developer |
| 48 | # docs on gentoo.org for details. |
48 | # docs on gentoo.org for details. |
| … | |
… | |
| 126 | # process should abort if they aren't successful.) |
126 | # process should abort if they aren't successful.) |
| 127 | #./configure \ |
127 | #./configure \ |
| 128 | # --host=${CHOST} \ |
128 | # --host=${CHOST} \ |
| 129 | # --prefix=/usr \ |
129 | # --prefix=/usr \ |
| 130 | # --infodir=/usr/share/info \ |
130 | # --infodir=/usr/share/info \ |
| 131 | # --mandir=/usr/share/man || die "./configure failed" |
131 | # --mandir=/usr/share/man || die |
| 132 | # Note the use of --infodir and --mandir, above. This is to make |
132 | # Note the use of --infodir and --mandir, above. This is to make |
| 133 | # this package FHS 2.2-compliant. For more information, see |
133 | # this package FHS 2.2-compliant. For more information, see |
| 134 | # http://www.pathname.com/fhs/ |
134 | # http://www.pathname.com/fhs/ |
| 135 | #} |
135 | #} |
| 136 | |
136 | |