From owner-svn-ports-all@FreeBSD.ORG Mon Apr 13 04:11:04 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ED83B60; Mon, 13 Apr 2015 04:11:04 +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 50111769; Mon, 13 Apr 2015 04:11:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3D4B4l7017772; Mon, 13 Apr 2015 04:11:04 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3D4B3HB017770; Mon, 13 Apr 2015 04:11:03 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201504130411.t3D4B3HB017770@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 13 Apr 2015 04:11:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383893 - head/x11/xsel 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.18-1 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: Mon, 13 Apr 2015 04:11:04 -0000 Author: danfe Date: Mon Apr 13 04:11:02 2015 New Revision: 383893 URL: https://svnweb.freebsd.org/changeset/ports/383893 Log: - Provide new mastersite (CENKES is no more) and unbreak - Define LICENSE (MIT), augment COMMENT, fix the header - Add missing OPTIONS_DEFINE, replace ${INSTALL} -d with ${MKDIR}, perform few other minor Makefile cleanups - Remove defunct WWW from port description - Transfer maintainership to the submitter PR: 199326 Submitted by: Chris Hutchinson Modified: head/x11/xsel/Makefile head/x11/xsel/pkg-descr Modified: head/x11/xsel/Makefile ============================================================================== --- head/x11/xsel/Makefile Mon Apr 13 03:42:49 2015 (r383892) +++ head/x11/xsel/Makefile Mon Apr 13 04:11:02 2015 (r383893) @@ -1,33 +1,38 @@ -# Created by: ijliao +# Created by: Ying-Chieh Liao # $FreeBSD$ PORTNAME= xsel PORTVERSION= 0.04.1 PORTREVISION= 5 CATEGORIES= x11 -MASTER_SITES= CENKES -#http://www.niksula.cs.hut.fi/~vherva/xsel/xsel.{c,man} +MASTER_SITES= http://BSDforge.com/projects/source/x11/xsel/ -MAINTAINER= ports@FreeBSD.org -COMMENT= Access X selection from command line +MAINTAINER= portmaster@BSDforge.com +COMMENT= Access X11 selection buffer from command line -BROKEN= No public distfiles +LICENSE= MIT -CONFLICTS= xsel-conrad-[0-9]* -USES= tar:bzip2 +CONFLICTS_INSTALL= xsel-conrad-[0-9]* + +USES= tar:bzip2 USE_XORG= xmu xaw xt xproto xkbfile + CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lXt -lXaw -lX11 -lXmu + PLIST_FILES= bin/${PORTNAME} man/man1/xsel.1.gz PORTDOCS= ${PORTNAME}.html +OPTIONS_DEFINE= DOCS + do-build: cd ${WRKSRC} && ${CC} ${CFLAGS} xsel.c -o xsel ${LDFLAGS} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man ${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1 - ${INSTALL} -d ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man \ + ${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include Modified: head/x11/xsel/pkg-descr ============================================================================== --- head/x11/xsel/pkg-descr Mon Apr 13 03:42:49 2015 (r383892) +++ head/x11/xsel/pkg-descr Mon Apr 13 04:11:02 2015 (r383893) @@ -1,5 +1,3 @@ xsel is a quick hack to give access to the X selection from the command line. You can paste stuff from the X selection to stdout and copy stuff from stdin to X selection. - -WWW: http://www.niksula.cs.hut.fi/~vherva/xsel/