From owner-freebsd-ports Fri Nov 29 21:40:51 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76B7B37B40B for ; Fri, 29 Nov 2002 21:40:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F85F43EF9 for ; Fri, 29 Nov 2002 21:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAU5e2x3015159 for ; Fri, 29 Nov 2002 21:40:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAU5e2sL015158; Fri, 29 Nov 2002 21:40:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E903637B401 for ; Fri, 29 Nov 2002 21:30:29 -0800 (PST) Received: from socigeog.hmt.toyama-u.ac.jp (socigeog.hmt.toyama-u.ac.jp [160.26.63.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60EC743E4A for ; Fri, 29 Nov 2002 21:30:28 -0800 (PST) (envelope-from tkato@prontomail.com) Received: from localhost (localhost [127.0.0.1]) by socigeog.hmt.toyama-u.ac.jp (Postfix) with SMTP id DB5498B1 for ; Sat, 30 Nov 2002 14:30:22 +0900 (JST) Message-Id: <20021130142545.174af931.tkato@prontomail.com> Date: Sat, 30 Nov 2002 14:25:45 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/45851: Update port: devel/libmba to 0.4.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 45851 >Category: ports >Synopsis: Update port: devel/libmba to 0.4.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 29 21:40:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.7-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 0.4.6 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/libmba/Makefile devel/libmba/Makefile --- /usr/ports/devel/libmba/Makefile Mon Nov 25 22:18:32 2002 +++ devel/libmba/Makefile Mon Nov 25 22:31:31 2002 @@ -7,7 +7,7 @@ # PORTNAME= libmba -PORTVERSION= 0.4.5 +PORTVERSION= 0.4.6 CATEGORIES= devel MASTER_SITES= http://www.eskimo.com/~miallen/libmba/dl/ diff -urN /usr/ports/devel/libmba/distinfo devel/libmba/distinfo --- /usr/ports/devel/libmba/distinfo Mon Nov 25 22:18:32 2002 +++ devel/libmba/distinfo Mon Nov 25 22:31:41 2002 @@ -1 +1 @@ -MD5 (libmba-0.4.5.tar.gz) = 979827b1ef8ee84369ea63e12ea861d6 +MD5 (libmba-0.4.6.tar.gz) = cff59d370cb12616fc3203d63b0c8bbb diff -urN /usr/ports/devel/libmba/files/patch-Makefile devel/libmba/files/patch-Makefile --- /usr/ports/devel/libmba/files/patch-Makefile Mon Nov 25 22:18:33 2002 +++ devel/libmba/files/patch-Makefile Sat Nov 23 17:41:03 2002 @@ -1,5 +1,5 @@ ---- Makefile.orig Sun Nov 17 10:37:18 2002 -+++ Makefile Tue Nov 19 07:54:45 2002 +--- Makefile.orig Thu Nov 21 06:09:41 2002 ++++ Makefile Sat Nov 23 17:40:57 2002 @@ -1,17 +1,17 @@ -prefix = /usr/local +prefix = ${PREFIX} @@ -10,7 +10,7 @@ +CC ?= gcc LIBNAME = mba -MAJVERSION = 0.4 --MINVERSION = 0.4.5 +-MINVERSION = 0.4.6 +MAJVERSION = ${SHLIB_MAJOR} +MINVERSION = ${SHLIB_MAJOR} ARNAME = lib$(LIBNAME).a @@ -22,7 +22,7 @@ +CFLAGS += -DMSGNO -I${LOCALBASE}/include #CFLAGS = -Wall -W -DMSGNO -I$(includedir) -L$(libdir) $(RPM_OPT_FLAGS) -ansi -pedantic -Wbad-function-cast -Wcast-align -Wcast-qual -Wchar-subscripts -Winline -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings -Wtraditional -Wconversion -Waggregate-return -Wno-parentheses OBJS = src/stack.o src/linkedlist.o src/hashmap.o src/profile.o src/hexdump.o src/msgno.o src/domnode.o src/mbs.o src/cfg.o - HDRS = src/msgno.h src/stack.h src/linkedlist.h src/hashmap.h src/hexdump.h src/domnode.h src/profile.h src/mbs.h src/cfg.h + HDRS = src/mba/msgno.h src/mba/stack.h src/mba/linkedlist.h src/mba/hashmap.h src/mba/hexdump.h src/mba/domnode.h src/mba/profile.h src/mba/mbs.h src/mba/cfg.h @@ -20,7 +20,7 @@ all: $(ARNAME)($(OBJS)) $(SONAME) @@ -41,18 +41,17 @@ - install -d $(mandir)/man3 - install -m 644 $(ARNAME) $(libdir) - install -m 755 $(SONAME) $(libdir) -- cd $(libdir) && ln -sf $(SONAME) $(SOVERSION) && ln -sf $(SONAME) lib$(LIBNAME).so -- install -m 444 $(HDRS) $(includedir)/mba -- -install -m 444 docs/man/*.3m.gz $(mandir)/man3 -- -/sbin/ldconfig $(libdir) + mkdir -p $(libdir) + mkdir -p $(includedir)/mba + mkdir -p $(mandir)/man3 + ${BSD_INSTALL_DATA} $(ARNAME) $(libdir) + ${BSD_INSTALL_DATA} $(SONAME) $(libdir) -+ cd $(libdir) && ln -sf $(SONAME) lib$(LIBNAME).so + cd $(libdir) && ln -sf $(SONAME) $(SOVERSION) && ln -sf $(SONAME) lib$(LIBNAME).so +- install -m 444 $(HDRS) $(includedir)/mba +- -install -m 444 docs/man/*.3m.gz $(mandir)/man3 +- -/sbin/ldconfig $(libdir) + ${BSD_INSTALL_DATA} $(HDRS) $(includedir)/mba -+ ${BSD_INSTALL_DATA} docs/man/*.3m.gz $(mandir)/man3 ++ ${BSD_INSTALL_MAN} docs/man/*.3m.gz $(mandir)/man3 zip: cd .. && zip -lr $(DISTRO)/.$(DISTRO).zip $(DISTRO) -x $(DISTRO)/.* $(DISTRO)/docs/man/* $(DISTRO)/tests/data* $(DISTRO)/libmba.lib $(DISTRO)/libmba.dll $(DISTRO)/libmba_s.lib >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message