From 26bb1d17298aead28b8519e7495ebb31ae81d60d Mon Sep 17 00:00:00 2001 From: Steve Price Date: Sat, 3 Apr 1999 01:15:54 +0000 Subject: Import of libshhopt version 1.1.4. A library for parsing command line options. PR: 6331 Submitted by: Andrey Zakhvatov --- devel/libshhopt/files/Makefile | 8 ++++++++ devel/libshhopt/files/patch-aa | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 devel/libshhopt/files/Makefile create mode 100644 devel/libshhopt/files/patch-aa (limited to 'devel/libshhopt/files') diff --git a/devel/libshhopt/files/Makefile b/devel/libshhopt/files/Makefile new file mode 100644 index 000000000000..320b6692179e --- /dev/null +++ b/devel/libshhopt/files/Makefile @@ -0,0 +1,8 @@ +PREFIX = /usr/local +LIBDIR = $(PREFIX)/lib +INCDIR = $(PREFIX)/include + +CC = gcc + +example: + $(CC) -o example example.c -I$(INCDIR) -L$(LIBDIR) -lshhopt diff --git a/devel/libshhopt/files/patch-aa b/devel/libshhopt/files/patch-aa new file mode 100644 index 000000000000..963686074ff3 --- /dev/null +++ b/devel/libshhopt/files/patch-aa @@ -0,0 +1,37 @@ +--- Makefile.orig Sun Jul 5 12:08:59 1998 ++++ Makefile Fri Apr 2 15:15:59 1999 +@@ -6,10 +6,10 @@ + VERSION = $(VERMAJ).$(VERMIN).$(VERPAT) + + # Define SHARED as 1 for Linux shared ELF library +-#SHARED = 1 ++SHARED = 1 + + ifeq ($(SHARED),1) +-LIBTARGET = lib$(DIST).so.$(VERSION) ++LIBTARGET = lib$(DIST).so.$(VERMAJ) + LIBTARGETSO = lib$(DIST).so + LIBTARGETSOMAJ = $(LIBTARGETSO).$(VERMAJ) + CCSHRD = -fPIC +@@ -23,8 +23,8 @@ + INSTBASEDIR = /usr/local + INSTLIBDIR = $(INSTBASEDIR)/lib + INSTINCDIR = $(INSTBASEDIR)/include +-INSTALL = install -m 644 +-INSTALLPROG = install -m 755 ++INSTALL = install -c -m 644 ++INSTALLPROG = install -c -m 755 + MKDIRP = install -d -m 755 + + CC = gcc +@@ -67,9 +67,7 @@ + $(INSTALL) $(LIBTARGET) $(INSTLIBDIR) + $(INSTALL) $(LIBHEAD) $(INSTINCDIR) + ifeq ($(SHARED),1) +- ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSOMAJ) +- ln -sf $(LIBTARGETSOMAJ) $(INSTLIBDIR)/$(LIBTARGETSO) +- echo "If you use GNU/Linux, remember to run ldconfig" ++ ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSO) + endif + + clean: -- cgit v1.2.3