From owner-freebsd-ports@FreeBSD.ORG Fri Mar 4 09:22:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F1F116A4CE; Fri, 4 Mar 2005 09:22:41 +0000 (GMT) Received: from caraldi.com (195-13-58-165.oxyd.net [195.13.58.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B0CA43D62; Fri, 4 Mar 2005 09:22:40 +0000 (GMT) (envelope-from jbq@anyware-tech.com) Received: from vision.anyware (10.21.96-84.rev.gaoland.net [84.96.21.10]) by caraldi.com (Postfix) with ESMTP id A8D3F60FF; Fri, 4 Mar 2005 10:22:39 +0100 (CET) Received: by vision.anyware (Postfix, from userid 1021) id 8CFA860EA; Fri, 4 Mar 2005 10:22:38 +0100 (CET) Date: Fri, 4 Mar 2005 10:22:38 +0100 From: Jean-Baptiste Quenot To: netchild@FreeBSD.org Message-ID: <20050304092236.GA63857@vision.anyware> Mail-Followup-To: netchild@FreeBSD.org, freebsd-ports Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline User-Agent: Mutt/1.5.6i cc: freebsd-ports Subject: [PATCH] net/skype does not ring by default X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Mar 2005 09:22:41 -0000 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, Please find attached a patch that allows skype to ring upon a received call. Skype expects data under hard-coded path /usr/share/skype so this patch creates a symlink in the base system when WITH_SYMLINK_BASE is set. Thanks in advance, -- Jean-Baptiste Quenot http://caraldi.com/jbq/ --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-Makefile --- Makefile.orig Fri Mar 4 10:15:16 2005 +++ Makefile Fri Mar 4 10:17:25 2005 @@ -52,6 +52,11 @@ ${INSTALL_DATA} ${WRKSRC}/lang/*.qm ${DATADIR}/lang/ ${INSTALL_DATA} ${WRKSRC}/sound/*.wav ${DATADIR}/sound/ ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DATADIR}/ +.if defined(WITH_SYMLINK_BASE) + # skype expects data under hard-coded path /usr/share/skype so create a + # symlink in the base system if needed + ${TEST} -h /usr/share/skype || ${LN} -s ${PREFIX}/share/skype /usr/share/skype +.endif post-install: @${ECHO} "##########################################################################" --FL5UXtIhxfXey3p5--