From owner-svn-ports-all@FreeBSD.ORG Sun Feb 16 11:03:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F9DA19A; Sun, 16 Feb 2014 11:03:12 +0000 (UTC) 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 D633E13BE; Sun, 16 Feb 2014 11:03:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1GB3BJb075999; Sun, 16 Feb 2014 11:03:11 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1GB3B7O075995; Sun, 16 Feb 2014 11:03:11 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402161103.s1GB3B7O075995@svn.freebsd.org> From: Emanuel Haupt Date: Sun, 16 Feb 2014 11:03:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344529 - in head/audio/rexima: . 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 11:03:12 -0000 Author: ehaupt Date: Sun Feb 16 11:03:11 2014 New Revision: 344529 URL: http://svnweb.freebsd.org/changeset/ports/344529 QAT: https://qat.redports.org/buildarchive/r344529/ Log: - Support staging - Add LICENSE Modified: head/audio/rexima/Makefile head/audio/rexima/files/patch-Makefile Modified: head/audio/rexima/Makefile ============================================================================== --- head/audio/rexima/Makefile Sun Feb 16 10:59:21 2014 (r344528) +++ head/audio/rexima/Makefile Sun Feb 16 11:03:11 2014 (r344529) @@ -4,14 +4,14 @@ PORTNAME= rexima PORTVERSION= 1.4 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITES= SUNSITE MASTER_SITE_SUBDIR= apps/sound/mixers MAINTAINER= jerry@freebsd.se COMMENT= A ncurses-based console mixer -MAN1= rexima.1 -PLIST_FILES= bin/rexima -NO_STAGE= yes +LICENSE= GPLv2 + +PLIST_FILES= bin/rexima man/man1/rexima.1.gz .include Modified: head/audio/rexima/files/patch-Makefile ============================================================================== --- head/audio/rexima/files/patch-Makefile Sun Feb 16 10:59:21 2014 (r344528) +++ head/audio/rexima/files/patch-Makefile Sun Feb 16 11:03:11 2014 (r344529) @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Apr 7 06:51:06 2003 -+++ Makefile Wed Oct 22 16:41:57 2003 +--- Makefile.orig 2003-06-30 14:45:27.000000000 +0200 ++++ Makefile 2014-02-16 12:01:21.454847187 +0100 @@ -1,13 +1,12 @@ # Makefile - makefile for rexima @@ -16,3 +16,18 @@ BINDIR=$(PREFIX)/bin MANDIR=$(PREFIX)/man/man1 +@@ -20,11 +19,11 @@ + $(CC) $(CFLAGS) -o rexima rexima.o -lncurses + + installdirs: +- /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR) ++ /bin/sh ./mkinstalldirs $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR) + + install: rexima installdirs +- install -s -m 755 rexima $(BINDIR) +- install -m 644 rexima.1 $(MANDIR) ++ install -s -m 755 rexima $(DESTDIR)$(BINDIR) ++ install -m 644 rexima.1 $(DESTDIR)$(MANDIR) + + uninstall: + $(RM) $(BINDIR)/rexima $(MANDIR)/rexima.1