From owner-svn-ports-head@FreeBSD.ORG Tue Jun 4 08:22:23 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6EB4BC38; Tue, 4 Jun 2013 08:22:23 +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 47911112B; Tue, 4 Jun 2013 08:22:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r548MNfW002330; Tue, 4 Jun 2013 08:22:23 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r548MMUn002328; Tue, 4 Jun 2013 08:22:22 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201306040822.r548MMUn002328@svn.freebsd.org> From: Martin Wilke Date: Tue, 4 Jun 2013 08:22:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319830 - in head/emulators/e-uae: . 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: Tue, 04 Jun 2013 08:22:23 -0000 Author: miwi Date: Tue Jun 4 08:22:22 2013 New Revision: 319830 URL: http://svnweb.freebsd.org/changeset/ports/319830 Log: - Fix build with clang - Add LICENSE PR: 179210 Submitted by: Ports Fury Added: head/emulators/e-uae/files/ head/emulators/e-uae/files/patch-src__dms__cdata.h (contents, props changed) Modified: head/emulators/e-uae/Makefile Modified: head/emulators/e-uae/Makefile ============================================================================== --- head/emulators/e-uae/Makefile Tue Jun 4 08:20:26 2013 (r319829) +++ head/emulators/e-uae/Makefile Tue Jun 4 08:22:22 2013 (r319830) @@ -11,25 +11,36 @@ DISTNAME= e-uae-0.8.29-WIP4 MAINTAINER= ports@FreeBSD.org COMMENT= Enhanced version of UAE, the Amiga emulator +LICENSE= GPLv2 + +OPTIONS_DEFINE= DOCS + CONFLICTS= uae-[0-9]* -USE_GMAKE= yes + USE_BZIP2= yes -GNU_CONFIGURE= yes USE_GNOME= gtk20 USE_SDL= sdl +USE_GMAKE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-sdl --with-sdl-gfx MAKE_JOBS_UNSAFE= yes -PLIST_FILES= bin/uae bin/readdisk PORTDOCS= ChangeLog README bsdsocket.txt cmd-line.txt \ compiling.txt configuration.txt floppies.txt \ joystick.txt keyboard.txt scsi.txt +PLIST_FILES= bin/readdisk bin/uae + +.include + +post-patch: + @${REINPLACE_CMD} -e \ + '/X11\/xkb\/rules/s|/usr/X11R6/lib|${LOCALBASE}/share|' \ + ${WRKSRC}/configure do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/uae ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/src/readdisk ${PREFIX}/bin - -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} @@ -43,8 +54,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/docs/scsi.txt ${DOCSDIR} .endif -post-patch: - @${REINPLACE_CMD} -e 's|/usr/X11R6/lib/X11/xkb/rules|${LOCALBASE}/share/X11/xkb/rules|' \ - ${WRKSRC}/configure - .include Added: head/emulators/e-uae/files/patch-src__dms__cdata.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/e-uae/files/patch-src__dms__cdata.h Tue Jun 4 08:22:22 2013 (r319830) @@ -0,0 +1,11 @@ +--- src/dms/cdata.h.orig ++++ src/dms/cdata.h +@@ -31,7 +31,7 @@ + #define INLINE inline + #else + #ifdef __GNUC__ +- #define INLINE inline ++ #define INLINE static inline + #else + #ifdef __SASC + #define INLINE __inline