From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 25 18:10:06 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 D13BAB89 for ; Tue, 25 Feb 2014 18:10:06 +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 AF700166E for ; Tue, 25 Feb 2014 18:10:06 +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 s1PIA62g042463 for ; Tue, 25 Feb 2014 18:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1PIA6V1042462; Tue, 25 Feb 2014 18:10:06 GMT (envelope-from gnats) Resent-Date: Tue, 25 Feb 2014 18:10:06 GMT Resent-Message-Id: <201402251810.s1PIA6V1042462@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 [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 09BB06ED for ; Tue, 25 Feb 2014 18:00:15 +0000 (UTC) Received: from omta02.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17]) by mx1.freebsd.org (Postfix) with ESMTP id D2561153E for ; Tue, 25 Feb 2014 18:00:14 +0000 (UTC) Received: from coppermine.my.domain (ZT028143.ppp.dion.ne.jp [59.128.28.143]) by omta02.auone-net.jp (au one net mail) with ESMTP id 1062E156000D for ; Wed, 26 Feb 2014 03:00:12 +0900 (JST) Message-Id: <20140226025152.6b121dd5abf1a3236def13d2@yahoo.com> Date: Wed, 26 Feb 2014 02:51:52 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187057: audio/asmix: Update MASTER_SITES and WWW: line 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:07 -0000 >Number: 187057 >Category: ports >Synopsis: audio/asmix: Update MASTER_SITES and WWW: line >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:06 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Add LICENSE - Support STRIP properly >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/asmix/Makefile audio/asmix/Makefile --- /usr/ports/audio/asmix/Makefile 2014-02-08 04:12:05.000000000 +0900 +++ audio/asmix/Makefile 2014-02-26 00:00:00.000000000 +0900 @@ -3,15 +3,15 @@ PORTNAME= asmix PORTVERSION= 1.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio afterstep -MASTER_SITES= http://www.tigr.net/afterstep/download/asmix/ +MASTER_SITES= http://tigr.net/afterstep/download/asmix/ \ + http://www.sourcefiles.org/Utilities/Console/A-B/ MAINTAINER= ports@FreeBSD.org COMMENT= Volume control dock-app for the AfterStep Window Manager -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2014-03-07 +LICENSE= GPLv2 USE_XORG= xpm x11 GNU_CONFIGURE= yes @@ -19,14 +19,21 @@ --with-xpm-includes=${LOCALBASE}/include \ --with-xpm-library=${LOCALBASE}/lib -NO_STAGE= yes -MAN1= ${PORTNAME}.1x -PLIST_FILES= bin/asmix +PLIST_FILES= bin/asmix man/man1/asmix.1.gz post-patch: -.for file in asmix.c configure autoconf/config.h.in +.for i in asmix.c configure autoconf/config.h.in @${REINPLACE_CMD} -e 's|machine/soundcard|sys/soundcard|g ; \ - s|MACHINE_SOUNDCARD|SYS_SOUNDCARD|g' ${WRKSRC}/${file} + s|MACHINE_SOUNDCARD|SYS_SOUNDCARD|g' ${WRKSRC}/${i} .endfor +post-build: + @${LN} -sf asmix.man ${WRKSRC}/asmix.1 + +do-install: + (cd ${WRKSRC} && ${INSTALL_PROGRAM} asmix \ + ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_MAN} asmix.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1) + .include diff -urN /usr/ports/audio/asmix/pkg-descr audio/asmix/pkg-descr --- /usr/ports/audio/asmix/pkg-descr 2014-01-23 03:56:59.000000000 +0900 +++ audio/asmix/pkg-descr 2014-02-26 00:00:00.000000000 +0900 @@ -2,4 +2,4 @@ window manager especially. The knob can be used to adjust the master volume of your sound card. -WWW: http://www.tigr.net/afterstep/ +WWW: http://tigr.net/afterstep/ >Release-Note: >Audit-Trail: >Unformatted: