From simon@comsys.ntu-kpi.kiev.ua  Sat Dec  4 15:05:49 2010
Return-Path: <simon@comsys.ntu-kpi.kiev.ua>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 2C6CA1065670
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  4 Dec 2010 15:05:49 +0000 (UTC)
	(envelope-from simon@comsys.ntu-kpi.kiev.ua)
Received: from comsys.kpi.ua (comsys.kpi.ua [77.47.192.42])
	by mx1.freebsd.org (Postfix) with ESMTP id AA7DA8FC08
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  4 Dec 2010 15:05:48 +0000 (UTC)
Received: from pm513-1.comsys.kpi.ua ([10.18.52.101] helo=pm513-1.comsys.ntu-kpi.kiev.ua)
	by comsys.kpi.ua with esmtpsa (TLSv1:AES256-SHA:256)
	(Exim 4.63)
	(envelope-from <simon@comsys.ntu-kpi.kiev.ua>)
	id 1POtFO-0004Hv-VL
	for FreeBSD-gnats-submit@freebsd.org; Sat, 04 Dec 2010 16:37:59 +0200
Received: by pm513-1.comsys.ntu-kpi.kiev.ua (Postfix, from userid 1001)
	id 3DB071CC1E; Sat,  4 Dec 2010 16:37:59 +0200 (EET)
Message-Id: <20101204143759.GA62464@pm513-1.comsys.ntu-kpi.kiev.ua>
Date: Sat, 4 Dec 2010 16:37:59 +0200
From: Andrey Simonenko <simon@comsys.ntu-kpi.kiev.ua>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Update database/ipa_sdb port to 1.0.2 version

>Number:         152830
>Category:       ports
>Synopsis:       Update database/ipa_sdb port to 1.0.2 version
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    beech
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Dec 04 15:10:07 UTC 2010
>Closed-Date:    Sat Dec 04 23:06:13 UTC 2010
>Last-Modified:  Sat Dec  4 23:10:10 UTC 2010
>Originator:     Andrey Simonenko
>Release:        FreeBSD 8.1-STABLE amd64
>Organization:
>Environment:
>Description:

Please update database/ipa_sdb port to 1.0.2 version.

Changes in the port: Changed MASTER_SITES, corrected OPTIONS,
updated PLIST_FILES, added USE_LDCONFIG.

>How-To-Repeat:
>Fix:
diff -ruNp ipa_sdb.orig/Makefile ipa_sdb/Makefile
--- ipa_sdb.orig/Makefile	2006-03-22 10:37:16.000000000 +0200
+++ ipa_sdb/Makefile	2010-12-04 16:36:29.000000000 +0200
@@ -6,63 +6,53 @@
 #
 
 PORTNAME=	ipa_sdb
-PORTVERSION=	1.0.1
+PORTVERSION=	1.0.2
 CATEGORIES=	databases
-MASTER_SITES=	http://ipa-system.sourceforge.net/modules/ipa_sdb/
+MASTER_SITES=	SF/ipa-system/modules/ipa_sdb
 
 MAINTAINER=	simon@comsys.ntu-kpi.kiev.ua
 COMMENT=	IPA simple database module
 
+BUILD_DEPENDS=	${LOCALBASE}/include/ipa_mod.h:${PORTSDIR}/sysutils/ipa
+
 USE_BZIP2=	yes
+USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 
 OPTIONS=	AUTORULES "Enable dynamic rules support" on \
 		RULES "Enable static rules support" on \
 		LIMITS "Enable limits support" on \
-		THRESHOLDS "Enable thresholds support" on \
-		DEBUG_INFO "Produce debugging information" off \
-		MAN_KOI8_R "Install Russian manual pages" off
+		THRESHOLDS "Enable thresholds support" on
 
 .include <bsd.port.pre.mk>
 
