From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 26 07:10:02 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4867F1065674 for ; Mon, 26 May 2008 07:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 106838FC19 for ; Mon, 26 May 2008 07:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4Q7A2gu024343 for ; Mon, 26 May 2008 07:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4Q7A27c024342; Mon, 26 May 2008 07:10:02 GMT (envelope-from gnats) Resent-Date: Mon, 26 May 2008 07:10:02 GMT Resent-Message-Id: <200805260710.m4Q7A27c024342@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, Marcus von Appen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63B931065674 for ; Mon, 26 May 2008 07:03:34 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id DB14B8FC1B for ; Mon, 26 May 2008 07:03:33 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from [89.182.196.125] (helo=medusa.sysfault.org) by smtprelay02.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1K0Wk0-0001r2-BA; Mon, 26 May 2008 09:03:32 +0200 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1K0WmF-0009xb-5r; Mon, 26 May 2008 09:05:52 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.14.2/8.14.2/Submit) id m4Q75o0R038286; Mon, 26 May 2008 09:05:50 +0200 (CEST) (envelope-from marcus) Message-Id: <200805260705.m4Q75o0R038286@medusa.sysfault.org> Date: Mon, 26 May 2008 09:05:50 +0200 (CEST) From: Marcus von Appen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: itetcu@FreeBSD.org Subject: ports/123999: [Maintainer-update] x11-fm/emelfm2: respect NOPORTDOCS knob X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2008 07:10:02 -0000 >Number: 123999 >Category: ports >Synopsis: [Maintainer-update] x11-fm/emelfm2: respect NOPORTDOCS knob >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 26 07:10:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Marcus von Appen >Release: FreeBSD 7.0-STABLE i386 >Organization: >Environment: System: FreeBSD medusa.sysfault.org 7.0-STABLE FreeBSD 7.0-STABLE #0: Thu Apr 17 19:16:56 CEST 2008 >Description: - Respect NOPORTDOCS knob as reported by itetcu@. - Bump portrevision for users using NOPORTDOCS implicitly. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- emelfm2-0.4.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/Makefile /usr/ports/x11-fm/emelfm2.new/Makefile --- /usr/ports/x11-fm/emelfm2/Makefile 2008-05-24 19:08:34.000000000 +0200 +++ /usr/ports/x11-fm/emelfm2.new/Makefile 2008-05-26 08:56:18.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= emelfm2 PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= x11-fm MASTER_SITES= http://emelfm2.net/rel/ @@ -31,6 +32,9 @@ HAL "Enable HAL support" off \ NLS "Enable gettext support" on +DOCFILES= ACTIONS CONFIGURATION CREDITS GPL HACKING INSTALL LGPL NEWS \ + README SPEC TODO USAGE WARNING help.txt + .include .if defined(WITH_DEBUG) @@ -87,4 +91,12 @@ ${WRKSRC}/src/filesystem/e2_fs.c .endif +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for file in ${DOCFILES} + ${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR} +.endfor +.endif + .include diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/files/patch-Makefile /usr/ports/x11-fm/emelfm2.new/files/patch-Makefile --- /usr/ports/x11-fm/emelfm2/files/patch-Makefile 2008-04-04 22:42:06.000000000 +0200 +++ /usr/ports/x11-fm/emelfm2.new/files/patch-Makefile 2008-05-26 08:46:09.000000000 +0200 @@ -1,6 +1,6 @@ ---- Makefile.orig 2008-02-09 23:22:11.000000000 +0100 -+++ Makefile 2008-04-04 21:47:47.000000000 +0200 -@@ -56,7 +56,7 @@ +--- Makefile.orig 2008-05-12 02:04:41.000000000 +0200 ++++ Makefile 2008-05-26 08:45:53.000000000 +0200 +@@ -51,7 +51,7 @@ #these are only used here for installation purposes BIN_DIR = $(PREFIX)/bin @@ -9,7 +9,7 @@ #as well as usage here, all in-code uses of these is assumed localised ifeq ($(DOCS_VERSION), 1) DOC_DIR = $(PREFIX)/share/doc/$(TARGET)-$(VERSION) -@@ -217,7 +217,7 @@ +@@ -215,7 +215,7 @@ lLDFLAGS = $(LDFLAGS) # -lrt needed for clock_gettime() @@ -18,7 +18,7 @@ ifeq ($(USE_FAM),1) lLIBS += -lfam endif -@@ -234,6 +234,7 @@ +@@ -232,6 +232,7 @@ lLIBS += -lacl endif ifeq ($(WITH_HAL),1) @@ -26,7 +26,7 @@ lLIBS += $(shell pkg-config --libs dbus-1 dbus-glib-1 hal hal-storage) endif # for vfs & gvfs development -@@ -246,10 +247,10 @@ +@@ -244,10 +245,10 @@ endif # should not need translation OPSYS := $(shell uname) @@ -40,4 +40,15 @@ +#endif .PHONY: all plugins install install_plugins uninstall uninstall_plugins doc \ - clean deps marshals gettext i18n install_i18n uninstall_i18n \ + clean deps i18n install_i18n uninstall_i18n \ +@@ -266,10 +267,6 @@ + @for file in `ls icons/ |grep -v svn`; do \ + install -m 644 icons/$$file $(ICON_DIR); \ + done +- @install -d $(DOC_DIR) +- @for file in `ls docs/ |grep -v svn |grep -v desktop_environment |grep -v api |grep -v $(TARGET).1`; do \ +- install -m 644 docs/$$file $(DOC_DIR); \ +- done + @install -d $(MAN_DIR) + @install -m 644 docs/$(TARGET).1 $(MAN_DIR); + # @bzip2 -f $(MAN_DIR)/$(TARGET).1; --- emelfm2-0.4.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: