From owner-svn-ports-head@FreeBSD.ORG Fri Feb 15 13:46:22 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A9195576; Fri, 15 Feb 2013 13:46:22 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9BF9DCD3; Fri, 15 Feb 2013 13:46:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1FDkMSm064377; Fri, 15 Feb 2013 13:46:22 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1FDkMPs064376; Fri, 15 Feb 2013 13:46:22 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201302151346.r1FDkMPs064376@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 15 Feb 2013 13:46:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312288 - head/audio/mpg123 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, 15 Feb 2013 13:46:22 -0000 Author: danfe Date: Fri Feb 15 13:46:22 2013 New Revision: 312288 URL: http://svnweb.freebsd.org/changeset/ports/312288 Log: - Force GCC to do the build for the time being, since Clang produces bad code at least on amd64 (mpg123 simply dumps core upon run) - Trim Makefile header, retouch COMMENT, and perform minor Makefile cleanups Approved by: novel (maintainer) Modified: head/audio/mpg123/Makefile Modified: head/audio/mpg123/Makefile ============================================================================== --- head/audio/mpg123/Makefile Fri Feb 15 12:28:48 2013 (r312287) +++ head/audio/mpg123/Makefile Fri Feb 15 13:46:22 2013 (r312288) @@ -1,9 +1,5 @@ -# New ports collection makefile for: mpg123 -# Date created: 25 June 1997 -# Whom: Carey Jones -# +# Created by: Carey Jones # $FreeBSD$ -# PORTNAME= mpg123 PORTVERSION= 1.14.4 @@ -12,14 +8,15 @@ MASTER_SITES= SF \ http://www.mpg123.de/download/ MAINTAINER= novel@FreeBSD.org -COMMENT= Command-line player for mpeg layer 1, 2, and 3 audio +COMMENT= Command-line player for MPEG Layer 1, 2, and 3 audio files LICENSE= LGPL21 -USE_GNOME= gnomehack ltverhack USE_BZIP2= yes USE_AUTOTOOLS= libtool libltdl +USE_GNOME= gnomehack ltverhack USE_LDCONFIG= yes +USE_GCC= any # dumps core on amd64 if built with clang GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-optimization=0 \ @@ -29,7 +26,7 @@ CONFIGURE_ENV= CONFIG_SHELL=${SH} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= mpg123.1 +MAN1= ${PORTNAME}.1 .include @@ -48,7 +45,7 @@ WITH_CPU= x86-64 .endif .if defined(WITH_CPU) -CONFIGURE_ARGS+=--with-cpu=${WITH_CPU} +CONFIGURE_ARGS+= --with-cpu=${WITH_CPU} .endif .include