1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Build shared library as well.

This commit is contained in:
Maxim Sobolev 2000-06-08 14:47:20 +00:00
parent d2cb670101
commit 86f49e62a4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=29394
3 changed files with 77 additions and 3 deletions

View File

@ -16,6 +16,7 @@ MASTER_SITES= ftp://ftp.freesoftware.com/pub/sourceware/bzip2/v100/ \
MAINTAINER= obrien@FreeBSD.org
FETCH_BEFORE_ARGS= -b
MAN1= bzip2.1
MLINKS= bzip2.1 bunzip2.1 bzip2.1 bzcat.1 bzip2.1 bz2cat.1 \
bzip2.1 bzip2recover.1
@ -28,6 +29,8 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bzip2recover ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/bzlib.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/libbz2.a ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/libbz2.so.1 ${PREFIX}/lib
${LN} -sf ${PREFIX}/lib/libbz2.so.1 ${PREFIX}/lib/libbz2.so
${INSTALL_MAN} ${WRKSRC}/bzip2.1 ${PREFIX}/man/man1
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/bzip2
@ -35,4 +38,7 @@ do-install:
${PREFIX}/bin/bzip2 -f ${PREFIX}/share/doc/bzip2/manual.ps
.endif
post-install:
${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>

View File

@ -1,6 +1,6 @@
--- Makefile.orig Tue May 16 16:31:04 2000
+++ Makefile Sat May 27 16:54:49 2000
@@ -1,8 +1,9 @@
--- Makefile.orig Wed May 17 00:31:04 2000
+++ Makefile Thu Jun 8 17:41:26 2000
@@ -1,8 +1,10 @@
SHELL=/bin/sh
-CC=gcc
@ -9,6 +9,70 @@
-CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS?=-O2
+CFLAGS+=-Wall -Winline -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+SOFLAGS=-fPIC -fpic -DPIC
OBJS= blocksort.o \
huffman.o \
@@ -12,10 +14,18 @@
decompress.o \
bzlib.o
-all: libbz2.a bzip2 bzip2recover test
+SO_OBJS= blocksort.so \
+ huffman.so \
+ crctable.so \
+ randtable.so \
+ compress.so \
+ decompress.so \
+ bzlib.so
-bzip2: libbz2.a bzip2.o
- $(CC) $(CFLAGS) -o bzip2 bzip2.o -L. -lbz2
+all: libbz2.so.1 libbz2.a bzip2 bzip2recover test
+
+bzip2: libbz2.so.1 libbz2.a bzip2.o
+ $(CC) $(CFLAGS) -o bzip2 bzip2.o libbz2.a
bzip2recover: bzip2recover.o
$(CC) $(CFLAGS) -o bzip2recover bzip2recover.o
@@ -29,6 +39,10 @@
ranlib libbz2.a ; \
fi
+libbz2.so.1: $(SO_OBJS)
+ $(CC) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1 $(SO_OBJS)
+ ln -sf libbz2.so.1 libbz2.so
+
test: bzip2
@cat words1
./bzip2 -1 < sample1.ref > sample1.rb2
@@ -69,12 +83,27 @@
chmod a+r $(PREFIX)/lib/libbz2.a
clean:
- rm -f *.o libbz2.a bzip2 bzip2recover \
+ rm -f *.o *.so libbz2.a libbz2.so.1 bzip2 bzip2recover \
sample1.rb2 sample2.rb2 sample3.rb2 \
sample1.tst sample2.tst sample3.tst
-blocksort.o: blocksort.c
+blocksort.so: blocksort.c
@cat words0
+ $(CC) $(CFLAGS) $(SOFLAGS) -c blocksort.c -o blocksort.so
+huffman.so: huffman.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c huffman.c -o huffman.so
+crctable.so: crctable.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c crctable.c -o crctable.so
+randtable.so: randtable.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c randtable.c -o randtable.so
+compress.so: compress.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c compress.c -o compress.so
+decompress.so: decompress.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c decompress.c -o decompress.so
+bzlib.so: bzlib.c
+ $(CC) $(CFLAGS) $(SOFLAGS) -c bzlib.c -o bzlib.so
+
+blocksort.o: blocksort.c
$(CC) $(CFLAGS) -c blocksort.c
huffman.o: huffman.c
$(CC) $(CFLAGS) -c huffman.c

View File

@ -5,6 +5,10 @@ bin/bz2cat
bin/bzip2recover
include/bzlib.h
lib/libbz2.a
lib/libbz2.so
lib/libbz2.so.1
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
share/doc/bzip2/manual.ps.bz2
share/doc/bzip2/manual.texi
share/doc/bzip2/manual_1.html