From owner-svn-ports-head@FreeBSD.ORG Mon Jun 17 15:01:03 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9647982D; Mon, 17 Jun 2013 15:01:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 895651C64; Mon, 17 Jun 2013 15:01:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5HF13RA024330; Mon, 17 Jun 2013 15:01:03 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5HF12pt024321; Mon, 17 Jun 2013 15:01:02 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201306171501.r5HF12pt024321@svn.freebsd.org> From: Martin Wilke Date: Mon, 17 Jun 2013 15:01:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321122 - in head/graphics/pixmap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2013 15:01:03 -0000 Author: miwi Date: Mon Jun 17 15:01:02 2013 New Revision: 321122 URL: http://svnweb.freebsd.org/changeset/ports/321122 Log: - Fix build on -current - Add LICENSE - Trim header PR: 179581 Submitted by: Ports Fury Added: head/graphics/pixmap/files/patch-PixEdit.c (contents, props changed) head/graphics/pixmap/files/patch-Pixmap.c (contents, props changed) head/graphics/pixmap/files/patch-SelFile__Draw.c (contents, props changed) head/graphics/pixmap/files/patch-SelFile__Path.c (contents, props changed) Modified: head/graphics/pixmap/Makefile (contents, props changed) Modified: head/graphics/pixmap/Makefile ============================================================================== --- head/graphics/pixmap/Makefile Mon Jun 17 15:00:02 2013 (r321121) +++ head/graphics/pixmap/Makefile Mon Jun 17 15:01:02 2013 (r321122) @@ -1,31 +1,31 @@ -# New ports collection makefile for: pixmap -# Date created: 19 February 1995 -# Whom: jmz -# +# Created by: jmz # $FreeBSD$ -# PORTNAME= pixmap PORTVERSION= 2.6 PORTREVISION= 3 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_XCONTRIB} -MASTER_SITE_SUBDIR= applications/pixmap +MASTER_SITES= XCONTRIB/applications/pixmap DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A pixmap editor based on XPM library +COMMENT= Pixmap editor based on XPM library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYRIGHT # requires rgb.txt -BUILD_DEPENDS= xrdb:${PORTSDIR}/x11/xrdb \ - showrgb:${PORTSDIR}/x11/rgb +BUILD_DEPENDS= showrgb:${PORTSDIR}/x11/rgb \ + xrdb:${PORTSDIR}/x11/xrdb +WRKSRC= ${WRKDIR}/${PORTNAME} -WRKSRC= ${WRKDIR}/pixmap -USE_IMAKE= yes USE_XORG= xpm xbitmaps x11 xaw xmu xt sm ice xext -MAN1= pixmap.1 +USE_IMAKE= yes + +CFLAGS+= -D_X_SENTINEL\(x\)= -D_X_ATTRIBUTE_PRINTF\(x,y\)= \ + -D_X_DEPRECATED= -DUSG -CFLAGS+= -D_X_SENTINEL\(x\)= -D_X_ATTRIBUTE_PRINTF\(x,y\)= +MAN1= pixmap.1 .include Added: head/graphics/pixmap/files/patch-PixEdit.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixmap/files/patch-PixEdit.c Mon Jun 17 15:01:02 2013 (r321122) @@ -0,0 +1,25 @@ +--- PixEdit.c.orig ++++ PixEdit.c +@@ -59,6 +59,7 @@ + + + #include ++#include + #include + #include + #include +@@ -1938,7 +1939,7 @@ + + + +-void main(argc, argv) ++int main(argc, argv) + int argc; + char *argv[]; + { +@@ -2281,4 +2282,5 @@ + + XtRealizeWidget(top_widget); + XtAppMainLoop(pixmap_context); ++ return 0; + } Added: head/graphics/pixmap/files/patch-Pixmap.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixmap/files/patch-Pixmap.c Mon Jun 17 15:01:02 2013 (r321122) @@ -0,0 +1,10 @@ +--- Pixmap.c.orig ++++ Pixmap.c +@@ -67,6 +67,7 @@ + #include "PixmapP.h" + + #include ++#include + #include + + #define XtStrlen(s) ((s) ? strlen(s) : 0) Added: head/graphics/pixmap/files/patch-SelFile__Draw.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixmap/files/patch-SelFile__Draw.c Mon Jun 17 15:01:02 2013 (r321122) @@ -0,0 +1,11 @@ +--- SelFile/Draw.c.orig ++++ SelFile/Draw.c +@@ -189,7 +189,7 @@ + } + } + +-static ++static void + SFdeleteEntry(dir, entry) + SFDir *dir; + SFEntry *entry; Added: head/graphics/pixmap/files/patch-SelFile__Path.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixmap/files/patch-SelFile__Path.c Mon Jun 17 15:01:02 2013 (r321122) @@ -0,0 +1,10 @@ +--- SelFile/Path.c.orig ++++ SelFile/Path.c +@@ -529,6 +529,7 @@ + return 0; + } + ++void + SFupdatePath() + { + static int alloc;