From t.d.bishop@kent.ac.uk  Sun Oct 19 15:04:54 2003
Return-Path: <t.d.bishop@kent.ac.uk>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 7238116A4B3
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 19 Oct 2003 15:04:54 -0700 (PDT)
Received: from jess.kent.ac.uk (jess.ukc.ac.uk [129.12.21.14])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5B343FA3
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 19 Oct 2003 15:04:51 -0700 (PDT)
	(envelope-from t.d.bishop@kent.ac.uk)
Received: from pendennis.ukc.ac.uk ([129.12.3.232])
	by jess.kent.ac.uk with esmtp (Exim 4.22)
	id 1ABLf3-0005jV-7b; Sun, 19 Oct 2003 23:04:29 +0100
Received: from tdb by pendennis.ukc.ac.uk with local (Exim 4.24; FreeBSD 4.9)
	id 1ABLf3-000BS5-1E; Sun, 19 Oct 2003 23:04:29 +0100
Message-Id: <E1ABLf3-000BS5-1E@pendennis.ukc.ac.uk>
Date: Sun, 19 Oct 2003 23:04:29 +0100
From: Tim Bishop <tim@bishnet.net>
Sender: "T.D.Bishop" <T.D.Bishop@kent.ac.uk>
Reply-To: Tim Bishop <tim@bishnet.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc: tim@bishnet.net
Subject: Fix port: devel/libukcprog
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         58259
>Category:       ports
>Synopsis:       Fix port: devel/libukcprog
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 19 15:10:15 PDT 2003
>Closed-Date:    Tue Oct 21 07:12:58 PDT 2003
>Last-Modified:  Tue Oct 21 07:12:58 PDT 2003
>Originator:     Tim Bishop
>Release:        FreeBSD 4.9-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD pendennis.ukc.ac.uk 4.9-PRERELEASE FreeBSD 4.9-PRERELEASE #5: Wed Sep 17 15:50:07 BST 2003 tdb@pendennis.ukc.ac.uk:/usr/obj/usr/src/sys/PENDENNIS i386


>Description:
	The source tarball has been repackaged, but the code not changed,
	so there was no version number increment. The repackage was done
	to fix a packaging issue with the pkgconfig file.

	Updated the port's distinfo accordingly. Also added gnomehack
	to ensure that the pkgconfig file is installed in the correct
	location, and fixed the pkg-plist.

	Finally, added the usual patch to fix the libtool stuff.

>How-To-Repeat:
>Fix:
	Apply patch below.

--- libukcprog-1.0.2-pkgconfigfix.diff begins here ---
diff -ruN libukcprog.bak/Makefile libukcprog/Makefile
--- libukcprog.bak/Makefile	Mon Oct 13 09:18:35 2003
+++ libukcprog/Makefile	Sun Oct 19 22:52:27 2003
@@ -7,7 +7,7 @@
 
 PORTNAME=	libukcprog
 PORTVERSION=	1.0.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	ftp://ftp.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \
 		http://www.mirror.ac.uk/sites/ftp.i-scream.org/pub/i-scream/%SUBDIR%/ \
@@ -23,5 +23,6 @@
 GNU_CONFIGURE=	yes
 INSTALLS_SHLIB=	yes
 USE_LIBTOOL=	yes
+USE_GNOME=	gnomehack
 
 .include <bsd.port.mk>
diff -ruN libukcprog.bak/distinfo libukcprog/distinfo
--- libukcprog.bak/distinfo	Fri Oct 10 14:59:41 2003
+++ libukcprog/distinfo	Sun Oct 19 22:51:22 2003
@@ -1 +1 @@
-MD5 (i-scream/libukcprog-1.0.2.tar.gz) = de3a90b2a9f20463cd9189a024e3c405
+MD5 (i-scream/libukcprog-1.0.2.tar.gz) = a66166be771dc39f02e4c0ee1de88ad5
diff -ruN libukcprog.bak/files/patch-configure libukcprog/files/patch-configure
--- libukcprog.bak/files/patch-configure	Thu Jan  1 01:00:00 1970
+++ libukcprog/files/patch-configure	Tue Aug 26 07:15:42 2003
@@ -0,0 +1,10 @@
+--- configure.orig	Tue Aug 26 08:10:39 2003
++++ configure	Tue Aug 26 08:10:54 2003
+@@ -7856,6 +7856,7 @@
+ 
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+ 
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff -ruN libukcprog.bak/pkg-plist libukcprog/pkg-plist
--- libukcprog.bak/pkg-plist	Mon Oct 13 09:18:35 2003
+++ libukcprog/pkg-plist	Sun Oct 19 22:53:49 2003
@@ -1,7 +1,6 @@
 include/ukcprog.h
 lib/libukcprog.a
-lib/libukcprog.la
 lib/libukcprog.so
 lib/libukcprog.so.0
-lib/pkgconfig/libukcprog.pc
+libdata/pkgconfig/libukcprog.pc
 @unexec rmdir %D/lib/pkgconfig 2>/dev/null || true
--- libukcprog-1.0.2-pkgconfigfix.diff ends here ---


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: krion 
State-Changed-When: Tue Oct 21 07:12:49 PDT 2003 
State-Changed-Why:  
Committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=58259 
>Unformatted:
