From owner-svn-ports-head@FreeBSD.ORG Fri Aug 30 04:16:52 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B4471FEA; Fri, 30 Aug 2013 04:16:52 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A1C7821A6; Fri, 30 Aug 2013 04:16:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7U4GqNj038139; Fri, 30 Aug 2013 04:16:52 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7U4GqTN038136; Fri, 30 Aug 2013 04:16:52 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201308300416.r7U4GqTN038136@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 30 Aug 2013 04:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325660 - in head/audio/nosefart: . 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: Fri, 30 Aug 2013 04:16:52 -0000 Author: danfe Date: Fri Aug 30 04:16:51 2013 New Revision: 325660 URL: http://svnweb.freebsd.org/changeset/ports/325660 Log: - Unbreak parallel builds (-jX) by making automatic dependency generation actually work (and be used) - Trim Makefile header and remove an indefinite article from COMMENT line - No need for a fancy, environment-aware "make clean" when all it does is it does is just "rm -rf nsfobj" - Define LICENSE (GPLv2), adjust WWW: line in port description while here Reported by: marino Modified: head/audio/nosefart/Makefile head/audio/nosefart/files/patch-aa head/audio/nosefart/pkg-descr Modified: head/audio/nosefart/Makefile ============================================================================== --- head/audio/nosefart/Makefile Fri Aug 30 03:51:10 2013 (r325659) +++ head/audio/nosefart/Makefile Fri Aug 30 04:16:51 2013 (r325660) @@ -1,9 +1,5 @@ -# New ports collection makefile for: nosefart -# Date created: 11 October 2000 -# Whom: sethk -# +# Created by: Seth Kingsley # $FreeBSD$ -# PORTNAME= nosefart PORTVERSION= 1.92f @@ -13,15 +9,17 @@ MASTER_SITES= SF/${PORTNAME}/OldFiles DISTNAME= ${PORTNAME}-${PORTVERSION}-mls MAINTAINER= sethk@meowfishies.com -COMMENT= A player for NES Sound Format (NSF) +COMMENT= Player for NES Sound Format (NSF) -USE_GMAKE= yes +LICENSE= GPLv2 -MAKE_ENV= INSTALL="${INSTALL}" COPY="${COPY}" STRIP="${STRIP}"\ +USES= gmake +MAKE_ENV= INSTALL="${INSTALL}" COPY="${COPY}" STRIP="${STRIP}" \ BINGRP="${BINGRP}" BINMODE="${BINMODE}" BINOWN="${BINOWN}" + PLIST_FILES= bin/nosefart pre-build: - @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean) + @${RM} -rf ${BUILD_WRKSRC}/nsfobj -.include +.include Modified: head/audio/nosefart/files/patch-aa ============================================================================== --- head/audio/nosefart/files/patch-aa Fri Aug 30 03:51:10 2013 (r325659) +++ head/audio/nosefart/files/patch-aa Fri Aug 30 04:16:51 2013 (r325660) @@ -1,6 +1,6 @@ --- Makefile.orig Wed Sep 24 11:02:34 2003 +++ Makefile Wed Sep 24 19:43:19 2003 -@@ -1,12 +1,6 @@ +@@ -1,11 +1,10 @@ ################################ # Configuration @@ -9,11 +9,14 @@ -LDFLAGS = -lm -PREFIX = /usr/local -WANT_DEBUG=TRUE -- ++CC ?= gcc ++CFLAGS ?= ++LDFLAGS ?= -lm ++PREFIX ?= /usr/local + # nothing below here should need to be changed - ################################ -@@ -21,19 +15,13 @@ +@@ -21,19 +20,13 @@ SRCDIR = src CFLAGS += -DNSF_PLAYER @@ -34,7 +37,7 @@ -I$(BUILDTOP)\ -I/usr/local/include/ -@@ -59,9 +47,11 @@ +@@ -59,6 +52,8 @@ SRCS = $(addsuffix .c, $(FILES) linux/ma SOURCES = $(addprefix $(SRCDIR)/, $(SRCS)) OBJECTS = $(patsubst $(SRCDIR)/%.c,$(BUILDDIR)/%.o,$(SOURCES)) @@ -42,12 +45,15 @@ + ALL_OBJECTS = $(OBJECTS) --ALL_TARGETS = $(BUILDTOP)/$(NAME) -+ALL_TARGETS = $(BUILDTOP)/config.h $(BUILDTOP)/$(NAME) + ALL_TARGETS = $(BUILDTOP)/$(NAME) +@@ -82,12 +77,13 @@ $(BUILDTOP)/config.h: $(BUILDDIR) Makefi - ################################ - # Rules -@@ -87,7 +77,7 @@ + $(BUILDDIR)/dep: $(BUILDTOP)/config.h + $(CC) $(NSFINFO_CFLAGS) $(CFLAGS) -M $(SOURCES) > $@ ++dep: $(BUILDDIR)/dep + +--include $(BUILDDIR)/dep/ ++-include $(BUILDDIR)/dep install: all mkdir -p $(PREFIX)/bin @@ -56,7 +62,7 @@ @echo "-----------------------------------------------" @echo "Be sure to run chmod +s $(PREFIX)/bin/$(NAME) if you want ordinary users" @echo "to be able to use /dev/dsp. SUID isn't necessary, though, if you want to" -@@ -105,7 +95,7 @@ +@@ -105,7 +101,7 @@ clean: # The real heavy lifting $(BUILDTOP)/$(NAME): $(OBJECTS) Modified: head/audio/nosefart/pkg-descr ============================================================================== --- head/audio/nosefart/pkg-descr Fri Aug 30 03:51:10 2013 (r325659) +++ head/audio/nosefart/pkg-descr Fri Aug 30 04:16:51 2013 (r325660) @@ -2,4 +2,4 @@ This is a port of Nosefart, a player for describes music taken from Nintendo Entertainment System game cartridges in a compact form. -WWW: http://sourceforge.net/projects/nosefart +WWW: http://nosefart.sourceforge.net/