summaryrefslogtreecommitdiff
path: root/editors/joe2 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Remove unnecessary portRyan Steinmetz2018-08-136-93/+0
| | | | | | | | | | | - Add MOVED entry to point editors/joe2 users to editors/joe PR: 230582 Submitted by: kevin@your.org Approved by: maintainer Notes: svn path=/head/; revision=477048
* Fix OPTIONS_DEFAULT: remove DOCS which is added by frameworkSunpoet Po-Chuan Hsieh2017-05-281-2/+2
| | | | | | | | | - Convert to options target helper Approved by: portmgr (blanket) Notes: svn path=/head/; revision=441954
* Update WWW: SF redirects to https://sourceforge.net/projects/<PROJECT_NAME>/Sunpoet Po-Chuan Hsieh2017-01-201-1/+1
| | | | Notes: svn path=/head/; revision=431996
* Make dependency on ispell a default OPTIONThomas Zander2016-06-261-4/+5
| | | | | | | | | | | | While on it: - Fix typo in makefile (PORTREIVSION -> PORTREVISION) PR: 208914 Submitted by: olexander.v.melnyk@gmail.com Approved by: maintainer timeout Notes: svn path=/head/; revision=417516
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Cleanup plistBaptiste Daroussin2014-10-271-2/+0
| | | | Notes: svn path=/head/; revision=371560
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* Support stageBaptiste Daroussin2014-01-282-10/+9
| | | | | | | | Use aspell-ispell instead of textproc/ispell USE_GMAKE -> USES=gmake Notes: svn path=/head/; revision=341543
* Fix pkgname collisionBaptiste Daroussin2013-10-071-1/+1
| | | | Notes: svn path=/head/; revision=329696
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | editors) Notes: svn path=/head/; revision=327720
* - Make ports use the libc provided iconv implementation on 10-CURRENTGuido Falsi2013-09-041-1/+1
| | | | | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code) Notes: svn path=/head/; revision=326307
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with E,F Notes: svn path=/head/; revision=240069
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-1/+1
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154134
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-1/+1
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154110
* - Fix LATEST_LINK in chinese/joe portPav Lucistnik2005-10-231-1/+1
| | | | | | | Reported by: kris Notes: svn path=/head/; revision=146178
* - Restore prefix on chinese/joe, fix INDEX breakagePav Lucistnik2005-10-211-1/+1
| | | | | | | Pointy hat to: pav Notes: svn path=/head/; revision=146005
* - Update to 2.9.8Pav Lucistnik2005-10-2118-424/+71
| | | | | | | | | PR: ports/80690 Submitted by: chinsan <chinsan@mail2000.com.tw> Approved by: Kevin Day <toasty@dragondata.com> (maintainer) Notes: svn path=/head/; revision=146001
* - After repocopy, connect editors/joe2 to the buildPav Lucistnik2005-10-211-0/+3
| | | | | | | | | | | - Set LATEST_LINK, CONFLICTS - Set chinese/joe to use editors/joe2 Suggested by: Kevin Day <toasty@dragondata.com> (maintainer) Repocopy by: marcus Notes: svn path=/head/; revision=145991
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* - Fix build on -currentKirill Ponomarev2003-10-141-0/+11
| | | | Notes: svn path=/head/; revision=91245
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76033
* [MAINTAINER-PATCH] Add new MASTER_SITES for editors/joeEdwin Groothuis2003-01-041-1/+2
| | | | | | | | PR: ports/46750 Submitted by: Kevin Day <toasty@dragondata.com> Notes: svn path=/head/; revision=72499
* drop sgid/suid on backup filesYing-Chieh Liao2002-09-182-1/+12
| | | | | | | | PR: 42920 Submitted by: maintainer Notes: svn path=/head/; revision=66585
* Fix build on -CURRENTPatrick Li2002-02-175-6/+74
| | | | | | | | PR: 34802 Submitted by: maintainer Notes: svn path=/head/; revision=54834
* Bump PORTREVISION from last buffer overflow patch commit.Patrick Li2002-02-021-1/+1
| | | | | | | Reminded by: Dan Peterson <danp@danp.net> Notes: svn path=/head/; revision=54128
* Fix buffer overflowPatrick Li2002-02-021-0/+12
| | | | | | | | PR: 34540 Submitted by: maintainer Notes: svn path=/head/; revision=54120
* Unbreak build: remove bogus declaration of time(3).Peter Pentchev2001-06-021-0/+11
| | | | | | | | | PR: 27710 Submitted by: Jung-an Fan <rafan@ck.tp.edu.tw> - the problem report maintainer - the patch Notes: svn path=/head/; revision=43427
* Don't overwrite CATEGORIES in master ports. Use += instead, so slavesMaxim Sobolev2001-05-221-1/+1
| | | | | | | | would be able to insert their own entries (usually language category) upfront. Notes: svn path=/head/; revision=42933
* Don't override MAINTAINER if we're being included.Bill Fenner2001-03-111-1/+1
| | | | Notes: svn path=/head/; revision=39537
* Remove ./.joerc from the default startup file search patchChris D. Faulhaber2001-03-012-6/+33
| | | | | | | | | | Bump PORTREVISION Submitted by: brad@comstyle.com Obtained from: OpenBSD Notes: svn path=/head/; revision=38909
* - when DEADJOE is a hard link, leave it aloneTrevor Johnson2000-12-032-6/+4
| | | | | | | | | | - un-forbid - bump PORTREVISION Submitted by: maintainer Notes: svn path=/head/; revision=35627
* My earlier testing was in error: joe will still write to a DEADJOETrevor Johnson2000-11-251-0/+2
| | | | | | | | | file which is hard-linked to a file writable by the user who is running joe. Mark this forbidden until the maintainer decides what to do. Notes: svn path=/head/; revision=35414
* - don't follow links (symbolic or hard) owned by another user whenTrevor Johnson2000-11-252-7/+40
| | | | | | | | | | | | | | | creating a DEADJOE file (http://www.securityfocus.com/archive/1/145305) - make DEADJOE files with 0600 permissions, rather than using the user's umask (PR 12827) - do the PORTREVISION thing I am not sure whether the maintainer considers these ready. However, they work for me. Submitted by: maintainer Notes: svn path=/head/; revision=35407
* Change MAINTAINER, and remove erroneous patch.Will Andrews2000-04-221-1/+1
| | | | | | | | PR: 18165 Submitted by: Kevin Day <toasty@dragondata.com> Notes: svn path=/head/; revision=27908
* portname/portversion updateMichael Haro2000-04-141-3/+3
| | | | Notes: svn path=/head/; revision=27501
* Finish moving MAINTAINER for my ports.Will Andrews2000-03-221-1/+1
| | | | | | | | | andrews@technologist.com -> will@FreeBSD.org. :-) Reminded by: asami Notes: svn path=/head/; revision=26946
* Don't coredump when reading in a new file using ^K-R.Steve Price1999-12-311-6/+14
| | | | | | | | | PR: 15741 Submitted by: Sergey N. Voronkov <serg@dor.zaural.ru> Reviewed by: maintainer Notes: svn path=/head/; revision=24319
* Use file locking similar to vi.Steve Price1999-12-253-77/+99
| | | | | | | | PR: 15330 Submitted by: Oliver Breuninger <ob@seicom.net> Notes: svn path=/head/; revision=24032
* FreeBSD.ORG -> FreeBSD.orgMichael Haro1999-08-311-1/+1
| | | | | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru Notes: svn path=/head/; revision=21157
* Close a security hole relating to a world-readable DEADJOE file.Kris Kennaway1999-08-301-0/+18
| | | | | | | | PR: 12827 Submitted by: Maintainer Notes: svn path=/head/; revision=21104
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
| | | | Notes: svn path=/head/; revision=20947
* Add a MAINTAINER to this port.Chris Piazza1999-06-271-1/+3
| | | | | | | | PR: 12405 Submitted by: andrews@technologist.com Notes: svn path=/head/; revision=19821
* As threatened, enforce the "Capital, no period" rule. Ellipses areTim Vanderhoek1999-06-261-1/+1
| | | | | | | | permitted. Note that, given current numeric motif of PW, this is done in four equally-sized commits of 393 files each. Notes: svn path=/head/; revision=19799
* Remove manpages, but _NOT_ from the multi-lingualTim Vanderhoek1998-08-171-1/+0
| | | | | | | | emacsen (*mule-common, mule). That is left for someone more familiar with their twisty incestuous relationships. Notes: svn path=/head/; revision=12575
* Use bold (if available) when underlining is not available.Bill Fenner1998-01-221-0/+16
| | | | | | | | PR: ports/4521 Submitted by: Dan Nelson <dnelson@emsphone.com> Notes: svn path=/head/; revision=9406