-BUILD_DEPENDS=	${PREFIX}/include/ipa_mod.h:${PORTSDIR}/sysutils/ipa
-
-PLIST_FILES=    bin/ipa_sdb_dump lib/ipa_db_sdb.so lib/ipa_st_sdb.so \
-		include/ipa_sdb.h lib/ipa_db_sdb.la lib/ipa_st_sdb.la
+PLIST_FILES=    bin/ipa_sdb_dump include/ipa_sdb.h include/ipa_sdb_config.h \
+		lib/ipa_db_sdb.so lib/ipa_st_sdb.so \
+		lib/ipa_db_sdb.la lib/ipa_st_sdb.la
 
-.ifdef WITHOUT_AUTORULES
+.if defined(WITHOUT_AUTORULES)
 CONFIGURE_ARGS+= --disable-autorules
 .endif
 
-.ifdef WITHOUT_RULES
+.if defined(WITHOUT_RULES)
 CONFIGURE_ARGS+= --disable-rules
 .endif
 
-.ifdef WITHOUT_LIMITS
+.if defined(WITHOUT_LIMITS)
 CONFIGURE_ARGS+= --disable-limits
 .endif
 
-.ifdef WITHOUT_THRESHOLDS
+.if defined(WITHOUT_THRESHOLDS)
 CONFIGURE_ARGS+= --disable-thresholds
 .endif
 
-.ifdef WITH_DEBUG_INFO
-STRIP=		# empty
-CFLAGS+=	-g
-.endif
-
 MAN5=		ipa_sdb.5
 MAN8=		ipa_db_sdb.8 ipa_st_sdb.8 ipa_sdb_dump.8
-MANLANG=	""
-.ifdef WITH_MAN_KOI8_R
-MANLANG+=	ru.KOI8-R
-.endif
+MANLANG=	"" ru.KOI8-R
 
 do-install:
 	cd ${WRKSRC}/src && make install
 	cd ${WRKSRC}/man && make install-am
-.ifdef WITH_MAN_KOI8_R
 	cd ${WRKSRC}/man/ru.KOI8-R && make install
-.endif
 
 .include <bsd.port.post.mk>
diff -ruNp ipa_sdb.orig/distinfo ipa_sdb/distinfo
--- ipa_sdb.orig/distinfo	2006-03-22 10:37:16.000000000 +0200
+++ ipa_sdb/distinfo	2010-12-04 14:14:40.000000000 +0200
@@ -1,3 +1,2 @@
-MD5 (ipa_sdb-1.0.1.tar.bz2) = b4d6e8b996f72d51736a5ef31ac37df2
-SHA256 (ipa_sdb-1.0.1.tar.bz2) = 6fb782b2f110ad6745573df110852f2efaf0f0a7963bcafe4c5be619ac6e5731
-SIZE (ipa_sdb-1.0.1.tar.bz2) = 228701
+SHA256 (ipa_sdb-1.0.2.tar.bz2) = e2de9d46bc68d149cf942bd75012e8a65fbf3d3be2a20325f31141876439c324
+SIZE (ipa_sdb-1.0.2.tar.bz2) = 255710
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->beech 
Responsible-Changed-By: beech 
Responsible-Changed-When: Sat Dec 4 21:47:09 UTC 2010 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=152830 
State-Changed-From-To: open->closed 
State-Changed-By: beech 
State-Changed-When: Sat Dec 4 23:05:59 UTC 2010 
State-Changed-Why:  
Committed, Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=152830 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/152830: commit references a PR
Date: Sat,  4 Dec 2010 23:05:36 +0000 (UTC)

 beech       2010-12-04 23:05:31 UTC
 
   FreeBSD ports repository
 
   Modified files:
     databases/ipa_sdb    Makefile distinfo 
   Log:
   Update to 1.0.2
   
   PR:             ports/152830
   Submitted by:   Andrey Simonenko (simon@comsys.ntu-kpi.kiev.ua) (maintainer)
   Approved by:    itetcu (mentor) (implicit)
   
   Revision  Changes    Path
   1.3       +14 -24    ports/databases/ipa_sdb/Makefile
   1.3       +2 -3      ports/databases/ipa_sdb/distinfo
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
