From owner-svn-ports-all@freebsd.org Thu Mar 16 07:21:24 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE625D0EFB2; Thu, 16 Mar 2017 07:21:24 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 916E11C2B; Thu, 16 Mar 2017 07:21:24 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2G7LNiB001528; Thu, 16 Mar 2017 07:21:23 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2G7LNEV001526; Thu, 16 Mar 2017 07:21:23 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201703160721.v2G7LNEV001526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 16 Mar 2017 07:21:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436262 - head/devel/libdisasm 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.23 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, 16 Mar 2017 07:21:25 -0000 Author: danfe Date: Thu Mar 16 07:21:23 2017 New Revision: 436262 URL: https://svnweb.freebsd.org/changeset/ports/436262 Log: - Remove bogus ONLY_FOR_ARCHS: there is nothing x86-specific about this library (apart from supported instruction set) and it runs just fine on e.g. PowerPC - Try to come up with slightly less obnoxious COMMENT and reformat port description text for better looks Modified: head/devel/libdisasm/Makefile head/devel/libdisasm/pkg-descr Modified: head/devel/libdisasm/Makefile ============================================================================== --- head/devel/libdisasm/Makefile Thu Mar 16 07:18:39 2017 (r436261) +++ head/devel/libdisasm/Makefile Thu Mar 16 07:21:23 2017 (r436262) @@ -8,13 +8,11 @@ CATEGORIES= devel MASTER_SITES= SF/bastard/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= Bastard Disassembly Environment x86 disassembler library and CLI +COMMENT= Intel x86 instructions disassembler utility and library LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= i386 amd64 - USES= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/libdisasm/pkg-descr ============================================================================== --- head/devel/libdisasm/pkg-descr Thu Mar 16 07:18:39 2017 (r436261) +++ head/devel/libdisasm/pkg-descr Thu Mar 16 07:21:23 2017 (r436262) @@ -1,8 +1,7 @@ -The libdisasm library provides basic disassembly of Intel x86 -instructions from a binary stream. The intent is to provide an easy to -use disassembler which can be called from any application; the -disassembly can be produced in AT&T syntax and Intel syntax, as well as -in an intermediate format which includes detailed instruction and -operand type information. +The libdisasm library provides basic disassembly of Intel x86 instructions +from a binary stream. The intent is to provide an easy to use disassembler +which can be called from any application; the disassembly can be produced +in AT&T syntax and Intel syntax, as well as in an intermediate format which +includes detailed instruction and operand type information. WWW: http://bastard.sourceforge.net/libdisasm.html