1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
This file is really for my use, and is a reminder file to tell me what
to remember to change whenever I do a upstream update to the package.
o remember to change the naming convention from blt2.4? to blt-2.4?
and rebuild the .orig file.
o the demos directory needs sorted out to make lintian happy
o Library naming problems:
- change configure.in (and thus configure)
SHLIB_LD_FLAGS="-shared -Wl,-E -Wl,-soname,libBLT${bltMajor}${bltMinor}.so"
to
SHLIB_LD_FLAGS="-rdynamic -shared -Wl,-E -Wl,-soname,libBLT.${BLT_MAJOR_VERSION}.${BLT_MINOR_VERSION}.so.8.2"
- change pkgIndex.tcl.in
set library BLT${version_no_dots}${suffix}
to
set library BLT${suffix}.${version}
and
if {[package vcompare [info tclversion] 8.2] < 0} {
set library BLT.${version}.so.8.0
} else {
set library BLT.${version}.so.8.2
}
o run makeindex.csh to generate the html index for the commands in both
blt and blt8.0
o remove the annoying rm *pure* part in src/Makefile*
|