From owner-svn-ports-all@FreeBSD.ORG Thu Apr 24 14:00:30 2014 Return-Path: Delivered-To: svn-ports-all@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 F2B575E9; Thu, 24 Apr 2014 14:00:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF6A51BC1; Thu, 24 Apr 2014 14:00:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3OE0TdQ057644; Thu, 24 Apr 2014 14:00:29 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3OE0TGe057643; Thu, 24 Apr 2014 14:00:29 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201404241400.s3OE0TGe057643@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 24 Apr 2014 14:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352004 - in head/deskutils/notify-osd: . 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.17 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, 24 Apr 2014 14:00:30 -0000 Author: ehaupt Date: Thu Apr 24 14:00:29 2014 New Revision: 352004 URL: http://svnweb.freebsd.org/changeset/ports/352004 QAT: https://qat.redports.org/buildarchive/r352004/ Log: Fix build on 9.2 and remove dependency to gcc [1]. PR: 188940 Submitted by: tijl [1] Reported by: Walter Schwarzenfeld Deleted: head/deskutils/notify-osd/files/ Modified: head/deskutils/notify-osd/Makefile Modified: head/deskutils/notify-osd/Makefile ============================================================================== --- head/deskutils/notify-osd/Makefile Thu Apr 24 13:25:51 2014 (r352003) +++ head/deskutils/notify-osd/Makefile Thu Apr 24 14:00:29 2014 (r352004) @@ -3,7 +3,7 @@ PORTNAME= notify-osd PORTVERSION= 0.9.29 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils MASTER_SITES= http://launchpadlibrarian.net/43419242/ \ CRITICAL @@ -23,8 +23,16 @@ GNU_CONFIGURE= yes USES= gmake libtool pkgconfig USE_GNOME= libwnck gconf2 USE_XORG= pixman -USE_GCC= yes LDFLAGS+= -L${LOCALBASE}/lib -lpixman-1 +.include + +post-patch: + @${REINPLACE_CMD} '/SUBDIRS =/s/tests//' ${WRKSRC}/Makefile.in +.if ${OSVERSION} < 900033 + @${REINPLACE_CMD} 's/-Bsymbolic-functions/-Bsymbolic/' \ + ${WRKSRC}/src/Makefile.in +.endif + .include