From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Nov 23 09:10:01 2007 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 5346516A420 for ; Fri, 23 Nov 2007 09:10:01 +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 2243513C47E for ; Fri, 23 Nov 2007 09:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id lAN9A0qh031302 for ; Fri, 23 Nov 2007 09:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id lAN9A0bU031301; Fri, 23 Nov 2007 09:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 23 Nov 2007 09:10:00 GMT Resent-Message-Id: <200711230910.lAN9A0bU031301@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DF0716A473 for ; Fri, 23 Nov 2007 09:09:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 30E8E13C45A for ; Fri, 23 Nov 2007 09:09:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id lAN99kaW011349 for ; Fri, 23 Nov 2007 09:09:46 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id lAN99kds011348; Fri, 23 Nov 2007 09:09:46 GMT (envelope-from nobody) Message-Id: <200711230909.lAN99kds011348@www.freebsd.org> Date: Fri, 23 Nov 2007 09:09:46 GMT From: "Philip M. Gollucci" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/118210: editors/emacs21: [PATCH]: make FETCHABLE again, portlint cleanups 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: Fri, 23 Nov 2007 09:10:01 -0000 >Number: 118210 >Category: ports >Synopsis: editors/emacs21: [PATCH]: make FETCHABLE again, portlint cleanups >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Nov 23 09:10:00 UTC 2007 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 8.0-CURRENT >Organization: Riderway Inc. >Environment: FreeBSD goku.p6m7g8.net 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Nov 4 01:36:52 EDT 2007 pgollucci@home.p6m7g8.net:/usr/obj/usr/src/sys/HOME i386 >Description: GNU moved emacs-21.3 to gnu-old directory ~Nov 18th. The new one 21.4a is alpha so I didn't upgrade the port. Some minor portlint things while here too. Note, port is _NOT_ DATADIR safe. >How-To-Repeat: >Fix: apply patch Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/editors/emacs21/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 16 Jul 2007 17:02:46 -0000 1.21 +++ Makefile 22 Nov 2007 07:09:15 -0000 @@ -7,11 +7,17 @@ PORTNAME= emacs PORTVERSION= 21.3 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= editors ipv6 -MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITES= ${MASTER_SITE_GNU:C/\/gnu\//\/old-gnu\//g} MASTER_SITE_SUBDIR= ${PORTNAME} +.if defined(WITH_MENUBAR_FONTSET) +PATCH_SITES= http://nijino.homelinux.net/emacs/ +PATCHFILES= emacs-21.1-fontset.patch emacs-21.2-menu-encode.patch +PATCH_DIST_STRIP= -p1 +.endif + MAINTAINER= nobutaka@FreeBSD.org COMMENT= GNU editing macros @@ -29,12 +35,6 @@ USE_XPM= yes .endif -.if defined(WITH_MENUBAR_FONTSET) -PATCH_SITES= http://nijino.homelinux.net/emacs/ -PATCHFILES= emacs-21.1-fontset.patch emacs-21.2-menu-encode.patch -PATCH_DIST_STRIP= -p1 -.endif - USE_AUTOTOOLS= autoconf:213 USE_GMAKE= yes @@ -55,7 +55,7 @@ INFO= ada-mode autotype ccmode cl dired-x ebrowse ediff \ efaq emacs emacs-mime eshell eudc forms gnus idlwave \ info message mh-e pcl-cvs reftex sc speedbar vip \ - viper widget woman + viper widget woman LATEST_LINK= emacs21 Index: pkg-message =================================================================== RCS file: /home/ncvs/ports/editors/emacs21/pkg-message,v retrieving revision 1.4 diff -u -r1.4 pkg-message --- pkg-message 16 Jul 2007 17:02:46 -0000 1.4 +++ pkg-message 22 Nov 2007 07:13:21 -0000 @@ -4,7 +4,7 @@ * LEIM: Libraries of Emacs Input Method * * package. * * You can find leim port in the following directory: * -* /usr/ports/editors/leim21 * +* ${PORTSDIR}/editors/leim21 * * * * If you want to use multibyte characters in the menubar, * * make WITH_MENUBAR_FONTSET=yes install * >Release-Note: >Audit-Trail: >Unformatted: