mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-208 create the $(prefix)/lib/icu/current symlink that Steven wanted,
and then put Makefile.inc in the numbered icu directory with a symlink from current/Makefile.inc to where people expect Makefile.inc to be. (Note: at this time, it is not yet possible to install the development files for many ICU releases in the same root). The current link may be used by Xerces-C which links against libicudata (patch submitted upstream). Debian and RPM packages will actually not archive the current symlink but rather maintain it themselves across libicuXX packages installations so that it always points to the highest-numbered version installed on teh system." X-SVN-Rev: 2822
This commit is contained in:
parent
88693a446c
commit
24e3e379b4
7 changed files with 107 additions and 19 deletions
|
@ -4,6 +4,9 @@ icu (1.6.0.1-20001027-1) unstable; urgency=low
|
|||
/usr/share.
|
||||
* Move convrtrs.txt into /etc/icu, make it a conffile, and generate
|
||||
/usr/lib/icu/1.6.0.1/cnvalias.dat from it at postinst time.
|
||||
* Manage a /usr/lib/icu/current symbolic link across installations
|
||||
of the libicuXX packages. The symlink will always point to the
|
||||
highest numbered version of ICU.
|
||||
|
||||
-- Yves Arrouye <yves@debian.org> Tue, 26 Oct 2000 11:14:22 -0700
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ Description: Data for ICU (source files)
|
|||
also all the table-based converters provided in the ICU distribution.
|
||||
.
|
||||
This package contains uncompiled source data. Precompiled data are in the
|
||||
`libicu1' package.
|
||||
`libicu16' package.
|
||||
|
||||
Package: icu-i18ndata
|
||||
Priority: extra
|
||||
|
|
|
@ -25,6 +25,16 @@ set -e
|
|||
case "$1" in
|
||||
configure)
|
||||
ldconfig
|
||||
|
||||
# Adjust the current ICU link in /usr/lib/icu
|
||||
|
||||
icucurrent=`2>/dev/null ls -dp /usr/lib/icu/* | sed -n 's,.*/\([^/]*\)/$,\1,p'| sort -rn | head -1`
|
||||
cd /usr/lib/icu
|
||||
rm -f current
|
||||
if test x"$icucurrent" != x
|
||||
then
|
||||
ln -s "$icucurrent" current
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
|
46
icu4c/debian/libicu16.prerm
Normal file
46
icu4c/debian/libicu16.prerm
Normal file
|
@ -0,0 +1,46 @@
|
|||
#! /bin/sh
|
||||
# prerm script for foo
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <prerm> `remove'
|
||||
# * <old-prerm> `upgrade' <new-version>
|
||||
# * <new-prerm> `failed-upgrade' <old-version>
|
||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
||||
# <package-being-installed> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see /usr/share/doc/packaging-manual/
|
||||
|
||||
case "$1" in
|
||||
remove|upgrade|deconfigure)
|
||||
# Adjust the current ICU link in /usr/lib/icu
|
||||
|
||||
icucurrent=`2>/dev/null ls -dp /usr/lib/icu/* | sed -n 's,.*/\([^/]*\)/$,\1,p'| sort -rn | head -1`
|
||||
cd /usr/lib/icu
|
||||
rm -f current
|
||||
if test x"$icucurrent" != x
|
||||
then
|
||||
ln -s "$icucurrent" current
|
||||
fi
|
||||
# install-info --quiet --remove /usr/info/foo.info.gz
|
||||
;;
|
||||
failed-upgrade)
|
||||
;;
|
||||
*)
|
||||
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
|
||||
|
||||
|
|
@ -9,15 +9,18 @@
|
|||
#export DH_VERBOSE=1
|
||||
|
||||
# This is the debhelper compatability version to use.
|
||||
export DH_COMPAT=1
|
||||
export DH_COMPAT=2
|
||||
firstdir := $(shell sed -n 's/Package: \(.*\)/\1/p' debian/control | head -1)
|
||||
|
||||
# Where the source for ICU is, where to build
|
||||
srcdir = source
|
||||
builddir = build
|
||||
|
||||
# ICU installation directories, w/o the initial slash
|
||||
icudatadir = usr/share/icu/$(version)
|
||||
iculibdir = usr/lib/icu/$(version)
|
||||
pkgdatadir = usr/share/icu
|
||||
icudatadir = $(pkgdatadir)/$(version)
|
||||
pkglibdir = usr/lib/icu
|
||||
iculibdir = $(pkglibdir)/$(version)
|
||||
datasrcdir = usr/share/icu/$(version)/data
|
||||
|
||||
# shared library versions, option 1
|
||||
|
@ -82,8 +85,8 @@ install: build
|
|||
dh_clean -k
|
||||
dh_installdirs
|
||||
|
||||
# Add here commands to install the package into debian/tmp.
|
||||
$(MAKE) -C $(builddir) install DESTDIR=`pwd`/debian/tmp
|
||||
# Add here commands to install the package into debian/$(firstdir).
|
||||
$(MAKE) -C $(builddir) install DESTDIR=`pwd`/debian/$(firstdir)
|
||||
|
||||
|
||||
# Build architecture-independent files here.
|
||||
|
@ -92,7 +95,7 @@ binary-indep: build install
|
|||
|
||||
# Build some Debian files
|
||||
debian/%: debian/%.in
|
||||
cd source \
|
||||
cd $(builddir) \
|
||||
&& CONFIG_FILES=../$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
DEBIAN_FILES = icu.conffiles icu.postinst icu.prerm
|
||||
|
@ -102,11 +105,11 @@ binary-arch: build install $(addprefix debian/,$(DEBIAN_FILES))
|
|||
# dh_testversion
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm debian/tmp/usr/sbin/gentest
|
||||
rm debian/$(firstdir)/usr/sbin/gentest
|
||||
#
|
||||
# build libicu${major} package by moving files from icu-dev
|
||||
#
|
||||
dh_movefiles -plibicu$(major) \
|
||||
dh_movefiles --sourcedir=debian/$(firstdir) -plibicu$(major) \
|
||||
usr/lib/libicuuc.so.* \
|
||||
usr/lib/libicui18n.so.* \
|
||||
usr/lib/libicutoolutil.so.* \
|
||||
|
@ -114,7 +117,7 @@ binary-arch: build install $(addprefix debian/,$(DEBIAN_FILES))
|
|||
#
|
||||
# build icu package by moving files from icu-dev
|
||||
#
|
||||
dh_movefiles -picu \
|
||||
dh_movefiles --sourcedir=debian/$(firstdir) -picu \
|
||||
etc \
|
||||
usr/sbin \
|
||||
$(icudatadir)/README \
|
||||
|
@ -122,12 +125,14 @@ binary-arch: build install $(addprefix debian/,$(DEBIAN_FILES))
|
|||
$(iculibdir)/u*.dat \
|
||||
$(iculibdir)/tz.dat \
|
||||
usr/share/man
|
||||
rm debian/tmp/$(iculibdir)/cnvalias.dat
|
||||
rm debian/$(firstdir)/$(pkglibdir)/current
|
||||
rm debian/$(firstdir)/$(iculibdir)/cnvalias.dat
|
||||
#
|
||||
# build icu-locales package by moving files from icu-dev
|
||||
#
|
||||
dh_movefiles -picu-locales \
|
||||
$(iculibdir)
|
||||
dh_movefiles --sourcedir=debian/$(firstdir) -picu-locales \
|
||||
$(iculibdir)/*.res \
|
||||
$(iculibdir)/*.brk
|
||||
#
|
||||
# build icu-data from the source data
|
||||
#
|
||||
|
@ -154,9 +159,8 @@ binary-arch: build install $(addprefix debian/,$(DEBIAN_FILES))
|
|||
#
|
||||
# do a bit of cleanup
|
||||
#
|
||||
rm -rf debian/tmp/etc debian/tmp/usr/sbin \
|
||||
debian/tmp/$(iculibdir) \
|
||||
debian/tmp/usr/share/man
|
||||
rm -rf debian/$(firstdir)/etc debian/$(firstdir)/usr/sbin \
|
||||
debian/$(firstdir)/usr/share/man
|
||||
#
|
||||
# continue to prepare packages
|
||||
#
|
||||
|
@ -178,7 +182,7 @@ binary-arch: build install $(addprefix debian/,$(DEBIAN_FILES))
|
|||
dh_compress
|
||||
dh_fixperms
|
||||
# CVS fixup
|
||||
if test -d CVS; then find debian/tmp -name CVS -print | xargs rm -r; fi
|
||||
if test -d CVS; then find debian/$(firstdir) -name CVS -print | xargs rm -r; fi
|
||||
# You may want to make some executables suid here.
|
||||
dh_suidregister
|
||||
dh_makeshlibs
|
||||
|
|
|
@ -64,6 +64,27 @@ fi
|
|||
%post -n libicu16
|
||||
ldconfig
|
||||
|
||||
# Adjust the current ICU link in /usr/lib/icu
|
||||
|
||||
icucurrent=`2>/dev/null ls -dp /usr/lib/icu/* | sed -n 's,.*/\([^/]*\)/$,\1,p'| sort -rn | head -1`
|
||||
cd /usr/lib/icu
|
||||
rm -f current
|
||||
if test x"$icucurrent" != x
|
||||
then
|
||||
ln -s "$icucurrent" current
|
||||
fi
|
||||
|
||||
%preun -n libicu16
|
||||
# Adjust the current ICU link in /usr/lib/icu
|
||||
|
||||
icucurrent=`2>/dev/null ls -dp /usr/lib/icu/* | sed -n 's,.*/\([^/]*\)/$,\1,p'| sort -rn | head -1`
|
||||
cd /usr/lib/icu
|
||||
rm -f current
|
||||
if test x"$icucurrent" != x
|
||||
then
|
||||
ln -s "$icucurrent" current
|
||||
fi
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
@ -584,6 +605,7 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||
/usr/include/unicode/utf8.h
|
||||
/usr/include/unicode/utrans.h
|
||||
/usr/include/unicode/utypes.h
|
||||
/usr/lib/icu/1.6.0.1/Makefile.inc
|
||||
/usr/lib/icu/Makefile.inc
|
||||
/usr/share/icu/1.6.0.1/config
|
||||
|
||||
|
|
|
@ -86,9 +86,12 @@ all-local: $(srcdir)/configure icudefs.mk
|
|||
|
||||
install-local: $(top_builddir)/config/Makefile.inc @platform_make_fragment@ README $(EXTRA_DATA:%=$(DESTDIR)$(pkglibdir)/$(VERSION)/%)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)/$(VERSION)/config
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)/$(VERSION)
|
||||
@$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
|
||||
$(INSTALL_DATA) $(top_builddir)/config/Makefile.inc $(DESTDIR)$(pkglibdir)/Makefile.inc
|
||||
$(INSTALL_DATA) $(top_builddir)/config/Makefile.inc $(DESTDIR)$(pkglibdir)/$(VERSION)/Makefile.inc
|
||||
cd $(DESTDIR)$(pkglibdir); \
|
||||
$(RM) current && ln -s $(VERSION) current; \
|
||||
$(RM) Makefile.inc && ln -s current/Makefile.inc .
|
||||
$(INSTALL_DATA) @platform_make_fragment@ $(DESTDIR)$(pkgdatadir)/$(VERSION)/config/@platform_make_fragment_name@
|
||||
$(INSTALL_SCRIPT) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)/mkinstalldirs
|
||||
$(INSTALL_SCRIPT) README $(DESTDIR)$(pkgdatadir)/$(VERSION)/README
|
||||
|
|
Loading…
Add table
Reference in a new issue