################################################################################ # autoports - an attempt to implement something like bsd ports on linux. # # See /usr/autoports/conf/autoports.conf for some hints on settings. # # Created 4/9/2002 by Mike Green # # Licensed under the GPLv2. # ################################################################################ # autoports.conf - global configuration file for autoports. # # Most of these values can be overridden via environment variables. # ################################################################################ # ---------------------------------------------------------------------------- # # Directory locations - can be set via environment or default to these values. # # ---------------------------------------------------------------------------- # [ "$AP_ROOT" ] || AP_ROOT=/usr/autoports [ "$AP_SRC" ] || AP_SRC=${AP_ROOT}/distfiles [ "$AP_CODE" ] || AP_CODE=${AP_ROOT}/packages [ "$AP_BUILD" ] || AP_BUILD=${AP_ROOT}/build [ "$AP_TMP" ] || AP_TMP=/tmp/work [ "$AP_CR" ] || AP_CR=/storage03/cleanroom # ---------------------------------------------------------------------------- # # CD mount points/devices to look for source tarballs or compiled packages to # # install. By default it will look for MNT/distfiles. # # ---------------------------------------------------------------------------- # [ "$CD_MOUNTPTS" ] || CD_MOUNTPTS="/cdrom /mnt/cdrom" [ "$CD_DEVS" ] || CD_DEVS="/dev/cdrom" [ "$CD_DISTDIR" ] || CD_DISTDIR="/distfiles" # ---------------------------------------------------------------------------- # # make settings # # ---------------------------------------------------------------------------- # [ "$ARCH" ] || ARCH=`uname -m` ################################################################################ # Version settings # ################################################################################ [ $KERNEL_VER ] || KERNEL_VER=2.4.22 KERNEL_CC=/opt/gcc-2.95.3/bin/gcc KDE_VER=3.1.4 QT_VER=3.2.1 GLIBC_VER=2.3.2 PERL_VER=5.8.1 JAVA_VER=1.4.1 # ---------------------------------------------------------------------------- # # commands used to fetch source tarballs, patches, etc.. # # ---------------------------------------------------------------------------- # FTP_FETCH_CMD="/usr/bin/ncftpget" HTTP_FETCH_CMD="/usr/bin/wget" #FTP_FETCH_CMD="/usr/bin/wget" #HTTP_FETCH_CMD="/usr/bin/wget" #FTP_FETCH_BEFORE_ARGS #FTP_FETCH_AFTER_ARGS #FTP_FETCH_ENV #HTTP_FETCH_BEFORE_ARGS #HTTP_FETCH_AFTER_ARGS #HTTP_FETCH_ENV #FTP_FETCH_CMD="/usr/bin/wget" #HTTP_FETCH_CMD="/usr/bin/wget" #FETCH_AFTER_ARGS="-O \$AP_SRC/\$DISTFILE" # ---------------------------------------------------------------------------- # # master sites to retrieve files from # # ---------------------------------------------------------------------------- # MASTER_SITE_GNOME=ftp://ftp.gnome.org/pub/GNOME MASTER_SITE_GNU=ftp://ftp.gnu.org/gnu/ MASTER_SITE_KDE=ftp://ftp.us.kde.org/pub/kde #MASTER_SITE_PERL_CPAN="http://www.cpan.org" MASTER_SITE_PERL_CPAN=http://cpan.valueclick.com/modules/by-module MASTER_SITE_SOURCEFORGE=ftp://ftp2.sourceforge.net/pub/sourceforge/ MASTER_SITE_SUNSITE=http://www.ibiblio.org/pub/Linux MASTER_SITE_THEMES=ftp://ftp.themes.org/pub/themes/%SUBDIR%/ MASTER_SITE_XCONTRIB=ftp://ftp.x.org/contrib MASTER_SITE_XFREE=ftp://ftp.xfree86.org/pub/XFree86/%SUBDIR%/source/ MASTER_SITE_AFTERSTEP=ftp://ftp.afterstep.org # ---------------------------------------------------------------------------- # # Packages needed to compile other packages # # ---------------------------------------------------------------------------- # DEV_DEPENDS="\ /usr/bin/ar:${AP_BUILD}/devel/binutils \ /usr/bin/gcc:${AP_BUILD}/devel/gcc \ $KERNEL_CC:${AP_BUILD}/devel/gcc2-core \ /usr/include/linux/autoconf.h:${AP_BUILD}/devel/linux-include \ /usr/bin/gettext:${AP_BUILD}/devel/gettext \ /usr/bin/gawk:${AP_BUILD}/lang/gawk \ /usr/bin/make:${AP_BUILD}/devel/make \ /usr/bin/patch:${AP_BUILD}/devel/patch \ /usr/bin/info:${AP_BUILD}/print/texinfo \ /usr/bin/perl:${AP_BUILD}/lang/perl5 \ /usr/bin/m4:${AP_BUILD}/devel/m4 \ /usr/bin/bison:${AP_BUILD}/devel/bison \ /usr/bin/flex:${AP_BUILD}/devel/flex \ /usr/bin/autoconf:${AP_BUILD}/devel/autoconf \ /usr/bin/automake:${AP_BUILD}/devel/automake \ /usr/bin/libtool:${AP_BUILD}/devel/libtool \ /usr/bin/man:${AP_BUILD}/textproc/man \ /usr/bin/as86:${AP_BUILD}/devel/bin86 \ /usr/bin/nasm:${AP_BUILD}/devel/nasm \ /usr/bin/which:${AP_BUILD}/misc/which \ /usr/bin/wget:${AP_BUILD}/www/wget \ /usr/bin/ncftp:${AP_BUILD}/ftp/ncftp"