you could edit /usr/sbin/checkinstall with a text editor as root and change line 1889 from this:
echo "$NAME: $line" >> ${BUILD_DIR}/install/slack-desc
to this:
echo $line >> ${BUILD_DIR}/install/slack-desc
but if you did that you would have to add the package name to the slack-desc for every package you made with it
Yup, thats what I'm using now, keeps the build data separate from the description.
And about that, I see a lot of the new packages being submitted have the build info included in the description (because it was added to description-pak without the above modification), and then makes the package description longer than 11 lines. Eg:
http://www.vectorlinux.com/forum2/index.php?topic=1784.msg10563;boardseen#newAfter exploded, slack-desc looks like this:
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|' on
# the right side marks the last column you can put a character in. You must make
# exactly 11 lines for the formatting to be correct. It's also customary to
# leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
kdevelop: kdevelop (integrated development environment for kde)
kdevelop:
kdevelop: Kdevelop is an integrated development environment for
kdevelop: KDE. It supports these programming languages:
kdevelop: Ada, Bash, C/C++, Fortran, Haskell, Java, Pascal, Perl, PHP,
kdevelop: Python, Ruby, SQL
kdevelop:
kdevelop: Website: http://www.kdevelop.org/
kdevelop: License: GNU General Public License
kdevelop: Authors: Bernd Gehrmann & others
kdevelop:
kdevelop: #----------------------------------------
kdevelop:
kdevelop: BUILDDATE: Sun Jan 28 21:15:25 GMT+1 2007
kdevelop: PACKAGER: The Headacher
kdevelop: HOST: Linux 2.6.18.5 i686
kdevelop: DISTRO: Vector Linux 5.8 Standard 12-16-2006
kdevelop: CFLAGS: -O2 -march=i586 -mtune=i686
kdevelop: CONFIGURE: $ ./configure --prefix=/opt/kde
Has 19 lines.
Even though it may be a hassle to add the
packagename: lines manually and use the modification that uelsk8s suggested on checkinstall, the build info get properly separated.
Maybe this should be one of the build parameters as well?