From owner-svn-ports-head@FreeBSD.ORG Fri Aug 2 10:33:27 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD579E5B; Fri, 2 Aug 2013 10:33:27 +0000 (UTC) (envelope-from danfe@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81902206D; Fri, 2 Aug 2013 10:33:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r72AXRxc086227; Fri, 2 Aug 2013 10:33:27 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r72AXQpe086224; Fri, 2 Aug 2013 10:33:26 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201308021033.r72AXQpe086224@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 2 Aug 2013 10:33:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324159 - in head/textproc/topic: . 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.14 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: Fri, 02 Aug 2013 10:33:27 -0000 Author: danfe Date: Fri Aug 2 10:33:26 2013 New Revision: 324159 URL: http://svnweb.freebsd.org/changeset/ports/324159 Log: - Try to unbreak parallel (-jX) builds by sanitizing makefile - Cleanup Makefile: kill defunct WWW and comment MASTER_SITES Added: head/textproc/topic/files/ head/textproc/topic/files/patch-Makefile (contents, props changed) Modified: head/textproc/topic/Makefile head/textproc/topic/pkg-descr Modified: head/textproc/topic/Makefile ============================================================================== --- head/textproc/topic/Makefile Fri Aug 2 10:16:05 2013 (r324158) +++ head/textproc/topic/Makefile Fri Aug 2 10:33:26 2013 (r324159) @@ -3,7 +3,7 @@ PORTNAME= topic PORTVERSION= 1.02 CATEGORIES= textproc -MASTER_SITES= http://topcat.hypermart.net/code/ +MASTER_SITES= # http://topcat.hypermart.net/code/ MAINTAINER= mike@topcat.hypermart.net COMMENT= Topic markup parser @@ -11,8 +11,11 @@ COMMENT= Topic markup parser PLIST_FILES= bin/${PORTNAME} MAN1= ${PORTNAME}.1 +pre-build: + @${RM} ${WRKSRC}/topic.txt + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1/${PORTNAME}.1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 .include Added: head/textproc/topic/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/topic/files/patch-Makefile Fri Aug 2 10:33:26 2013 (r324159) @@ -0,0 +1,26 @@ +--- Makefile.orig 2013-01-01 14:00:00.000000000 +0800 ++++ Makefile 2013-08-02 18:27:07.000000000 +0800 +@@ -5,15 +5,17 @@ + CFLAGS+= -Wall -Werror + BUILD= v1.02 + +-all: prep compile ++all: topic + +-prep: ./bin2c.c ./syntax.txt ./markup.txt ./license.txt ++bin2c: bin2c.c + $(CC) $(CFLAGS) ./bin2c.c -o ./bin2c +- ./bin2c -z ./syntax.txt ./syntax.c +- ./bin2c -z ./markup.txt ./markup.c +- ./bin2c -z ./license.txt ./license.c + +-compile: ./topic.c ./syntax.c ./markup.c ./license.c ./topic.1 ++.SUFFIXES: .txt ++ ++.txt.c: bin2c ++ ./bin2c -z $(.IMPSRC) $(.TARGET) ++ ++topic: ./topic.c ./syntax.c ./markup.c ./license.c ./topic.1 + $(CC) $(CFLAGS) -DBUILD="\"$(BUILD)\"" ./topic.c -o ./topic + + clean: Modified: head/textproc/topic/pkg-descr ============================================================================== --- head/textproc/topic/pkg-descr Fri Aug 2 10:16:05 2013 (r324158) +++ head/textproc/topic/pkg-descr Fri Aug 2 10:33:26 2013 (r324159) @@ -1,4 +1,2 @@ TOPIC markup provides a minimal context for plain text databases that can be read/modified by most text editors, and easily parsed as well. - -WWW: http://topcat.hypermart.net/topic.html