synch stuff

SVN revision: 1335
This commit is contained in:
llane 1999-11-19 13:42:45 +00:00 committed by llane
parent c58c7d411b
commit c6e3fdbac9
4 changed files with 24 additions and 15 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
eterm (0.9.0-0-cvs0a) unstable; urgency=low
* Yet Another CVS Release
-- Laurence John Lane <ljlane@debian.org> Thu, 18 Nov 1999 13:41:21 -0500
eterm (0.9.0-0-cvs00) unstable; urgency=low eterm (0.9.0-0-cvs00) unstable; urgency=low
* changed cvs version numbering * changed cvs version numbering

1
debian/control vendored
View File

@ -13,4 +13,3 @@ Description: Enlightened Terminal Emulator (ala xterm) with Imlib support
Imlib graphics engine is used to render images. This version supports Imlib graphics engine is used to render images. This version supports
background images, pixmap shading/tinting, and pseudo-transparency. background images, pixmap shading/tinting, and pseudo-transparency.
Eterm also now uses libpthreads. Eterm also now uses libpthreads.

2
debian/menu vendored
View File

@ -1,2 +1,2 @@
?package(eterm):needs=X11 section=XShells\ ?package(eterm):needs=X11 section=XShells\
title="Eterm" command="/usr/bin/X11/Eterm" title="Eterm" command="/usr/bin/Eterm"

30
debian/rules vendored
View File

@ -2,45 +2,49 @@
export DH_COMPAT=2 export DH_COMPAT=2
vpath build debian vpath build debian/pmt/
vpath install debian vpath install debian/pmt/
cfg = --prefix=/usr --mandir=/usr/share/man cfg = --prefix=/usr --mandir=/usr/share/man
pwd := $(shell pwd)
build: build:
dh_testdir dh_testdir
test -x autogen.sh && ./autogen.sh $(cfg) || ./configure $(cfg) test -x autogen.sh && ./autogen.sh $(cfg) || ./configure $(cfg)
install -d debian/pmt/
# because glibc 2.1's utmpx.h is incompatible on sparc # because glibc 2.1's utmpx.h is incompatible on sparc
sed 's/#define HAVE_UTMPX_H 1/\/* #undef HAVE_UTMPX_H *\//' config.h > config.h.tmp sed 's/#define HAVE_UTMPX_H 1/\/* #undef HAVE_UTMPX_H *\//' config.h > debian/pmt/config.h
mv config.h.tmp config.h cp debian/pmt/config.h config.h
# fix rpath issues # fix rpath issues
cp libtool libtool-2 cp libtool debian/pmt/libtool
sed \ sed \
-e 's/^hardcode_libdir_flag_spec.*$$/hardcode_libdir_flag_spec="-D__LIBTOOL_IS_A_FOOL__ "/' \ -e 's/^hardcode_libdir_flag_spec.*$$/hardcode_libdir_flag_spec="-D__LIBTOOL_IS_A_FOOL__ "/' \
-e '/^archive_cmds="/s/"$$/ \\$$deplibs"/' libtool-2 > libtool -e '/^archive_cmds="/s/"$$/ \\$$deplibs"/' debian/pmt/libtool > libtool
$(MAKE) $(MAKE)
touch debian/$@ touch debian/pmt/$@
clean: clean:
dh_testdir dh_testdir
dh_testroot dh_testroot
rm -f build-stamp rm -f build-stamp
test -f Makefile && $(MAKE) -k distclean -$(MAKE) -k distclean clean
dh_clean debian/{build,install,libtool-2} rm -rvf debian/pmt/
dh_clean
install: build install: build
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_clean dh_clean
dh_installdirs dh_installdirs
$(MAKE) install DESTDIR=$(shell pwd)/debian/eterm $(MAKE) install DESTDIR=$(pwd)/debian/eterm
touch debian/$@ touch debian/pmt/$@
binary-arch: build install binary-arch: build install
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_installdocs README ReleaseNotes doc/{FAQ.html,Eterm.tcap,Eterm.ti,Eterm_reference.html} dh_installdocs README ReleaseNotes doc/{Eterm.tcap,Eterm.ti,Eterm_reference.html}
dh_installmenu dh_installmenu
dh_undocumented Esetroot.1 Etbg.1 Etcolors.1 Ettable.1 Etwinop.1 dh_undocumented Esetroot.1 Etbg.1 Etcolors.1 Ettable.1 Etwinop.1
dh_installchangelogs dh_installchangelogs
@ -50,7 +54,7 @@ binary-arch: build install
dh_suidregister usr/bin/Eterm dh_suidregister usr/bin/Eterm
dh_installdeb dh_installdeb
dh_makeshlibs dh_makeshlibs
dh_shlibdeps dh_shlibdeps -l$(pwd)/debian/Eterm/usr/lib
dh_gencontrol dh_gencontrol
dh_md5sums dh_md5sums
dh_builddeb dh_builddeb