You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
# NOTE:
|
|
# - This file (software.sh) is sourced by genkernel.
|
|
# Rather than changing this very file, please override specific versions/variables
|
|
# somewhere in /etc/genkernel.conf .
|
|
#
|
|
# - Any VERSION_* magic strings below will be filled (or already have been)
|
|
# with actual version strings by the genkernel ebuild.
|
|
#
|
|
# - This file should not override previously defined variables, as their values may
|
|
# originate from user changes to /etc/genkernel.conf .
|
|
|
|
BUSYBOX_VER="${BUSYBOX_VER:-VERSION_BUSYBOX}"
|
|
BUSYBOX_SRCTAR="${BUSYBOX_SRCTAR:-${DISTDIR}/busybox-${BUSYBOX_VER}.tar.bz2}"
|
|
BUSYBOX_DIR="${BUSYBOX_DIR:-busybox-${BUSYBOX_VER}}"
|
|
BUSYBOX_BINCACHE="${BUSYBOX_BINCACHE:-%%CACHE%%/busybox-${BUSYBOX_VER}-%%ARCH%%.tar.bz2}"
|
|
|
|
ISCSI_VER="${ISCSI_VER:-VERSION_ISCSI}"
|
|
ISCSI_DIR="${ISCSI_DIR:-open-iscsi-${ISCSI_VER}}"
|
|
ISCSI_SRCTAR="${ISCSI_SRCTAR:-${DISTDIR}/open-iscsi-${ISCSI_VER}.tar.gz}"
|
|
ISCSI_BINCACHE="${ISCSI_BINCACHE:-%%CACHE%%/iscsi-${ISCSI_VER}-%%ARCH%%.bz2}"
|
|
|
|
GPG_VER="${GPG_VER:-VERSION_GPG}"
|
|
GPG_DIR="${GPG_DIR:-gnupg-${GPG_VER}}"
|
|
GPG_SRCTAR="${GPG_SRCTAR:-${DISTDIR}/gnupg-${GPG_VER}.tar.bz2}"
|
|
GPG_BINCACHE="${GPG_BINCACHE:-%%CACHE%%/gnupg-${GPG_VER}-%%ARCH%%.bz2}"
|