|
From: Christophe Prud'h. <pru...@us...> - 2001-05-15 15:56:54
|
Update of /cvsroot/corelinux/corelinux/debian
In directory usw-pr-cvs1:/tmp/cvs-serv28819
Modified Files:
rules changelog
Added Files:
libcorelinux-doc.prerm libcorelinux-doc.postinst
libcorelinux-dev.files
Log Message:
* fixed problem with .la files
they had the wrong libdir setting
--- NEW FILE ---
#! /bin/sh
# prerm script for kdebase
#
# see: dh_installdeb(1)
set -e
case "$1" in
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
if [ -L /usr/doc/libcorelinux-doc ]; then
rm /usr/doc/libcorelinux-doc
fi
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
--- NEW FILE ---
#! /bin/sh
# postinst script for kdebase
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
ln -s /usr/share/doc/libcorelinux-doc /usr/doc/libcorelinux-doc
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
--- NEW FILE ---
usr/include
usr/lib/libcl++.a
Index: rules
===================================================================
RCS file: /cvsroot/corelinux/corelinux/debian/rules,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** rules 2001/04/26 18:21:17 1.12
--- rules 2001/05/15 15:56:51 1.13
***************
*** 12,16 ****
# This is the debhelper compatibility version to use.
! export DH_COMPAT=2
build: build-stamp
--- 12,16 ----
# This is the debhelper compatibility version to use.
! export DH_COMPAT=3
build: build-stamp
***************
*** 19,23 ****
./autorun.sh
mkdir -p classic
! cd classic && ../configure --prefix=$(top_builddir)/debian/tmp/usr --includedir=`pwd`/debian/tmp/usr/include/corelinux
cd classic/src/classlibs && make
rm -rf classic/doc/html doc/man && cd classic/doc && doxygen corelinux.cfg
--- 19,23 ----
./autorun.sh
mkdir -p classic
! cd classic && ../configure --prefix=/usr --includedir=/usr/include/corelinux
cd classic/src/classlibs && make
rm -rf classic/doc/html doc/man && cd classic/doc && doxygen corelinux.cfg
***************
*** 33,38 ****
# Add here commands to clean up after the build process.
! -cd classic && $(MAKE) clean
! -cd classic && $(MAKE) distclean
# -cd debug && $(MAKE) clean
# -cd debug && $(MAKE) distclean
--- 33,37 ----
# Add here commands to clean up after the build process.
! rm -rf classic
# -cd debug && $(MAKE) clean
# -cd debug && $(MAKE) distclean
***************
*** 47,52 ****
# Add here commands to install the package into debian/tmp.
! cd classic/src/classlibs && $(MAKE) install prefix=$$PWD/../../../debian/tmp/usr includedir=$$PWD/../../../debian/tmp/usr/include/corelinux
! cd classic/corelinux && $(MAKE) install prefix=$PWD/../../debian/tmp/usr includedir=$$PWD/../../debian/tmp/usr/include/corelinux
cd classic/doc && mkdir -p $$PWD/../../debian/tmp/usr/share/doc/libcorelinux-doc && cp -r html $$PWD/../../debian/tmp/usr/share/doc/libcorelinux-doc
--- 46,51 ----
# Add here commands to install the package into debian/tmp.
! cd classic/src/classlibs && $(MAKE) DESTDIR=`pwd`/../../../debian/tmp/usr install
! cd classic/corelinux && $(MAKE) DESTDIR=`pwd`/../../debian/tmp/usr install
cd classic/doc && mkdir -p $$PWD/../../debian/tmp/usr/share/doc/libcorelinux-doc && cp -r html $$PWD/../../debian/tmp/usr/share/doc/libcorelinux-doc
Index: changelog
===================================================================
RCS file: /cvsroot/corelinux/corelinux/debian/changelog,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** changelog 2001/04/26 18:21:17 1.9
--- changelog 2001/05/15 15:56:51 1.10
***************
*** 1,2 ****
--- 1,10 ----
+ libcorelinux (0.4.32-2) unstable; urgency=low
+
+ * now use DESTDIR
+ * fix the problem with .la files, they do not contain the debian install
+ libdir but /usr/lib
+
+ -- Christophe Prud'homme <pru...@mi...> Tue, 15 May 2001 11:52:52 -0400
+
libcorelinux (0.4.32-1) unstable; urgency=low
|