From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 31 17:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C13B204 for ; Tue, 31 Dec 2013 17:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 64616133A for ; Tue, 31 Dec 2013 17:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBVHo098025113 for ; Tue, 31 Dec 2013 17:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBVHo0W3025112; Tue, 31 Dec 2013 17:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 31 Dec 2013 17:50:00 GMT Resent-Message-Id: <201312311750.rBVHo0W3025112@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rene Ladan Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8903C1C0 for ; Tue, 31 Dec 2013 17:41:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 5C5C5131E for ; Tue, 31 Dec 2013 17:41:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBVHfGYB024922 for ; Tue, 31 Dec 2013 17:41:16 GMT (envelope-from rene@freefall.freebsd.org) Received: (from rene@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBVHfGvB024921; Tue, 31 Dec 2013 17:41:16 GMT (envelope-from rene) Message-Id: <201312311741.rBVHfGvB024921@freefall.freebsd.org> Date: Tue, 31 Dec 2013 17:41:16 GMT From: Rene Ladan To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185373: graphics/kix-kmod : stagify, cleanups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Rene Ladan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Dec 2013 17:50:00 -0000 >Number: 185373 >Category: ports >Synopsis: graphics/kix-kmod : stagify, cleanups >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 31 17:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Rene Ladan >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r259961: Fri Dec 27 21:56:39 UTC 2013 peter@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL amd64 ports/head r338307 >Description: - Stagify graphics/kix-kmod - cleanups for 'make check-sanity' and 'portlint -c' - just include bsd.port.mk instead of bsd.{pre|post}.port.mk The MASTER_SITES was defined wrongly, fixing that revealed a checksum mismatch (the file size is correct). Can you verify that the changes are OK ? Redports build: https://redports.org/buildarchive/20131231170201-61784 >How-To-Repeat: Start removing NO_STAGE support from Mk/Uses/kmod.mk >Fix: Index: graphics/kix-kmod/Makefile =================================================================== --- graphics/kix-kmod/Makefile (revision 338307) +++ graphics/kix-kmod/Makefile (working copy) @@ -5,17 +5,14 @@ PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= graphics -MASTER_SITES= http://homepage.ntlworld.com/jon.belson/files/kix-1.0.tar.gz \ +MASTER_SITES= http://homepage.ntlworld.com/jon.belson/files/ \ LOCAL/pgollucci PKGNAMESUFFIX= -kmod MAINTAINER= jon@witchspace.com -COMMENT= A graphical screensaver kernel module +COMMENT= Graphical screensaver kernel module -NO_STAGE= yes - USES= kmod -.include MAKE_ENV+= WERROR= PLIST_FILES= lib/kix_saver.ko @@ -22,9 +19,6 @@ SUB_FILES= pkg-message do-install: - ${INSTALL_KLD} ${WRKSRC}/kix_saver.ko ${PREFIX}/lib + ${INSTALL_KLD} ${WRKSRC}/kix_saver.ko ${STAGEDIR}${PREFIX}/lib -post-install: - @${CAT} ${PKGMESSAGE} - -.include +.include Index: graphics/kix-kmod/distinfo =================================================================== --- graphics/kix-kmod/distinfo (revision 338307) +++ graphics/kix-kmod/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (kix-1.0.tar.gz) = 372e7f294064fe7852086f7b977558339cf686c4d42a36d952d9479634aa475b +SHA256 (kix-1.0.tar.gz) = 808f93721213a51251aa8614afa0b4852399eb7498bb20cd3410ad84c7645ce7 SIZE (kix-1.0.tar.gz) = 3497 >Release-Note: >Audit-Trail: >Unformatted: