summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-11-08 22:03:45 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-11-08 22:03:45 +0000
commit91f2e5e6d43785f023d8ce15fe7b82a4ec0e1a3e (patch)
tree59f107bceca422d05a4054bf0e407603a128bfd8 /skel.ebuild
parentsmall fix0rs (diff)
downloadgentoo-2-91f2e5e6d43785f023d8ce15fe7b82a4ec0e1a3e.tar.gz
gentoo-2-91f2e5e6d43785f023d8ce15fe7b82a4ec0e1a3e.tar.bz2
gentoo-2-91f2e5e6d43785f023d8ce15fe7b82a4ec0e1a3e.zip
added note about econf and einstall
Diffstat (limited to 'skel.ebuild')
-rw-r--r--skel.ebuild9
1 files changed, 9 insertions, 0 deletions
diff --git a/skel.ebuild b/skel.ebuild
index 89adf20bf6a9..5bd79a7c23c1 100644
--- a/skel.ebuild
+++ b/skel.ebuild
@@ -92,6 +92,11 @@ src_compile() {
# this package FHS 2.2-compliant. For more information, see
# http://www.pathname.com/fhs/
+ # Also note that it is cleaner and easier to use econf, which is the
+ # portage shortcut to the above ./configure statement:
+ #
+ # econf
+
# emake (previously known as pmake) is a script that calls the
# standard GNU make with parallel building options for speedier
# builds (especially on SMP systems). Try emake first. It might
@@ -118,4 +123,8 @@ src_install() {
# install || die
# Again, verify the Makefiles! We don't want anything falling
# outside of ${D}.
+
+ # The portage shortcut to the above command is simply:
+ #
+ #einstall || die
}