From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 25 18:10:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 ESMTPS id 8C732BC3 for ; Tue, 25 Feb 2014 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6BA44167C for ; Tue, 25 Feb 2014 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1PIA8bT042607 for ; Tue, 25 Feb 2014 18:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1PIA88k042603; Tue, 25 Feb 2014 18:10:08 GMT (envelope-from gnats) Resent-Date: Tue, 25 Feb 2014 18:10:08 GMT Resent-Message-Id: <201402251810.s1PIA88k042603@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, KATO Tsuguru 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 ESMTPS id 9A7E36F0 for ; Tue, 25 Feb 2014 18:00:18 +0000 (UTC) Received: from omta01.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17]) by mx1.freebsd.org (Postfix) with ESMTP id 6CD42153F for ; Tue, 25 Feb 2014 18:00:18 +0000 (UTC) Received: from coppermine.my.domain (ZT028143.ppp.dion.ne.jp [59.128.28.143]) by omta01.auone-net.jp (au one net mail) with ESMTP id 96E2D980006 for ; Wed, 26 Feb 2014 03:00:16 +0900 (JST) Message-Id: <20140226025155.1db9e08eaac5b835d8c3a3f0@yahoo.com> Date: Wed, 26 Feb 2014 02:51:55 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187063: audio/asmixer: Update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 18:10:08 -0000 >Number: 187063 >Category: ports >Synopsis: audio/asmixer: Update MASTER_SITES >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: Tue Feb 25 18:10:08 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Add LICENSE Remove file: files/patch-asmixer.c >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/asmixer/Makefile audio/asmixer/Makefile --- /usr/ports/audio/asmixer/Makefile 2014-02-08 04:12:05.000000000 +0900 +++ audio/asmixer/Makefile 2014-02-26 00:00:00.000000000 +0900 @@ -3,28 +3,39 @@ PORTNAME= asmixer PORTVERSION= 0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio afterstep -MASTER_SITES= http://www.tigr.net/afterstep/download/asmixer/ +MASTER_SITES= AFTERSTEP/apps/asmix/ \ + http://tigr.net/afterstep/download/asmixer/ MAINTAINER= ports@FreeBSD.org COMMENT= Mixer control for AfterStep window manager -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2014-03-07 - -MAN1= ${PORTNAME}.1x -NO_STAGE= yes -PLIST_FILES= bin/asmixer +LICENSE= GPLv2 USE_XORG= xpm x11 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-xpm \ - --with-xpm-includes=${LOCALBASE} \ - --with-xpm-library=${LOCALBASE} + --with-xpm-includes=${LOCALBASE}/include \ + --with-xpm-library=${LOCALBASE}/lib + +PLIST_FILES= bin/asmixer man/man1/asmixer.1.gz -post-install: - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man \ - ${MAN1PREFIX}/man/man1/${PORTNAME}.1x +post-patch: +.for i in asmixer.c configure autoconf/config.h.in + @${REINPLACE_CMD} -e \ + 's|machine/soundcard.h|sys/soundcard.h| ; \ + s|MACHINE_SOUNDCARD_H|SYS_SOUNDCARD_H| ; \ + /sys\/syslimits.h/d' ${WRKSRC}/${i} +.endfor + +post-build: + @${LN} -sf asmixer.man ${WRKSRC}/asmixer.1 + +do-install: + (cd ${WRKSRC} && ${INSTALL_PROGRAM} asmixer \ + ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_MAN} asmixer.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1) .include diff -urN /usr/ports/audio/asmixer/files/patch-asmixer.c audio/asmixer/files/patch-asmixer.c --- /usr/ports/audio/asmixer/files/patch-asmixer.c 2014-01-23 03:59:08.000000000 +0900 +++ audio/asmixer/files/patch-asmixer.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,12 +0,0 @@ ---- asmixer.c.orig Sun Aug 31 15:23:26 2003 -+++ asmixer.c Sun Aug 31 15:24:45 2003 -@@ -31,8 +31,8 @@ - #include - - #ifdef __FreeBSD__ --#include - #include -+#include - #endif - - #include >Release-Note: >Audit-Trail: >Unformatted: