* src/Makefile.am, doc/man/Makefile.am:

+ Create symlinks at install time.
  * debian/rules:
    + Moved manpages to /usr/share/man (Closes: #210894).
    + Ignore plugins in the dh_makeshlibs call.
    + Removed the elk->scheme-elk link, it is done at make install time.


git-svn-id: svn://svn.zoy.org/elk/trunk@152 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-15 08:46:36 +00:00
parent f24d3937b5
commit 9234eef52b
4 changed files with 14 additions and 2 deletions

4
debian/changelog vendored
View File

@ -3,6 +3,10 @@ elk (3.99.2-1) unstable; urgency=low
* New upstream release.
* Documentation is now built instead of being shipped in the tarball.
* Fixed a bug in the garbage collector.
* debian/rules:
+ Moved manpages to /usr/share/man (Closes: #210894).
+ Ignore plugins in the dh_makeshlibs call.
+ Removed the elk->scheme-elk link, it is done at make install time.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sat, 13 Sep 2003 08:33:15 +0200

4
debian/rules vendored
View File

@ -16,7 +16,7 @@ configure: configure-stamp
configure-stamp:
dh_testdir
./configure --prefix=/usr
./configure --prefix=/usr --mandir=/usr/share/man
touch configure-stamp
@ -112,7 +112,7 @@ binary-arch: build install
dh_compress
dh_fixperms
dh_installdeb
dh_makeshlibs
dh_makeshlibs -X usr/lib/elk
# dh_perl
dh_shlibdeps -L libelk0 -l debian/libelk0/usr/lib
dh_gencontrol

View File

@ -19,3 +19,7 @@ elk.1.html: elk.1
clean:
rm -f elk.ps elk.1.html
install-data-local:
rm -f "$(DESTDIR)$(mandir)/scheme-elk.1"
ln -s elk.1 "$(DESTDIR)$(mandir)/scheme-elk.1"

View File

@ -69,3 +69,7 @@ bin_PROGRAMS = elk
elk_LDADD = $(top_builddir)/src/libelk.la
elk_SOURCES = main.c
install-exec-local:
rm -f "$(DESTDIR)$(bindir)/scheme-elk"
ln -s elk "$(DESTDIR)$(bindir)/scheme-elk"