Changeset cfdc0f1 for Config.in


Ignore:
Timestamp:
08/27/2006 11:14:01 AM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
9425fd9
Parents:
2b0f8a5
Message:

Started blfs-tool support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Config.in

    r2b0f8a5 rcfdc0f1  
    284284        #--- End HLFS specific params
    285285
     286        #--- blfs-tool Support
     287        config BLFS_TOOL
     288                bool    "Add blfs-tool support"
     289                default n
     290                depends on !BOOK_BLFS
     291                help
     292                        #--- Activating this option additional packages needed to
     293                        #    use blfs-tool will be installed.
     294                        #
     295                        #    The blfs-tool files will be installed under
     296                        #    $BUILD_DIR/blfs_root.
     297
     298                        #    After booting the new xLFS system you should to
     299                        #    create an user account and move the blfs-root
     300                        #    directory to the user's home, making he the
     301                        #    directory and files owner, before start
     302                        #    using blfs-tool.
     303                        #
     304                        #    Also, be sure to create the $TRACKING_DIR directory
     305                        #    and bring to the build user the right privileges
     306                        #    over it.
     307                        #
     308                        #    And don't forget to configure sudo properly.
     309
     310        choice
     311                prompt  "BLFS Release"
     312                default BLFS_SVN
     313                depends on BLFS_TOOL
     314                config  BLFS_SVN
     315                        bool    "BLFS SVN"
     316                        help
     317                                #-- Current development version as in trunk
     318
     319                config  BLFS_BRANCH
     320                        bool    "BLFS Branch or stable book"
     321                        help
     322                                #-- A supported SVN branch or stable released book
     323        endchoice
     324
     325        config  BLFS_BRANCH_ID
     326                string  "BLFS Book Version (mandatory)"
     327                default "**EDIT ME**"
     328                depends on BLFS_BRANCH
     329                help
     330                        #-- A list of valid branches and stable books ID's is available here.
     331                        #   http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
     332
     333        menu "blfs-tool dependencies"
     334                depends on BLFS_TOOL
     335
     336                config  DEP_LIBXML
     337                bool    "libxml2 (required)"
     338                default y
     339
     340                config  DEP_LIBXSLT
     341                bool    "libxslt (required)"
     342                default y
     343
     344                config  DEP_DBXSL
     345                bool    "DocBook XSL (required)"
     346                default y
     347
     348                config  DEP_LINKS
     349                bool    "links (required)"
     350                default y
     351
     352                config  DEP_SUDO
     353                bool    "sudo (recommended)"
     354                default y
     355
     356                config  DEP_WGET
     357                bool    "wget (recommended)"
     358                default y
     359
     360                config  DEP_SVN
     361                bool    "SVN client (optional)"
     362                default y
     363
     364                config  DEP_GPM
     365                bool    "GPM (optional, see help)"
     366                default y
     367                help
     368                        #-- You MUST to install manually the gpm bootscript
     369                        #   and create its configuration file
     370        endmenu
     371        #--- End blfs-tool Support
     372
    286373        #--- BLFS specific params
    287374        config  BLFS_ROOT
    288375                string "Directory root"
    289                 default "$HOME/blfs_root"
    290                 depends on BOOK_BLFS
     376                default "$HOME/blfs_root" if BOOK_BLFS
     377                default "$BUILD_DIR/blfs_root" if BLFS_TOOL
     378                depends on BOOK_BLFS || BLFS_TOOL
    291379                help
    292380                        #-- Full path to the directory where all required
     
    296384                string "BLFS sources directory"
    297385                default "blfs-xml"
    298                 depends on BOOK_BLFS
    299                 help
    300                         #-- The directory name where BLFS book sources
    301                         #   will be checkout.
     386                depends on BOOK_BLFS || BLFS_TOOL
     387                help
     388                        #-- The directory name under $BLFS_ROOT where BLFS book
     389                        #   sources will be checkout.
    302390
    303391        config  TRACKING_DIR
    304392                string "Installed packages database directory"
    305393                default "/var/lib/jhalfs/BLFS"
    306                 depends on BOOK_BLFS
     394                depends on BOOK_BLFS || BLFS_TOOL
    307395                help
    308396                        #-- Full path to the directory where the installed
    309397                        #   packages database will be created.
     398                        #
     399                        #   You MUST to create manually this directory.
    310400                        #
    311401                        #   Note that the user that will build the packages must
Note: See TracChangeset for help on using the changeset viewer.