As an addendum to my initial post, I am providing more information here, gleaned from "Google" searches, that seems to point the way to where I want to go. These "snippets" are specifically targeted toward RedHat users, but interpolation can be used to make them apply to PCLinuxOS. It appears that making Synaptic recognize custom-burned CD's is not as difficult as I had thought, and that my suppositions about the tree structure for a local repository, as far as using CD's is concerned, was in error. It is important to note, if the information I copied is correct, that packages on disc are given priority over packages on the remote server, only if package versions are the same; newer versions will be downloaded from the remote server. In summary, I think I now have what I need to proceed with my local repository plans, and I will mark this thread [SOLVED] -- although helpful additions are always welcome. What follows below is not my work; it was copied and is essentially unmodified.
=================================================
PREPARING AN APT MIRROR
=================================================
Apt directories require specific structure. The tools required to generate this repository come with the apt rpm package. But first a bit of preparation is required. A release file defines the type of repository; it is shown here:
Archive: stable
Component: os
Version: 7.2
Origin: RedHat
Label: RedHat
Architecture: i386
Then, a second directory tree is constructed and symlinks are generated to the actual rpm files mirrored above. Finally the genbasedir program can be ran to generate the apt database files. We will return to this in a short bit.
The genbasedir tool calls other tools in the apt distribution to generate database files for the packages listed. The main directory of an apt tree, in our case, "redhat-7.2-i386/redhat", is referred to as the distribution. Each distribution has its own line in the sources.list file. Parts of a distribution, such as os, are called components. Each requires its own database. The release file mentioned above is located in the base directory with the name of "release.os" where the suffix names the component it describes.
genbasedir expects a certain directory structure. This must be setup before genbasedir is ran. The directory "redhat-7.2-i386/redhat", which bears the name of the distribution, must contain a base directory for the internal use of apt; i.e., database files will be generated in this dir. It also requires at least one RPMS.XXX directory where the XXX is a name of a component. In our case the component directory is called "RPMS.os", as our only component is the os component. "RPMS.os" can actually be a symlink to the "redhat-7.2-en/os/i386/RedHat/RPMS" directory in our mirror. Once setup, we run genbasedir as follows:
$ genbasedir --topdir=/path/to/apt/tree/ --bloat --bz2only redhat-7.2-i386/redhat os
After running genbasedir, the base subdir will contain a bzipped database files with all the package information. For the above example, the database file is called pkglist.os.bz2. Your repository is now ready to be used by apt-get.
=================================================
ADDING THE PLANET CCRMA CDROMS TO APT
=================================================
This is only needed if you are going to be using the Planet CCRMA cdroms.
If you are installing from the Planet CCRMA cdroms you need to configure apt to use the cdroms in addition to the internet connection to the repository (which is what you just set up by installing the custom sources.list file).
Unmount your Planet CCRMA cdrom first and type:
apt-cdrom add
Insert the first cdrom (it does not matter which) when prompted, and press enter when ready so that apt-cdrom can scan it. When it is done it will prompt for a name for that particular cdrom, just type in whatever you scribbled on it to differentiate it from the other(s). Do the same with the other cdrom(s).
If you now look at the /etc/apt/sources.list file you will see that apt-cdrom has added several lines before the ones that were there before. They start with "rpm cdrom:" instead of "rpm http:" and point to the cdroms you just inserted. From now on apt-get knows about your cdroms (in addition to the Planet CCRMA apt repository) and your cdroms will have precedence over the network when versions match (the network URLs will override the cdrom if the online version of a package is newer than the cdrom version).
If you ever want to get rid of the cdroms just erase those lines from /etc/apt/sources.list (or comment them out by prepending a "#") and do an "apt-get update".
That's it. If something you want to install is in the cdroms you will be prompted by apt-get (or synaptic, see below) to insert it and the packages will be copied from it to the hard disk before the installation begins. If there is a newer version in the CCRMA apt repository, it will be downloaded instead.
If you do not have a network connection at all in the install machine you should comment out all the /etc/apt/sources.list entries that begin with "rpm http:". In that way apt will not try to load the network repository apt databases. Caveat: if you do not have the full set of Planet CCRMA cdroms (including the custom RedHat install cdroms) you may not be able to install all Planet CCRMA packages if you did not originally install all RedHat packages. Some Planet CCRMA packages may depend on original RedHat packages that are not installed in your computer, and the apt database only knows about what you have installed and the cdroms you have fed to apt-cdrom.
Caveat: depending on your desktop settings it might happen that the desktop itself mounts the cdrom before apt-cdrom gets to see it and then the subsequent mount attempt will fail (and you have to unmount and try again). You'll have to be fast or just disable the obnoxious (IMHO) automatic mounting of removable media in your desktop of choice (for Gnome go to "Settings", "Peripherials" and "CD Properties" and uncheck the autorun boxes -- for manual "gui" oriented mounting you can always add the "Drive Mount" applet to your panel and configure it to point to the cdrom drive).
=================================================
SYNCHRONIZING WITH THE REPOSITORY
=================================================
After you have configured apt (and maybe added the cdroms to the mix) type:
apt-get update
This will load the package database from the Planet CCRMA repository. You will have to do that whenever you start a new session of upgrades or installs as the repository might have changed since the last time you accessed it.