Date: Tue, 11 Apr 2006 04:00:37 +0000 (UTC) From: Doug Kelly (dougk@dougk-ff7.net) <root@dougk-ff7.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/95609: [maintainer-update] [patch] JDE's version check fails with newer versions of CEDET Message-ID: <20060411040037.20F4B63F7@tsukasa.dougk-ff7.net> Resent-Message-ID: <200604110410.k3B4AEO1008505@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 95609 >Category: ports >Synopsis: [maintainer-update] [patch] JDE's version check fails with newer versions of CEDET >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: Tue Apr 11 04:10:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Doug Kelly (dougk@dougk-ff7.net) >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD tsukasa.dougk-ff7.net 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Aug 4 07:36:16 UTC 2005 root@tsukasa.dougk-ff7.net:/usr/obj/usr/src/sys/DOUGK i386 >Description: JDE's stable code does not properly detect the version of newer versions of CEDET, and will fail to load. The upstream maintainer has created a fix and applied it to the jdee CVS repository, however this will solve the problem for current users. >How-To-Repeat: N/A -- issue will appear with current version of JDE and CEDET >=1.0.0pre1. >Fix: Patch is included, along with appropriate Makefile update. However, posting this patch to the FreeBSD mirrors instead of my own server and updating the relevant Makefile lines would be appreciated. ;) begin 644 jde-version-check-fix.patch.bz2 M0EIH.3%!629368AI/F0``>??@%UT4?__]F>S7<`____04`->;5SANV@;L$HD MU3])Z@Q1Z-$Q#1D-`T`]$,331I^J-`E$F`J9ZD:!H-J!HT-``#)H!Z0!A)"@ MR::8C1IH:--&AB8F@::``!QDR9,1B8`3)@F0`T81@"&`*IJ(3329,34RGBGJ M!H]0!HT#U-#0:#U,F[0J0;Z>DM;RX2.J8<^NV6%4SC'''M8'\Q_"9;'NNS#, MIT+1:BG-V2G*+800PJU[85^G=4BU^905*`PLSUK4^FE$JFGIET&-L@#PF.&K M*WBE=:QWRH405;>^JODKL'E@U#.E;^WJFUGR+P+;G5G#<DWM-Z[$LS3SH]]^ M5&-E*-H<KJ0A%KJIPI<D7U7=?MPPCV?9"-M*V2+#-4>YCQQ)[XS!L*!?Y5(6 M!6&(R*@'FJ'@H1'2K[$&"9*99`@9DD3EFRRD!D5`E%DC?LV##1%Q"NCL(-AD M;2F;2-I21N#2GG%$ZM1#>,`\B1&]W>"7JGV$>V8ISMDDJ+#2<U)&V^2RL#<P MQQ'<:CYS5QD23RG$>;4B)#?KK\F&A=@]%EFXWO5:C!Z*BREX.1<U%QEL+LZ2 M-]S*[7D8^?8VNKFLM:[[<CAQ%90I"N7!3X4TS[#ZUY<)3R1OSK#<&1N&-A!X MT@F`,`&^;GCB'"#,)5'*;6,#-V#"Z#1#'ZI&91X#=5>G<SQ<#QJJP/>8;''C M>SH?67C!4D"6;`?K0C,@$_%$B>QJ)]J(@4++:3+B9T/$1H5G#!FTIHG6GM;L M+NJ]9Y11(KE==TTUQ)*X.G>YJ6G)I61ZL6Q6JLQ6ADX98T>SQ+U!-PW]TDD/ M`:&[?6UGNF@BV7&PC7R>?[I$B+[<6DOCBDSNJ&3&]:^^+51[)39=C-M9XEW) M'0VN!O,>&IU)XME:F-=O#KB_3UK]Z*[!@.6CC7K=Z[R.)'.MFO-+V4I@SK(] M<_AX"0+T"-HG;TFU0F&JX!TJR3]-BJ*MP78:(E>QIBFW%-R:4H#;!+)I:H6H M!2`J!BI0`@05SK5YF_YN9[];M_1V\C;3")*J1214A:;3BAU5UHK_Q=R13A0D %(AI/F0`` ` end --- Makefile.patch begins here --- --- Makefile.old Tue Apr 11 03:47:43 2006 +++ Makefile Tue Apr 11 03:50:12 2006 @@ -2,13 +2,14 @@ # Date created: 8 January 2002 # Whom: Kimura Fuyuki <fuyuki@mj.0038.net> # -# $FreeBSD: /repoman/r/pcvs/ports/java/jde/Makefile,v 1.10 2006/01/28 02:11:27 linimon Exp $ +# $FreeBSD: ports/java/jde/Makefile,v 1.10 2006/01/28 02:11:27 linimon Exp $ # PORTNAME= jde PORTVERSION= 2.3.5 CATEGORIES= java elisp MASTER_SITES= http://jdee.sunsite.dk/ +PATCH_SITES= http://dougk-ff7.net/freebsd/ PKGNAMESUFFIX= -${EMACS_PORT_NAME} MAINTAINER= dougk@dougk-ff7.net @@ -24,6 +25,8 @@ BUILD_DEPENDS= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/cedet/common/cedet.el:${PORTSDIR}/devel/cedet${PORTNAMESUFFIX} \ ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/elib/avltree.el:${PORTSDIR}/devel/elib${PORTNAMESUFFIX} RUN_DEPENDS= ${BUILD_DEPENDS} + +PATCHFILES = jde-version-check-fix.patch.bz2 USE_REINPLACE= yes --- Makefile.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060411040037.20F4B63F7>