26 #
  27 
  28 SHELL=/usr/bin/bash
  29 export SHELL
  30 
  31 RELEASE_DATE=nightly # This is overridden by the checkout
  32 
  33 # Load support functions
  34 . ../../lib/functions.sh
  35 
  36 PROG=omnios    # App name
  37 VER=$RELVER    # App version
  38 PVER=1         # Package Version (numeric only)
  39 
  40 PKG=illumos-gate # Package name (without prefix)
  41 SUMMARY="$PROG" # A short summary of what the app is, starting with its name
  42 DESC="$SUMMARY -- Illumos and some special sauce." # Longer description
  43 
  44 #all of the ips depends should be available from OmniTI repos
  45 
  46 BUILD_DEPENDS_IPS="developer/astdev developer/build/make developer/build/onbld developer/gcc44 developer/java/jdk developer/lexer/flex developer/object-file developer/parser/bison library/glib2 library/libxml2 library/libxslt library/nspr/header-nspr library/perl-5/xml-parser library/security/trousers runtime/perl runtime/perl-64 runtime/perl/manual system/library/install system/library/dbus system/library/libdbus system/library/libdbus-glib system/library/mozilla-nss/header-nss system/management/snmp/net-snmp text/gnu-gettext sunstudio12.1"
  47 
  48 GIT=git
  49 
  50 USE_SYSTEM_SSL_HEADERS="TRUE"
  51 
  52 PKGPREFIX=""
  53 PREFIX=""
  54 TMPDIR=/code    # This directory must be writable as your non-root user
  55 BUILDDIR=$USER-$PROG-$VER
  56 CODEMGR_WS=$TMPDIR/$BUILDDIR/illumos-omnios
  57 
  58 #Since these variables are used in a sed statment make sure to escape properly
  59 ILLUMOS_NO="NIGHTLY\_OPTIONS=\'\-nDCmpr\'"
  60 ILLUMOS_CODEMGR_WS="CODEMGR\_WS=\/code\/$BUILDDIR\/illumos\-omnios"
  61 #ILLUMOS_CLONE_WS="CLONE\_WS=\'ssh:\/\/anonhg@hg.illumos.org\/illumos\-gate\'"
  62 ILLUMOS_CLONE_WS="CLONE\_WS=\'anon@src.omniti.com:~omnios\/core\/illumos\-omnios\'"
  63 
  64 ILLUMOS_PKG_REDIST="PKGPUBLISHER\_REDIST=\'omnios\'"
  65 
  66 #these variables are appended to the end of the script so no need to escape
  
 | 
 
 
  26 #
  27 
  28 SHELL=/usr/bin/bash
  29 export SHELL
  30 
  31 RELEASE_DATE=nightly # This is overridden by the checkout
  32 
  33 # Load support functions
  34 . ../../lib/functions.sh
  35 
  36 PROG=omnios    # App name
  37 VER=$RELVER    # App version
  38 PVER=1         # Package Version (numeric only)
  39 
  40 PKG=illumos-gate # Package name (without prefix)
  41 SUMMARY="$PROG" # A short summary of what the app is, starting with its name
  42 DESC="$SUMMARY -- Illumos and some special sauce." # Longer description
  43 
  44 #all of the ips depends should be available from OmniTI repos
  45 
  46 BUILD_DEPENDS_IPS="developer/versioning/sccs developer/as developer/astdev developer/build/make developer/build/onbld developer/gcc44 developer/java/jdk developer/lexer/flex developer/object-file developer/parser/bison library/glib2 library/libxml2 library/libxslt library/nspr/header-nspr library/perl-5/xml-parser library/security/trousers runtime/perl runtime/perl-64 runtime/perl/manual system/library/install system/library/dbus system/library/libdbus system/library/libdbus-glib system/library/mozilla-nss/header-nss system/management/snmp/net-snmp text/gnu-gettext sunstudio12.1"
  47 
  48 GIT=git
  49 
  50 USE_SYSTEM_SSL_HEADERS="TRUE"
  51 
  52 PKGPREFIX=""
  53 PREFIX=""
  54 TMPDIR=/code    # This directory must be writable as your non-root user
  55 BUILDDIR=$USER-$PROG-$VER
  56 CODEMGR_WS=$TMPDIR/$BUILDDIR/illumos-omnios
  57 
  58 #Since these variables are used in a sed statment make sure to escape properly
  59 ILLUMOS_NO="NIGHTLY\_OPTIONS=\'\-nDCmpr\'"
  60 ILLUMOS_CODEMGR_WS="CODEMGR\_WS=\/code\/$BUILDDIR\/illumos\-omnios"
  61 #ILLUMOS_CLONE_WS="CLONE\_WS=\'ssh:\/\/anonhg@hg.illumos.org\/illumos\-gate\'"
  62 ILLUMOS_CLONE_WS="CLONE\_WS=\'anon@src.omniti.com:~omnios\/core\/illumos\-omnios\'"
  63 
  64 ILLUMOS_PKG_REDIST="PKGPUBLISHER\_REDIST=\'omnios\'"
  65 
  66 #these variables are appended to the end of the script so no need to escape
  
 |