summaryrefslogtreecommitdiff
path: root/net/dictd (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Avoid trying to build lstat.o since we have lstat in libc.Dima Dorfman2003-10-171-0/+11
| | | | Notes: svn path=/head/; revision=91520
* Put C*FLAGS into CONFIGURE_ENV instead of assigning it directly. ThisDima Dorfman2003-10-171-2/+2
| | | | | | | | | | | allows configure-run test programs to find the right include files and libraries. Breakage reported by: many Fix submitted by: adamw Notes: svn path=/head/; revision=91498
* Upgrade to 1.9.7.Dima Dorfman2003-10-166-104/+45
| | | | | | | | PR: 57809 Submitted by: Cheng-Lung Sung <clsung@dragon2.net> Notes: svn path=/head/; revision=91416
* libtool uber-patchAde Lovett2003-06-261-0/+3
| | | | | | | | | | | | | | * kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5 * upgrade repo-copied devel/libtool14 to 1.4.3 * break out libltdl into its own separate port * move to version-numbered binaries/scripts (ie: there is *no* 'libtool' any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends) Approved by: portmgr (kris) - for the bsd.port.mk hooks Tested by: bento 4-exp builds (repeatedly) Notes: svn path=/head/; revision=83696
* 1. include <osreldate.h> before use macro __FreeBSD_versionYen-Ming Lee2003-05-071-10/+14
| | | | | | | | | | | 2. unbreak chinese/dictd which is the slave port of net/dictd PR: 48586 Submitted by: Kuang-che Wu <kcwu@kcwu.dyndns.org> Approved by: maintainer timeout Notes: svn path=/head/; revision=80320
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* Fix build on sparc64 (all the world's not sunos, solaris or linnex)Kris Kennaway2003-01-125-0/+55
| | | | Notes: svn path=/head/; revision=72952
* Break UTF8 support on pre-5.x systems which don't implement wctype.h.Dima Dorfman2002-12-221-0/+98
| | | | | | | | Submitted by: dd, roam Approved by: steve Notes: svn path=/head/; revision=71777
* Upgrade to 1.8.0. patch-servparse.y has been submitted to theDima Dorfman2002-11-236-27/+16
| | | | | | | maintainers. Notes: svn path=/head/; revision=70828
* Escape parenthese in regular expressions to appease a sed that doesn'tDima Dorfman2002-11-031-1/+1
| | | | | | | understand extended regexps. Notes: svn path=/head/; revision=69325
* Convert to use REINPLACE_CMD instead of PERL and remove USE_PERL5.Dima Dorfman2002-11-031-5/+5
| | | | Notes: svn path=/head/; revision=69324
* Conditionalize MAINTAINER for the benefit of slave ports.Dima Dorfman2002-11-031-1/+1
| | | | Notes: svn path=/head/; revision=69323
* for slave portsYing-Chieh Liao2002-07-191-1/+1
| | | | Notes: svn path=/head/; revision=63227
* Bump PORTREVISION. Now dictd is not a dmesg(8) output spammer.Clive Lin2002-06-221-1/+1
| | | | Notes: svn path=/head/; revision=61727
* Do not fclose(3) a NULL stream. I bet no one will want his dmesg(8) outputClive Lin2002-06-221-0/+11
| | | | | | | | | | | | to be spammed by ... pid 12345 (dictd), uid 54321: exited on signal 11 pid 23456 (dictd), uid 54321: exited on signal 11 pid 34567 (dictd), uid 54321: exited on signal 11 ... Notes: svn path=/head/; revision=61726
* I'll look after this.Dima Dorfman2002-06-091-1/+1
| | | | Notes: svn path=/head/; revision=61008
* upgrade to 1.7.1Ying-Chieh Liao2002-06-095-39/+26
| | | | | | | drop maintainership Notes: svn path=/head/; revision=60992
* The regexp used to change T_USER to T_USERNAME only works if theDima Dorfman2002-04-121-1/+1
| | | | | | | | | | | | | | | | | symbol is preceded by whitespace. However, on line 64 of servscan.l, the symbol is preceded by a parenthesis, so it is left alone. On i386, T_USER is defined, so the build proceeds, but there may still be adverse side effects due to that routine returning the wrong thing in some cases. The bandaid is to fix the regexp to catch the case where T_USER is used after a parenthesis--this is what's being committed. The real fix is either to make the author use T_USERNAME for us, or, preferably, don't define T_USER when sys/param.h is included since T_USER is in the application namespace. Approved by: maintainer timeout Notes: svn path=/head/; revision=57598
* typo, delvis -> devilsYing-Chieh Liao2001-10-151-1/+1
| | | | | | | Submitted by: Dima Dorfman <dima@trit.org> Notes: svn path=/head/; revision=48800
* use system zlibYing-Chieh Liao2001-08-223-12/+12
| | | | | | | Submitted by: obrien Notes: svn path=/head/; revision=46647
* ${PREFIX}/share/${PORTNAME} --> ${DATADIR}Maxim Sobolev2001-07-101-2/+2
| | | | Notes: svn path=/head/; revision=45011
* o Swap dependency. Now dictd-database needs dictzip to be built. One of itsClive Lin2001-05-072-3/+4
| | | | | | | | | | | | | | | | | dictionary file isn't shipped with .dz format. o Add a short message in dictd's pkg-message: "Don't forget to install ports/net/dictd-database. After that, you could run your own dictd server without pain." o Bump PORTREVISION of both ports. (It would heart your brain and waste you time to dig the reason why dictd refused to start properly in the previous revision.) Reviewed by: dictd -t review Notes: svn path=/head/; revision=42370
* o Follows dictionary files addition of dictd-database portClive Lin2001-01-302-5/+27
| | | | | | | | | o Now use our own dictd.conf Approved by: MAINTAINER Notes: svn path=/head/; revision=37811
* o Fix pkg-comment, this port only contains dict serverClive Lin2001-01-285-12/+19
| | | | | | | | | | | | | o Fix pkg-message, dict client is right at textproc/dict o Add missing pkg-plist entry o Really destroy T_USER conflicts. *SIGH* o Fix dictd.sh startup script. Dictd itself won't generate any pid file. Thus I use my own trick. pkg-* reported by: "Donald J . Maddox" <dmaddox@sc.rr.com> Notes: svn path=/head/; revision=37699
* Arrrg ! I forgot to commit these 2 files.Clive Lin2001-01-282-1/+9
| | | | Notes: svn path=/head/; revision=37688
* o Properly use wait3(2)Clive Lin2001-01-284-1/+35
| | | | | | | | | | | | | o Portlint o Resolve T_USER conflicts (trap.h in base system) o Properly handle CFLAGS o Add net/dictd-database as RUN_DEPENDS o Bump PORTREVISION Approved by: MAINTAINER Notes: svn path=/head/; revision=37687
* remove redundant substitutionYing-Chieh Liao2001-01-281-1/+0
| | | | | | | Submitted by: clive Notes: svn path=/head/; revision=37659
* add dictd, dict protocol (RFC 2229) serverYing-Chieh Liao2001-01-259-0/+219
Notes: svn path=/head/; revision=37574