aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2001-07-23 01:00:35 +0000
committerNathan Scott <nathans@sgi.com>2001-07-23 01:00:35 +0000
commit2e69498478f27dd7b6fd10838adaa8cddc5f97ab (patch)
tree143d5795ce268667fb907ffe4d00c6e6fa5139a2
parent9abb4ecd71e76fb25063a73beede5c59f90c92c0 (diff)
downloaddmapi-dev-2e69498478f27dd7b6fd10838adaa8cddc5f97ab.tar.gz
install static libs and libtool archives into /usr/lib, not /lib.
-rw-r--r--VERSION2
-rw-r--r--debian/changelog6
-rw-r--r--doc/CHANGES4
-rw-r--r--include/builddefs.in9
4 files changed, 16 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index da35309..de173ae 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=0
PKG_MINOR=2
-PKG_REVISION=0
+PKG_REVISION=1
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index 10274f3..7b2af81 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dmapi (0.2.1-0) unstable; urgency=low
+
+ * New upstream release
+
+ -- Nathan Scott <nathans@debian.org> Mon, 23 Jul 2001 10:27:37 +1000
+
dmapi (0.2.0-0) unstable; urgency=low
* Reworked package slightly so that its not Debian native
diff --git a/doc/CHANGES b/doc/CHANGES
index ad4fcb0..b2187da 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,7 @@
+dmapi-0.2.1 (23 Jul 2001)
+ - install static libs and libtool archives into /usr/lib
+ - shared libraries are unchanged, however
+
dmapi-0.2.0 (19 Jul 2001)
- reworked Makefiles use of libtool slightly
- rework some of the Debian packaging rules
diff --git a/include/builddefs.in b/include/builddefs.in
index 4514876..bbed283 100644
--- a/include/builddefs.in
+++ b/include/builddefs.in
@@ -134,9 +134,10 @@ endif
ifeq ($(ENABLE_SHARED),yes)
INSTALL_LTLIB_DEV = \
cd $(TOPDIR)/$(LIBNAME)/.libs; \
+ ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
+ ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR); \
+ ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_LIB_DIR)/$(LIBNAME).la ; \
../$(INSTALL) -m 755 -d $(PKG_SLIB_DIR); \
- ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_SLIB_DIR); \
- ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_SLIB_DIR)/$(LIBNAME).la ; \
../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_SLIB_DIR)
else
INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC)
@@ -144,8 +145,8 @@ endif
INSTALL_LTLIB_STATIC = \
cd $(TOPDIR)/$(LIBNAME)/.libs; \
- ../$(INSTALL) -m 755 -d $(PKG_SLIB_DIR); \
- ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_SLIB_DIR)
+ ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
+ ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR)
INSTALL_MAN = \
@for d in $(MAN_PAGES); do \