From owner-svn-ports-all@FreeBSD.ORG Thu Nov 1 06:24:56 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73ADB409; Thu, 1 Nov 2012 06:24:56 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4257F8FC12; Thu, 1 Nov 2012 06:24:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id qA16Ou4N032050; Thu, 1 Nov 2012 06:24:56 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id qA16OtGG032046; Thu, 1 Nov 2012 06:24:56 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201211010624.qA16OtGG032046@svn.freebsd.org> From: Kevin Lo Date: Thu, 1 Nov 2012 06:24:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306779 - in head/multimedia/recordmydesktop: . 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.14 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: Thu, 01 Nov 2012 06:24:56 -0000 Author: kevlo Date: Thu Nov 1 06:24:55 2012 New Revision: 306779 URL: http://svn.freebsd.org/changeset/ports/306779 Log: Link to libjack library as stated in LIB_DEPENDS. Reported by: Gabor ZAHEMSZKY Feature safe: yes Added: head/multimedia/recordmydesktop/files/patch-config.h.in (contents, props changed) head/multimedia/recordmydesktop/files/patch-configure (contents, props changed) Modified: head/multimedia/recordmydesktop/Makefile Modified: head/multimedia/recordmydesktop/Makefile ============================================================================== --- head/multimedia/recordmydesktop/Makefile Thu Nov 1 05:54:06 2012 (r306778) +++ head/multimedia/recordmydesktop/Makefile Thu Nov 1 06:24:55 2012 (r306779) @@ -1,13 +1,8 @@ -# New ports collection makefile for: recordmydesktop -# Date created: 18 July 2007 -# Whom: Kevin Lo -# # $FreeBSD$ -# PORTNAME= recordmydesktop DISTVERSION= 0.3.8.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= SF @@ -21,7 +16,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-oss=yes \ --enable-jack=yes -MAN1= recordmydesktop.1 +MAN1= recordmydesktop.1 USE_XORG= ice sm x11 xext xextproto xfixes xdamage PLIST_FILES= bin/recordmydesktop Added: head/multimedia/recordmydesktop/files/patch-config.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/recordmydesktop/files/patch-config.h.in Thu Nov 1 06:24:55 2012 (r306779) @@ -0,0 +1,12 @@ +--- config.h.in.orig 2012-11-01 13:10:46.000000000 +0800 ++++ config.h.in 2012-11-01 13:11:44.000000000 +0800 +@@ -34,6 +34,9 @@ + /* Define to 1 if you have the `SM' library (-lSM). */ + #undef HAVE_LIBSM + ++/* Define to 1 if you have the `jack' library (-ljack). */ ++#undef HAVE_LIBJACK ++ + /* Define to 1 if you have the `theora' library (-ltheora). */ + #undef HAVE_LIBTHEORA + Added: head/multimedia/recordmydesktop/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/recordmydesktop/files/patch-configure Thu Nov 1 06:24:55 2012 (r306779) @@ -0,0 +1,14 @@ +--- configure.orig 2012-11-01 10:31:35.000000000 +0800 ++++ configure 2012-11-01 10:32:15.000000000 +0800 +@@ -8720,6 +8720,11 @@ + { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jack_jack_activate" >&5 + $as_echo "$ac_cv_lib_jack_jack_activate" >&6; } + if test "x$ac_cv_lib_jack_jack_activate" = x""yes; then ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBJACK 1 ++_ACEOF ++ ++ LIBS="-ljack $LIBS" + jack_lib_found=true + fi +