From owner-svn-ports-head@FreeBSD.ORG Sat Nov 15 20:13:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBC6199B; Sat, 15 Nov 2014 20:13:36 +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 B890C170; Sat, 15 Nov 2014 20:13:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAFKDa7m007155; Sat, 15 Nov 2014 20:13:36 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAFKDapj007154; Sat, 15 Nov 2014 20:13:36 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201411152013.sAFKDapj007154@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sat, 15 Nov 2014 20:13:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372613 - in head/x11/xclip: . 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-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 15 Nov 2014 20:13:36 -0000 Author: johans Date: Sat Nov 15 20:13:35 2014 New Revision: 372613 URL: https://svnweb.freebsd.org/changeset/ports/372613 QAT: https://qat.redports.org/buildarchive/r372613/ Log: - Remove patchfile and remove autotools - Strip installed binary - Adopt port - Bump portrevision Deleted: head/x11/xclip/files/ Modified: head/x11/xclip/Makefile Modified: head/x11/xclip/Makefile ============================================================================== --- head/x11/xclip/Makefile Sat Nov 15 19:45:27 2014 (r372612) +++ head/x11/xclip/Makefile Sat Nov 15 20:13:35 2014 (r372613) @@ -3,27 +3,30 @@ PORTNAME= xclip PORTVERSION= 0.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= johans@FreeBSD.org COMMENT= Interface to X selections ("the clipboard") from the command line LICENSE= GPLv2 -USE_AUTOTOOLS= autoconf:env aclocal:env automake:env USE_XORG= x11 xmu -USES= gmake +USES= gmake GNU_CONFIGURE= yes - -PLIST_FILES= bin/xclip bin/xclip-copyfile bin/xclip-cutfile bin/xclip-pastefile man/man1/xclip.1.gz man/man1/xclip-copyfile.1.gz - -pre-configure: - cd ${WRKSRC}; ./bootstrap +CONFIGURE_ENV+= ac_cv_header_X11_Xmu_Atoms_h=yes \ + ac_cv_header_X11_Intrinsic_h=yes \ + ac_cv_lib_Xmu_XmuClientWindow=yes + +PLIST_FILES= bin/xclip bin/xclip-copyfile bin/xclip-cutfile \ + bin/xclip-pastefile \ + man/man1/xclip.1.gz man/man1/xclip-copyfile.1.gz post-patch: - ${REINPLACE_CMD} 's,mktemp,mktemp -t xclip,' \ - ${WRKSRC}/xclip-copyfile + ${REINPLACE_CMD} 's,mktemp,mktemp -t xclip,' ${WRKSRC}/xclip-copyfile + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xclip .include