|
From: Christophe Prud'h. <pru...@us...> - 2001-05-15 18:44:47
|
Update of /cvsroot/corelinux/clfw/debian In directory usw-pr-cvs1:/tmp/cvs-serv32433/debian Modified Files: rules postinst libclfw.files control changelog .cvsignore Added Files: libclfw-dev.files Log Message: up to date --- NEW FILE --- usr/include usr/lib/libclfw++.so usr/lib/libclfw++.a Index: rules =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/rules,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** rules 2001/02/15 16:45:32 1.8 --- rules 2001/05/15 18:44:44 1.9 *************** *** 4,16 **** package=libclfw ! version=0.2.6 version_major=0 top_builddir=`pwd` top_srcdir=.. # This is the debhelper compatibility version to use. ! export DH_COMPAT=1 build: build-stamp --- 4,17 ---- package=libclfw ! version=0.2.7 version_major=0 + export DEBIANDIR=`echo $$PWD/debian` top_builddir=`pwd` top_srcdir=.. # This is the debhelper compatibility version to use. ! export DH_COMPAT=3 build: build-stamp *************** *** 18,22 **** dh_testdir ./autorun.sh ! ./configure --prefix=$(top_builddir)/debian/tmp/usr --includedir=`pwd`/debian/tmp/usr/include/clfw make rm -rf doc/html doc/man && cd doc && doxygen clfw.cfg --- 19,23 ---- dh_testdir ./autorun.sh ! ./configure --prefix=/usr --includedir=/usr/include/clfw make rm -rf doc/html doc/man && cd doc && doxygen clfw.cfg *************** *** 44,49 **** # Add here commands to install the package into debian/tmp. ! cd src/libs && $(MAKE) install prefix=$(top_builddir)/../../debian/tmp/usr includedir=$(top_builddir)/../../debian/tmp/usr/include/clfw ! cd clfw/ && $(MAKE) install prefix=$(top_builddir)/../debian/tmp/usr cd doc && mkdir -p $(top_builddir)/../debian/tmp/usr/share/doc/libclfw-doc && cp -r html ../debian/tmp/usr/share/doc/libclfw-doc --- 45,50 ---- # Add here commands to install the package into debian/tmp. ! cd src/libs && $(MAKE) DESTDIR=`pwd`/../../debian/tmp install ! cd clfw/ && $(MAKE) DESTDIR=$(top_builddir)/../debian/tmp install cd doc && mkdir -p $(top_builddir)/../debian/tmp/usr/share/doc/libclfw-doc && cp -r html ../debian/tmp/usr/share/doc/libclfw-doc *************** *** 57,68 **** # find debian/libclfw-examples -name "*.[ch]*[pp]*.gz" | xargs -r gunzip # perl debian/genmake.pl debian/libclfw-examples/usr/share/doc/libclfw-examples/examples ! touch debian/tmp/usr/share/doc/libclfw-doc/html/.dhelp dh_movefiles -plibclfw-doc usr/share/doc/libclfw-doc/html ! dh_undocumented ! dh_installchangelogs ! dh_fixperms ! dh_installdeb # find debian/libclfw-examples -name "*.[ch]*[pp]*" | xargs -r gzip ! dh_compress # Build architecture-dependent files here. --- 58,72 ---- # find debian/libclfw-examples -name "*.[ch]*[pp]*.gz" | xargs -r gunzip # perl debian/genmake.pl debian/libclfw-examples/usr/share/doc/libclfw-examples/examples ! # touch debian/tmp/usr/share/doc/libclfw-doc/html/.dhelp dh_movefiles -plibclfw-doc usr/share/doc/libclfw-doc/html ! dh_undocumented -i ! dh_installchangelogs -i ! dh_fixperms -i ! dh_installdeb -i # find debian/libclfw-examples -name "*.[ch]*[pp]*" | xargs -r gzip ! dh_compress -i ! dh_gencontrol ! dh_md5sums -i ! dh_builddeb -i # Build architecture-dependent files here. *************** *** 70,89 **** dh_testdir dh_testroot ! dh_movefiles -plibclfw-dev usr/include/ usr/lib/lib*.a dh_installmanpages -plibclfw-dev ! dh_undocumented ! dh_installchangelogs ! dh_link ! dh_strip ! dh_compress ! dh_fixperms ! dh_installdeb ! dh_shlibdeps binary: binary-indep binary-arch - dh_gencontrol - dh_md5sums - dh_builddeb .PHONY: build clean binary-indep binary-arch binary install --- 74,96 ---- dh_testdir dh_testroot ! dh_movefiles -a ! dh_installmanpages -plibclfw-dev ! rm $$PWD/debian/libclfw-dev/usr/share/man/man3/namespace_corelinux.3 + dh_undocumented -a + dh_installchangelogs -a + dh_link -a + dh_strip -a + dh_compress -a + dh_makeshlibs -a -V + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol + dh_md5sums -a + dh_builddeb -a binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install Index: postinst =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/postinst,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** postinst 2000/08/30 15:25:35 1.1 --- postinst 2001/05/15 18:44:44 1.2 *************** *** 1,13 **** ! #!/bin/sh set -e - # Automatically added by dh_installdocs - if [ "$1" = "configure" ]; then - if [ -d /usr/doc -a ! -e /usr/doc/libclfw -a -d /usr/share/doc/libclfw ]; then - ln -sf ../share/doc/libclfw /usr/doc/libclfw - fi - - # call ldconfig only if arg is configure - ldconfig - fi - # End automatically added section --- 1,31 ---- ! #! /bin/sh ! # postinst script for kdebase ! # ! # see: dh_installdeb(1) ! set -e + + case "$1" in + configure) + /sbin/ldconfig >/dev/null 2>&1 + if [ -d /usr/doc -a ! -e /usr/doc/libclfw -a -d /usr/share/doc/libclfw ]; then + ln -sf ../share/doc/libclfw /usr/doc/libclfw + fi + ;; + 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 Index: libclfw.files =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/libclfw.files,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** libclfw.files 2000/08/30 14:11:30 1.1 --- libclfw.files 2001/05/15 18:44:44 1.2 *************** *** 1 **** --- 1,2 ---- usr/lib/*.so.* + usr/lib/libclfw++.la Index: control =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/control,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** control 2000/09/01 00:55:44 1.3 --- control 2001/05/15 18:44:44 1.4 *************** *** 1,8 **** Source: libclfw ! Build-Depends: g++, automake, debhelper Section: libs Priority: optional Maintainer: Christophe Prud'homme <pru...@us...> ! Standards-Version: 3.1.1 Package: libclfw --- 1,8 ---- Source: libclfw ! Build-Depends: g++, automake, debhelper, libtool, doxygen, libcorelinux Section: libs Priority: optional Maintainer: Christophe Prud'homme <pru...@us...> ! Standards-Version: 3.5.0 Package: libclfw Index: changelog =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/changelog,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** changelog 2001/02/15 16:45:32 1.7 --- changelog 2001/05/15 18:44:44 1.8 *************** *** 1,2 **** --- 1,15 ---- + libclfw (0.2.7-2) unstable; urgency=low + + * fixed Build-Depends + + -- Christophe Prud'homme <pru...@mi...> Thu, 3 May 2001 11:02:06 -0400 + + libclfw (0.2.7-1) unstable; urgency=low + + * new upstream version + * fixed lintian warnings/errors + + -- Christophe Prud'homme <pru...@mi...> Mon, 30 Apr 2001 20:18:47 -0400 + libclfw (0.2.6-2) unstable; urgency=low Index: .cvsignore =================================================================== RCS file: /cvsroot/corelinux/clfw/debian/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** .cvsignore 2000/09/05 01:21:15 1.2 --- .cvsignore 2001/05/15 18:44:44 1.3 *************** *** 2,5 **** --- 2,6 ---- Makefile.in files + libclfw libclfw-dev libclfw-dev.postinst.debhelper *************** *** 12,15 **** --- 13,17 ---- libclfw-examples.prerm.debhelper postinst.debhelper + postrm.debhelper prerm.debhelper substvars |