123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- #!/bin/sh
- #(c) Copyright Barry Kauler 2009, puppylinux.com
- #2009 Lesser GPL licence v2 (http://www.fsf.org/licensing/licenses/lgpl.html).
- #called from /usr/local/petget/pkg_chooser.sh
- #configure package manager
- #110118 alternate user interfaces.
- #120203 BK: internationalized.
- #120210 01micko: Ziggy ui crashes if *all* repos unticked here (no one would do that, but it is still a bug).
- #120515 in some cases, Packages-puppy-${DISTRO_FILE_PREFIX}-* may not exist (ex, Racy only has Packages-puppy-wary5-official).
- #120529 checkbox to display app thumbnail icons.
- #120811 category field now supports sub-category |category;subcategory|, use as icon in ppm main window. -- always enabled.
- #121102 Packages-puppy-${DISTRO_FILE_PREFIX}- (or Packages-puppy-${DISTRO_COMPAT_VERSION}-) is now Packages-puppy-${DISTRO_DB_SUBNAME}-. refer /etc/DISTRO_SPECS.
- #121129 Update: d/l Packages-puppy-squeeze-official, which wasn't there before, upset this script.
- export TEXTDOMAIN=petget___configure.sh
- export OUTPUT_CHARSET=UTF-8
- . gettext.sh
- #export LANG=C
- . /etc/DISTRO_SPECS #has DISTRO_BINARY_COMPAT, DISTRO_COMPAT_VERSION
- . /etc/rc.d/PUPSTATE
- . /root/.packages/DISTRO_PKGS_SPECS
- . /root/.packages/DISTRO_PET_REPOS
- . /root/.packages/PKGS_MANAGEMENT #has PKG_REPOS_ENABLED
- #find what repos are currently in use... 120510...
- CHECKBOXES_REPOS=""
- #for ONEREPO in `ls -1 /root/.packages/Packages-*`
- #120510 bugfix with ui_Ziggy. add CHECKBOX_MAIN_REPO var to gui
- MAIN_REPO="`ls -1 /root/.packages/Packages-* | grep "puppy\-${DISTRO_DB_SUBNAME}\-" | head -n 1 | sed 's%^/root/.packages/%%'`" #121102 121129
- #120515 hmmm, in some cases, Packages-puppy-${DISTRO_FILE_PREFIX}-* may not exist (ex, Racy only has Packages-puppy-wary5-official)...
- #121102 ...now using DISTRO_DB_SUBNAME, should always exist.
- [ "$MAIN_REPO" = "" ] && MAIN_REPO="`echo "$PACKAGELISTS_PET_ORDER" | tr ' ' '\n' | head -n 1`" #PACKAGELISTS_PET_ORDER is in /root/.packages/DISTRO_PET_REPOS.
- [ "$MAIN_REPO" = "" ] && MAIN_REPO="Packages-puppy-noarch-official" #paranoid precaution.
- bMAIN_PATTERN=' '"$MAIN_REPO"' '
- MAIN_DBNAME="`echo -n "$MAIN_REPO" | sed -e 's%Packages\-%%'`"
- CHECKBOX_MAIN_REPO="<checkbox><default>true</default><label>${MAIN_DBNAME}</label><variable>CHECK_${MAIN_DBNAME}</variable><visible>disabled</visible></checkbox>" #hard coded "true"
- DBFILESLIST="$(ls -1 /root/.packages/Packages-*)" #121129
- PKG_REPOS_ENABLED=" ${PKG_REPOS_ENABLED} " #121129 precaution.
- for ONEREPO in `echo "$DBFILESLIST" | grep -v "${MAIN_REPO}" | tr '\n' ' '` #120515 fix. 121129
- do
- BASEREPO="`basename $ONEREPO`"
- bPATTERN=' '"${BASEREPO}"' '
- DEFAULT='true'
- [ "`echo -n "$PKG_REPOS_ENABLED" | grep "$bPATTERN"`" = "" ] && DEFAULT='false'
- DBNAME="`echo -n "$BASEREPO" | sed -e 's%Packages\-%%'`"
- CHECKBOXES_REPOS="${CHECKBOXES_REPOS}<checkbox><default>${DEFAULT}</default><label>${DBNAME}</label><variable>CHECK_${DBNAME}</variable></checkbox>"
- done
- if [ "$(cat /tmp/pup_event_sizefreem | head -n 1 )" -gt 4000 ]; then
- [ -f /var/local/petget/sc_category ] && \
- CATEGORY_SC=$(cat /var/local/petget/sc_category) || CATEGORY_SC="false"
- SIZEBOX="<checkbox>
- <label>$(gettext 'Skip package size check when more than 4GB of storage is available')</label>
- <variable>CATEGORY_SC</variable>
- <default>${CATEGORY_SC}</default>
- </checkbox>"
- else
- SIZEBOX=''
- fi
- if [ $PUPMODE -eq 3 -o $PUPMODE -eq 7 -o $PUPMODE -eq 13 ]; then
- [ -f /var/local/petget/sc_category ] && \
- CATEGORY_IM=$(cat /var/local/petget/install_mode) || CATEGORY_IM="false"
- IMODE="<checkbox>
- <label>$(gettext 'Install to tmpfs instead of the savefile, till session is saved')</label>
- <variable>CATEGORY_IM</variable>
- <default>${CATEGORY_IM}</default>
- </checkbox>"
- else
- IMODE=''
- fi
- # pet download folder
- SAVEPATH=""
- if [ -f /root/.packages/download_path ]; then
- . /root/.packages/download_path
- if [ -d "$DL_PATH" ];then
- DL_PATH="$DL_PATH"
- else
- DL_PATH=/root
- rm -f /root/.packages/download_path
- fi
- else
- DL_PATH=/root
- fi
- DBmethod="$(cat /var/local/petget/db_verbose)"
- if [ "$DBmethod" = "" ]; then
- echo true > /var/local/petget/db_verbose
- DBmethod=true
- fi
- if [ "$DBmethod" = "false" ]; then
- RXVT="rxvt -title \"$(gettext 'Updating Databases')\" -geometry 110x12+0+200 -bg gray -e "
- else
- RXVT="rxvt -bg yellow -title \"$(gettext 'Databases Update')\" -e "
- fi
- export SETUPCALLEDFROM='ppm'
- S='<window title="'$(gettext 'Puppy Package Manager - Configure')'" icon-name="gtk-about">
- <vbox space-expand="true" space-fill="true">
- <notebook tab-pos="2" labels="'$(gettext 'Choose repositories')'|'$(gettext 'Update database')'|'$(gettext 'Options')'" space-expand="true" space-fill="true">
- <vbox space-expand="true" space-fill="true">
- <frame '$(gettext 'Choose repositories')'>
- <vbox space-expand="false" space-fill="false">
- <hbox space-expand="true" space-fill="true">
- <text xalign="0" space-expand="true" space-fill="true"><label>"'$(gettext "Choose what repositories you would like to have appear in the main GUI window.")'"</label></text>
- <button image-position="2" tooltip-text="'$(gettext 'Adding a new repository currently requires manual editing of some text files. Click this button for further information:')'" space-expand="false" space-fill="false">
- '"`/usr/lib/gtkdialog/xml_button-icon help`"'
- <label>" '$(gettext 'Add new repo')'"</label>
- <action>nohup defaulthtmlviewer file:///usr/local/petget/README-add-repo.htm & </action>
- </button>
- </hbox>
- </vbox>
- <vbox space-expand="true" space-fill="true">
- <vbox scrollable="true" shadow-type="1">
- '${CHECKBOXES_REPOS}'
- '${CHECKBOX_MAIN_REPO}'
- </vbox>
- </vbox>
- </frame>
- </vbox>
- <vbox space-expand="true" space-fill="true">
- <frame '$(gettext 'Update database')'>
- <vbox space-expand="false" space-fill="false">
-
- <hbox space-expand="true" space-fill="true">
- <text xalign="0" space-expand="true" space-fill="true"><label>'$(gettext 'Puppy has a database file for each package repository. This downloads the latest information on what packages are in the repository')'</label></text>
- <button image-position="2" space-expand="false" space-fill="false">
- '"`/usr/lib/gtkdialog/xml_button-icon refresh`"'
- <label>'$(gettext 'Update now')'</label>
- <action>'${RXVT}' /usr/local/petget/0setup</action>
- <action>/usr/local/petget/configure.sh &</action>
- <action>exit:QUIT</action>
- </button>
- </hbox>
- <text space-expand="true" space-fill="true"><label>""</label></text>
- <hbox space-expand="true" space-fill="true">
- <hbox space-expand="false" space-fill="false">
- <vbox space-expand="true" space-fill="true">
- '"`/usr/lib/gtkdialog/xml_pixmap nb.svg`"'
- </vbox>
- </hbox>
- <text xalign="0" yalign="0" space-expand="true" space-fill="true"><label>'$(gettext "Warning: The database information for some repositories is quite large, about 1.5MB for 'slacky' and several MB for Ubuntu/Debian. If you are on dialup, be prepared for this.")'</label></text>
- </hbox>
- </vbox>
- <expander>
- <vbox space-expand="true" space-fill="true">
- <hbox space-expand="true" space-fill="true">
- <hbox space-expand="false" space-fill="false">
- <vbox space-expand="true" space-fill="true">
- '"`/usr/lib/gtkdialog/xml_pixmap info.svg`"'
- </vbox>
- </hbox>
- <text xalign="0" space-expand="true" space-fill="true"><label>'$(gettext "Some repositories are 'fixed' and do not need to be updated. An example of this is the Slackware official version 12.2 repo. An example that does change is the Slackware 'slacky' 12.2 repo which has extra packages for Slackware 12.2. Anyway, to be on the safe side, clicking the above button will update all database files.")'</label></text>
- </hbox>
- <hbox space-expand="true" space-fill="true">
- <hbox space-expand="false" space-fill="false">
- <vbox space-expand="true" space-fill="true">
- '"`/usr/lib/gtkdialog/xml_pixmap info.svg`"'
- </vbox>
- </hbox>
- <text xalign="0" space-expand="true" space-fill="true"><label>'$(gettext 'Technical note: if you would like to see the package databases, they are at')' /root/.packages/Packages-*. '$(gettext 'These are in a standardised format, regardless of which distribution they were obtained from. This format is considerably smaller than that of the original distro.')'</label></text>
- </hbox>
- </vbox>
- <label>'$(gettext 'More info')'</label>
- </expander>
- <text space-expand="true" space-fill="true"><label>""</label></text>
- </frame>
- </vbox>
- <vbox space-expand="true" space-fill="true">
- <frame '$(gettext 'Options')'>
- <checkbox>
- <label>'$(gettext "Show info with configuration changes as startup")'</label>
- <variable>CATEGORY_SI</variable>'
- [ "$(</var/local/petget/si_category)" = "true" ] && S=$S'<default>true</default>'
- S=$S'</checkbox>
- <checkbox>
- <label>'$(gettext "Enable BuildingBlock category (for advanced users only!)")'</label>
- <variable>CATEGORY_BB</variable>'
- [ "$(</var/local/petget/bb_category)" = "true" ] && S=$S'<default>true</default>'
- S=$S'</checkbox>
- <checkbox>
- <label>'$(gettext "Use traditional, non-auto, user interface")'</label>'
- [ "$(</var/local/petget/ui_choice)" = "Classic" ] && S=$S'<default>true</default>'
- S=$S'<action>if true echo Classic > /var/local/petget/ui_choice</action>
- <action>if false echo Ziggy > /var/local/petget/ui_choice</action>
- </checkbox>
- <checkbox>
- <label>'$(gettext "Use the tall version of the new UI (better for small screens)")'</label>'
- [ "$(</var/local/petget/uo_choice)" = "tall" ] && S=$S'<default>true</default>'
- S=$S'<action>if true echo tall > /var/local/petget/uo_choice</action>
- <action>if false echo wide > /var/local/petget/uo_choice</action>
- </checkbox>
- '${SIZEBOX}'
- <checkbox>
- <label>'$(gettext "Do not show the terminal with PPM actions")'</label>
- <variable>CATEGORY_NT</variable>'
- [ "$(</var/local/petget/nt_category)" = "true" ] && S=$S'<default>true</default>'
- S=$S'</checkbox>
- '${IMODE}'
- <checkbox>
- <label>'$(gettext "Always redownload packages when they preexist")'</label>
- <variable>CATEGORY_RD</variable>'
- [ "$(</var/local/petget/rd_category)" = "true" ] && S=$S'<default>true</default>'
- S=$S'</checkbox>
- <checkbox>
- <label>'$(gettext "Do not delete downloaded packages after installation")'</label>
- <variable>CATEGORY_ND</variable>'
- [ "$(</var/local/petget/nd_category)" = "true" ] && S=$S'<default>true</default>'
- S=$S'</checkbox>
- <checkbox tooltip-text="'$(gettext "Verbose method = the user indicates the package databases to update.
- +Silent method = all package databases are automatically updated.")'">
- <label>'$(gettext "Use verbose method during update of the package databases")'</label>
- <default>'$DBmethod'</default>
- <variable>DBmethod</variable>
- <action>if true echo true > /var/local/petget/db_verbose</action>
- <action>if false echo false > /var/local/petget/db_verbose</action>
- <action>/usr/local/petget/configure.sh &</action>
- <action>exit:QUIT</action>
- </checkbox>
- <hbox>
- <text width-request="100"><label>'$(gettext "Save PKGs in:")'</label></text>
- <entry accept="folder" width-request="200" tooltip-text="'$(gettext "To change, type a path to a folder or use the button to select a folder. Delete the present path to default back to /root")'"><default>'${DL_PATH}'</default><variable>SAVEPATH</variable></entry>
- <button>
- <input file stock="gtk-open"></input>
- <action type="fileselect">SAVEPATH</action>
- </button>
- </hbox>
- </frame>
- </vbox>
- </notebook>
- <vbox space-expand="false" space-fill="false">
- <hbox space-expand="true" space-fill="true">
- <text space-expand="true" space-fill="true"><label>""</label></text>
- <hbox space-expand="false" space-fill="false">
- <button>
- '"`/usr/lib/gtkdialog/xml_button-icon cancel`"'
- <label>" '$(gettext 'Cancel')' "</label>
- <action>EXIT:cancel</action>
- </button>
- <button>
- '"`/usr/lib/gtkdialog/xml_button-icon ok`"'
- <label>" '$(gettext 'Ok')' "</label>
- <action>EXIT:OK</action>
- </button>
- '"`/usr/lib/gtkdialog/xml_scalegrip`"'
- </hbox>
- </hbox>
- </vbox>
- </vbox>
- </window>'
- export PPM_CONFIG="$S"
- #echo "$PPM_CONFIG" > /root/gtk
- RETPARAMS="`gtkdialog -p PPM_CONFIG`"
- #ex:
- # CHECK_puppy-2-official="false"
- # CHECK_puppy-3-official="true"
- # CHECK_puppy-4-official="true"
- # CHECK_puppy-woof-official="false"
- # CHECK_ubuntu-intrepid-main="true"
- # CHECK_ubuntu-intrepid-multiverse="true"
- # CHECK_ubuntu-intrepid-universe="true"
- # EXIT="OK"
- [ "`echo -n "$RETPARAMS" | grep 'EXIT' | grep 'OK'`" = "" ] && exit
- echo -n "$RETPARAMS" | grep 'CATEGORY_BB' | cut -d= -f2 | tr -d '"' > /var/local/petget/bb_category
- echo -n "$RETPARAMS" | grep 'CATEGORY_SC' | cut -d= -f2 | tr -d '"' > /var/local/petget/sc_category
- echo -n "$RETPARAMS" | grep 'CATEGORY_NT' | cut -d= -f2 | tr -d '"' > /var/local/petget/nt_category
- echo -n "$RETPARAMS" | grep 'CATEGORY_RD' | cut -d= -f2 | tr -d '"' > /var/local/petget/rd_category
- echo -n "$RETPARAMS" | grep 'CATEGORY_ND' | cut -d= -f2 | tr -d '"' > /var/local/petget/nd_category
- echo -n "$RETPARAMS" | grep 'CATEGORY_SI' | cut -d= -f2 | tr -d '"' > /var/local/petget/si_category
- # handle install mode
- if [ $PUPMODE -eq 3 -o $PUPMODE -eq 7 -o $PUPMODE -eq 13 ]; then
- echo -n "$RETPARAMS" | grep 'CATEGORY_IM' | cut -d= -f2 | tr -d '"' > /var/local/petget/install_mode
- fi
- # handle savepath
- SAVEPATH="`echo -n "$RETPARAMS" | grep 'SAVEPATH' | cut -f 2 -d '"'`"
- if [ "$SAVEPATH" = "" ];then
- rm -f /root/.packages/download_path
- else
- if [ ! -d "$SAVEPATH" ]; then
- mkdir -p "$SAVEPATH"
- [ $? -eq 0 ] && echo DL_PATH=\'$SAVEPATH\' > /root/.packages/download_path
- elif [ -w "$SAVEPATH" ]; then
- echo DL_PATH=\'$SAVEPATH\' > /root/.packages/download_path
- else
- rm -f /root/.packages/download_path
- fi
- fi
- enabledrepos=" "
- #repocnt=1
- for ONEREPO in `echo "$DBFILESLIST" | tr '\n' ' '` #121129
- do
- REPOBASE="`basename $ONEREPO`"
- repoPATTERN="`echo -n "$REPOBASE" | sed -e 's%Packages\\-%%' | sed -e 's%\\-%\\\\-%g'`"
- if [ "`echo "$RETPARAMS" | grep "$repoPATTERN" | grep 'false'`" = "" ];then
- enabledrepos="${enabledrepos}${REPOBASE} "
- # repocnt=`expr $repocnt + 1`
- # [ $repocnt -gt 5 ] && break #only allow 5 active repos in PPM.
- fi
- done
- grep -v '^PKG_REPOS_ENABLED' /root/.packages/PKGS_MANAGEMENT > /tmp/pkgs_management_tmp2
- mv -f /tmp/pkgs_management_tmp2 /root/.packages/PKGS_MANAGEMENT
- echo "PKG_REPOS_ENABLED='${enabledrepos}'" >> /root/.packages/PKGS_MANAGEMENT
- for I in `grep -E "PPM_GUI|pkg_chooser|/usr/local/bin/ppm" <<< "$(ps -eo pid,command)" | awk '{print $1}' `; do kill -9 $I; done
- sleep 0.5
- /usr/local/petget/pkg_chooser.sh &
- ###END###
|