summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/ebuild/files/make.conf')
-rw-r--r--sys-apps/ebuild/files/make.conf50
1 files changed, 50 insertions, 0 deletions
diff --git a/sys-apps/ebuild/files/make.conf b/sys-apps/ebuild/files/make.conf
new file mode 100644
index 000000000000..aa21a1b84d3a
--- /dev/null
+++ b/sys-apps/ebuild/files/make.conf
@@ -0,0 +1,50 @@
+# Copyright 2000 Daniel Robbins, Gentoo Technologies, Inc.
+#
+# /etc/make.conf -- set system-wide compile options in this file
+# Use bash-style semantics, since this will be sourced from bash,
+# rather than by make as under FreeBSD.
+# stuff to add: how to compress manpages
+
+#proxy settings PROXY(both), or HTTP_PROXY/FTP_PROXY
+PROXY=freebox.gentoo.org:3128
+#HTTP_PROXY=
+#FTP_PROXY=
+
+# Host-type
+CHOST=i686-pc-linux-gnu
+
+# Directory used for the build process
+BUILD_PREFIX=/tmp/portage/
+DISTDIR=/usr/portage/distfiles
+PKGDIR=/usr/portage/packages
+RPMDIR=/usr/portage/rpm
+PLATFORM=$CHOST
+
+# Options passed to make during the build process
+MAKEOPTS="-j2"
+
+# Fetching command
+FETCHCOMMAND="/usr/bin/wget --passive-ftp \${x} -P \${DISTDIR}"
+
+# Compile programs with GNOME/SLANG extensions
+USE="gnome slang"
+
+# C Compiler flags
+CFLAGS="-O2 -mpentium"
+
+# C++ Compiler flags
+CXXFLAGS="-O2 -mpentium"
+
+#Debug build -- if defined, binaries won't be stripped
+#DEBUG=true
+
+#Package Mode - tbz2 or tgz (what binary package mode)
+PACKAGE=tbz2
+
+einfo() {
+ echo info:"$*"
+}
+
+eerror() {
+ echo error:"$*"
+}