| 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 or later |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # Maintainer: First Last <your email> |
|
|
| 4 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.5 2002/04/29 22:56:53 sandymac Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.6 2002/05/07 03:58:19 drobbins Exp $ |
| 5 | |
4 | |
| 6 | # NOTE: The comments in this file are for instruction and |
5 | # NOTE: The comments in this file are for instruction and documentation. |
| 7 | # documentation. They're not meant to appear with your final, |
6 | # They're not meant to appear with your final, production ebuild. Please |
| 8 | # production ebuild. Please remember to remove them before submitting |
7 | # remember to remove them before submitting or committing your ebuild. That |
| 9 | # or committing your ebuild. That doesn't mean you can't add your own |
8 | # doesn't mean you can't add your own comments though. |
| 10 | # comments though. |
|
|
| 11 | |
9 | |
| 12 | # Remember to add the proper Author line, above. |
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 |
|
|
12 | # generated to contain the correct data. |
| 13 | |
13 | |
| 14 | # The 'Header' on the fourth line should just be left alone. |
14 | # Source directory; the dir where the sources can be found (automatically |
| 15 | # When your ebuild will be commited to cvs, the details on that line will |
15 | # unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} |
| 16 | # be automatically generated to contain the correct data. |
16 | # if you omit this line. |
| 17 | |
17 | |
| 18 | # Source directory; the dir where the sources can be found |
|
|
| 19 | # (automatically unpacked) inside ${WORKDIR}. Usually you can just |
|
|
| 20 | # leave this as-is. |
|
|
| 21 | S=${WORKDIR}/${P} |
18 | S=${WORKDIR}/${P} |
| 22 | |
19 | |
| 23 | # Short one-line description of this package. |
20 | # Short one-line description of this package. |
| 24 | DESCRIPTION="This is a sample skeleton ebuild file" |
21 | DESCRIPTION="This is a sample skeleton ebuild file" |
| 25 | |
22 | |
| 26 | # Point to any required sources; these will be automatically |
23 | # Point to any required sources; these will be automatically downloaded by |
| 27 | # downloaded by Portage. |
24 | # Portage. |
| 28 | SRC_URI="ftp://foo.bar.com/${P}.tar.gz" |
25 | SRC_URI="ftp://foo.bar.com/${P}.tar.gz" |
| 29 | |
26 | |
| 30 | # Homepage, not used by Portage directly but handy for developer reference |
27 | # Homepage, not used by Portage directly but handy for developer reference |
| 31 | HOMEPAGE="http://" |
28 | HOMEPAGE="http://" |
| 32 | |
29 | |