From owner-freebsd-ports Thu Feb 25 22:10:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ECE3714ED8 for ; Thu, 25 Feb 1999 22:10:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id WAA70640; Thu, 25 Feb 1999 22:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-a.abtsfd1.bc.wave.home.com [24.113.18.89]) by hub.freebsd.org (Postfix) with ESMTP id B6D4A14EC4 for ; Thu, 25 Feb 1999 22:05:23 -0800 (PST) (envelope-from norn@norn.ca.eu.org) Received: (from norn@localhost) by norn.ca.eu.org (8.9.3/8.9.2) id WAA59563; Thu, 25 Feb 1999 22:05:06 -0800 (PST) (envelope-from norn) Message-Id: <199902260605.WAA59563@norn.ca.eu.org> Date: Thu, 25 Feb 1999 22:05:06 -0800 (PST) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/10272: [new port] gmixer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 10272 >Category: ports >Synopsis: [new port] gmixer >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 25 22:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT >Description: a GTK+ based mixer program. Comments welcome. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gmixer # gmixer/pkg # gmixer/pkg/PLIST # gmixer/pkg/COMMENT # gmixer/pkg/DESCR # gmixer/files # gmixer/files/md5 # gmixer/patches # gmixer/patches/patch-aa # gmixer/patches/patch-ab # gmixer/Makefile # echo c - gmixer mkdir -p gmixer > /dev/null 2>&1 echo c - gmixer/pkg mkdir -p gmixer/pkg > /dev/null 2>&1 echo x - gmixer/pkg/PLIST sed 's/^X//' >gmixer/pkg/PLIST << 'END-of-gmixer/pkg/PLIST' Xbin/gmixer Xshare/pixmaps/gmixer.xpm X@dirrm share/pixmaps END-of-gmixer/pkg/PLIST echo x - gmixer/pkg/COMMENT sed 's/^X//' >gmixer/pkg/COMMENT << 'END-of-gmixer/pkg/COMMENT' XX11/gtk+ mixer control. END-of-gmixer/pkg/COMMENT echo x - gmixer/pkg/DESCR sed 's/^X//' >gmixer/pkg/DESCR << 'END-of-gmixer/pkg/DESCR' Xgmixer is an X11/gtk+ mixer control program. Features a clean interface Xand the ability to auto load/save a configuration. X XHomepage: Xhttp://junior.technion.ac.il/~sergey/linux.html XAuthor: XSergey Kiselev X X-Chris Piazza Xcpiazza@home.net END-of-gmixer/pkg/DESCR echo c - gmixer/files mkdir -p gmixer/files > /dev/null 2>&1 echo x - gmixer/files/md5 sed 's/^X//' >gmixer/files/md5 << 'END-of-gmixer/files/md5' XMD5 (gmixer-0.98c.tar.gz) = 3fd677595a012439759021a926112e1c END-of-gmixer/files/md5 echo c - gmixer/patches mkdir -p gmixer/patches > /dev/null 2>&1 echo x - gmixer/patches/patch-aa sed 's/^X//' >gmixer/patches/patch-aa << 'END-of-gmixer/patches/patch-aa' X--- Makefile.orig Thu Feb 25 21:31:39 1999 X+++ Makefile Thu Feb 25 21:36:58 1999 X@@ -1,11 +1,11 @@ X-CC = gcc X+#CC = gcc X #CC = egcs X #FLAGS = -g X X gmixer: gmixer.c X- $(CC) $(FLAGS) `gtk-config --cflags` `gtk-config --libs` gmixer.c -o gmixer X+ $(CC) $(CFLAGS) `gtk11d-config --cflags` `gtk11d-config --libs` gmixer.c -o gmixer X install: gmixer X- install -s -m 755 -o 0 -g 0 gmixer /usr/X11R6/bin/ X- install -m 644 -o 0 -g 0 icons/gmixer.xpm /usr/share/pixmaps/ X+ install -c -s -m 755 -o 0 -g 0 gmixer $(PREFIX)/bin X+ install -c -m 644 -o 0 -g 0 icons/gmixer.xpm $(PREFIX)/share/pixmaps X clean: X rm -f gmixer END-of-gmixer/patches/patch-aa echo x - gmixer/patches/patch-ab sed 's/^X//' >gmixer/patches/patch-ab << 'END-of-gmixer/patches/patch-ab' X--- gmixer.c.orig Thu Feb 25 21:32:29 1999 X+++ gmixer.c Thu Feb 25 21:32:48 1999 X@@ -4,7 +4,7 @@ X #include X #include X #include X-#include X+#include X #include X #include "icons/gmixer.xpm" X #include "icons/mix_logo.xpm" END-of-gmixer/patches/patch-ab echo x - gmixer/Makefile sed 's/^X//' >gmixer/Makefile << 'END-of-gmixer/Makefile' X# New ports collection makefile for: gmixer X# Version required: 0.98c X# Date created: 25 February 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= gmixer-0.98c XCATEGORIES= audio XMASTER_SITES= http://junior.technion.ac.il/~sergey/linux/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= gtk11d.1:${PORTSDIR}/x11-toolkits/gtk11-devel X XALL_TARGET= gmixer X Xpre-install: X @ ${MKDIR} ${PREFIX}/share/pixmaps X X.include END-of-gmixer/Makefile exit -Chris >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message