| 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.16 2002/10/24 06:08:47 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/skel.ebuild,v 1.17 2002/11/08 22:03:45 seemant 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. |
| … | |
… | |
| 90 | --mandir=/usr/share/man || die "./configure failed" |
90 | --mandir=/usr/share/man || die "./configure failed" |
| 91 | # Note the use of --infodir and --mandir, above. This is to make |
91 | # Note the use of --infodir and --mandir, above. This is to make |
| 92 | # this package FHS 2.2-compliant. For more information, see |
92 | # this package FHS 2.2-compliant. For more information, see |
| 93 | # http://www.pathname.com/fhs/ |
93 | # http://www.pathname.com/fhs/ |
| 94 | |
94 | |
|
|
95 | # Also note that it is cleaner and easier to use econf, which is the |
|
|
96 | # portage shortcut to the above ./configure statement: |
|
|
97 | # |
|
|
98 | # econf |
|
|
99 | |
| 95 | # emake (previously known as pmake) is a script that calls the |
100 | # emake (previously known as pmake) is a script that calls the |
| 96 | # standard GNU make with parallel building options for speedier |
101 | # standard GNU make with parallel building options for speedier |
| 97 | # builds (especially on SMP systems). Try emake first. It might |
102 | # builds (especially on SMP systems). Try emake first. It might |
| 98 | # not work for some packages, in which case you'll have to resort |
103 | # not work for some packages, in which case you'll have to resort |
| 99 | # to normal "make". |
104 | # to normal "make". |
| … | |
… | |
| 116 | # mandir=${D}/usr/share/man \ |
121 | # mandir=${D}/usr/share/man \ |
| 117 | # infodir=${D}/usr/share/info \ |
122 | # infodir=${D}/usr/share/info \ |
| 118 | # install || die |
123 | # install || die |
| 119 | # Again, verify the Makefiles! We don't want anything falling |
124 | # Again, verify the Makefiles! We don't want anything falling |
| 120 | # outside of ${D}. |
125 | # outside of ${D}. |
|
|
126 | |
|
|
127 | # The portage shortcut to the above command is simply: |
|
|
128 | # |
|
|
129 | #einstall || die |
| 121 | } |
130 | } |