From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 21 11:10:04 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 658A510656AC for ; Sat, 21 Jun 2008 11:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 35C598FC18 for ; Sat, 21 Jun 2008 11:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m5LBA4Vh033231 for ; Sat, 21 Jun 2008 11:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m5LBA4W5033229; Sat, 21 Jun 2008 11:10:04 GMT (envelope-from gnats) Resent-Date: Sat, 21 Jun 2008 11:10:04 GMT Resent-Message-Id: <200806211110.m5LBA4W5033229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Denis Shaposhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 447C91065671; Sat, 21 Jun 2008 11:08:17 +0000 (UTC) (envelope-from dsh@wizard.volgograd.ru) Received: from sagitta.internal.vlink.ru (alias.rigel.internal.vlink.ru [85.172.168.14]) by mx1.freebsd.org (Postfix) with ESMTP id DB6398FC15; Sat, 21 Jun 2008 11:08:16 +0000 (UTC) (envelope-from dsh@wizard.volgograd.ru) Received: from sagitta.internal.vlink.ru (localhost [127.0.0.1]) by sagitta.internal.vlink.ru (Postfix) with ESMTP id BACAB1F493E; Sat, 21 Jun 2008 14:50:04 +0400 (MSD) Received: from localhost.my.domain (unknown [85.173.92.192]) by sagitta.internal.vlink.ru (Postfix) with ESMTPS id 6F5561F4928; Sat, 21 Jun 2008 14:50:04 +0400 (MSD) Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.2/8.14.2) with ESMTP id m5LAo2bg041208; Sat, 21 Jun 2008 14:50:02 +0400 (MSD) (envelope-from dsh@localhost.my.domain) Received: (from dsh@localhost) by localhost.my.domain (8.14.2/8.14.2/Submit) id m5LAo2WM041204; Sat, 21 Jun 2008 14:50:02 +0400 (MSD) (envelope-from dsh) Message-Id: <200806211050.m5LAo2WM041204@localhost.my.domain> Date: Sat, 21 Jun 2008 14:50:02 +0400 (MSD) From: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ehaupt@FreeBSD.org Subject: ports/124819: [PATCH] net/rsync: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2008 11:10:04 -0000 >Number: 124819 >Category: ports >Synopsis: [PATCH] net/rsync: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 21 11:10:03 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 7.0-STABLE i386 >Organization: >Environment: System: FreeBSD localhost.my.domain 7.0-STABLE FreeBSD 7.0-STABLE #0: Sun Apr 27 02:22:16 MSD 2008 >Description: [DESCRIBE CHANGES] Fix building WITH_ICONV. See "How-To-Repeat" section. Port maintainer (ehaupt@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: [dsh@localhost ports]% rsync rsync version 3.0.2 protocol version 30 Copyright (C) 1996-2008 by Andrew Tridgell, Wayne Davison, and others. Web site: http://rsync.samba.org/ Capabilities: 64-bit files, 32-bit inums, 32-bit timestamps, 64-bit long ints, socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace, append, ACLs, xattrs, no iconv, symtimes, file-flags ^^^^^^^^ but it was builded with WITH_ICONV [dsh@localhost ports]% grep ICONV /var/db/ports/rsync/options WITH_ICONV=true >Fix: --- rsync-3.0.2_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/rsync/Makefile /home/dsh/ports/net/rsync/Makefile --- /usr/ports/net/rsync/Makefile 2008-06-02 12:11:52.000000000 +0400 +++ /home/dsh/ports/net/rsync/Makefile 2008-06-21 14:28:27.000000000 +0400 @@ -52,6 +52,7 @@ .if defined(WITH_ICONV) USE_ICONV= yes +CFLAGS+= -I${LOCALBASE}/include CONFIGUREDCFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" CONFIGUREDCFLAGS="${CONFIGUREDCFLAGS}" --- rsync-3.0.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: