summaryrefslogtreecommitdiff
path: root/net/netatalk
AgeCommit message (Collapse)AuthorFilesLines
2003-02-23Update netatalk to 1.6.1, using patches submitted by Toru TAKAMIZU infredb5-25/+68
PR pkg/20471: Changes in 1.6.1 ================ * UPD: Improve --enable-fhs. [Olaf Hering] * UPD: Add BDB 4.1.x support. * UPD: Add more documentation on CNID, as well as list which versions of Berkeley DB are supported. * FIX: Codepage file maccode.koi8-r is now correctly cleaned. * FIX: Fix init script location on SuSE. [Olaf] * FIX: Build fixes. [Olaf, Steven N. Hirsch] * FIX: Various bugs when a user doesn't have access permission to a folder. (Fixes an OSX kernel panic.) * FIX: CNID, folders' DID handling with concurrent access or symlinks. (Fixes an endless loop in afpd.)
2003-02-18Re-arrange "configure", so as to re-order the linker flags, rather thanfredb2-8/+114
add extra ones, all so "libtool" doesn't drop the first "-lcrypt".
2003-02-18Fix auth for non-DES unix passwords by linking in -lcrypt *before -lcrypto,fredb2-1/+18
to get the right crypt()! Should close PR pkg/19033.
2003-02-15Update netatalk to 1.6.0. Significant changes since 1.5.5, from "NEWS":fredb6-45/+64
Changes in 1.6.0 ================ * FIX: pap looks at the STDOUT file descriptor to see if it's connected to a tty, instead of STDIN. Changes in 1.6pre2 ================== * UPD: Removed --with-catsearch option from configure and enable FPCatSearch by default. * UPD: The dbpath argument does now support variable substitution. * FIX: Build fix for non-GNU-C compilers in libatalk/util/logger.c. * FIX: Two directories with the same name but different case confused the Mac Finder. * FIX: The ROOT_PARENT directory could get invalidated. Changes in 1.6pre1 ==================== * NEW: Long file name mangling support. * NEW: Improved log file support. * NEW: Server-side find capability ("FPCatSearch") * NEW: Concurrent datastore (CDB) is now the default CNID datastore. This should be heavily tested in a multiuser environment. * NEW: Variable substitution support has been added for the dbpath AppleVolume option. * UPD: CNID DID handling is now enabled by default. * FIX: Various bug and build fixes as well as code cleanups. ******************************************************************************* Changes to the package: - Now use buildlink2. - Drop --with-flock for now, as it's currently broken. - Add (heretofore) missing dependendency on "devel/rx". - Add --with-did=last, to avoid having to create a dependendency on db3. --with-did=last was the default with netatalk 1.5.5.
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2002-09-30Update netatalk to 1.5.5abs8-132/+94
Neither the Changelog nor CHANGES files list the changes from 1.5.3.1
2002-09-30Remove setting PKGNAME and STAGE from position parameters ($1 and $2).taca1-4/+1
This break netatalk package under current bsd.pkg.install.mk.
2002-09-02adjust lastabs2-5/+5
2002-09-02Updated netatalk to 1.5.3.1nb2:abs8-120/+150
Use getrlimit() and setrlimit() to attempt to set the open filedescriptor to a sane value. Avoids afpd running out of fork slots when serving MacOS 10.2 clients. Patch sent back to maintainers.
2002-08-29update to 1.5.3.1nb1 - install scripts in /etc/rc.dabs2-11/+9
2002-05-25USE_LIBTOOL, and create a directory that's wanted by the PLIST.wiz1-6/+7
2002-05-25Clean up a bit (please use pkglint!).wiz3-25/+25
2002-05-25Update netatalk to version 1.5.3.1.markd42-899/+324
Update supplied by David Rankin (to version 1.5.2) in pkg/15642 further updated to 1.5.3.1 by me. Changes since the old umich version (and netatalk-asun) are numerous bug fixes, cleanups and new features and its actively being maintained.
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+3
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum4-3/+3
2001-04-21Move to sha1 checksum, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-39/+37
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-15Fix syntax, as reported by Jim Bernard <jbernard@mines.edu> in PR 11955.hubertf1-2/+2
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-10-19wrstuden mentioned that the nbX version should be bumped for my patchbriggs1-2/+2
to atalkd. Those patches have now been tested and are working on /alpha-1.4.2, /alpha-current, and /x86-current.
2000-10-18Add an extra padding u_short to the sockaddr_m structure to meet thebriggs2-1/+15
stricter requirements now present in sys/net/rtsock.c in a -current kernel. This change is sufficient for i386, but may still not be correct for LP64 systems or systems with different alignment constraints. Thanks to wrstuden for identifying the kernel change that affected this.
2000-09-29Install the shared lib on 1.5ish systems, too.fredb2-1/+8
2000-08-23Don't install a superfluous example file; remove share/examples/netatalkwiz2-2/+4
on deinstall.
2000-08-23Remove etc/rc.atalk, since it's installed in /etc/netatalk/rc.atalkwiz1-50/+49
instead (which users have to delete manually; DEINSTALL already says so). Sort PLIST.
2000-08-07Change the name of this package. First, add -umich to name now thatwrstuden1-2/+2
we have an -asun version too. Also add nb1 to the end. jlam's change in where we store config files needs to be reflected. Actually we should have had a suffix for a while. New name is netatalk-umich-19990130nb1
2000-08-06Remove unnecessary post-installation of missing file.jlam1-2/+1
2000-07-31Add CONFLICTS for netatalk-asunabs2-5/+6
2000-07-28Creator and Type codes for PDF are reversed in AppleVolumes.system asjwise2-3/+16
shipped. This annoyed me for a very long time :-)
2000-07-26Change configuration file directory from ${PREFIX}/etc to /etc/netatalk.jlam5-5/+106
Configuration files really are host-dependent, so putting them in ${PREFIX} which is often shared across machines of the same architecture, doesn't make sense. Add machinery to install default configuration files. Closes pkg/9948.
2000-06-29And check in new checksum for patch-bd.wrstuden1-2/+2
2000-06-29Make work with recent changes to lint which pays attention to thewrstuden1-6/+8
value of $CC.
2000-01-18regenchristos1-1/+2
2000-01-18How did papd ever work?christos1-0/+61
- make printcap parsing understand comments. - pass missing argument to function. XXX: mental note: ppd files are \r not \n separated. We need to fix the parsing so we don't have to convert them to unix files before they work.
1999-09-17Regen.bouyer1-1/+2
1999-09-17Patch from Juergen Hannken-Illjes, which should solve PR#8308 (net 0 isbouyer1-0/+18
reserved for lo0, it can't be used on other interfaces).
1999-08-31Fix two PRs on this package, and make it compile on macppc.wrstuden32-499/+573
Sample files are installed in pkg/share/examples/netatalk, addressing PR 7920 by rnestor@metronet.com. Now include elf support, addressing PR 8125 by Takahiro Kambe, <taca@sky.yamashina.kyoto.jp> with slight changes by me. Cleaned up some lint warnings and fixed an unsigned character comparison problem with assistance from cgd@netbsd.org. Disabled building of libatalk_p.a (profiling libatalk) as not all ports support it which will generate plist errors.
1999-07-09Add package patch checksum files.agc1-0/+30
1999-03-01Update to netatalk 990130. Only changes are to Makefile and to md5.wrstuden2-7/+9
From Frederick Bruckman <fb@enteract.com>.
1999-02-23How about we change the date in the diff header to be today.wrstuden1-2/+2
1999-02-23in session(), seq is incrimented before being used. Thus for the firstwrstuden1-1/+10
sequence number sent to be 1, we need to initialize to 0. Pointed out by Juergen Hannken-Illjes <hannken@eis.cs.tu-bs.de>.
1999-02-23Shorten some comments to fit neatly in pkg_info display, without losing anyabs1-1/+1
information.
1999-02-23Add patches to include signal.h rather than sys/signal.h. Fixes sudden-wrstuden5-0/+65
deaths observed with afpd. From Jim Wise, jwise@netbsd.org.
1999-01-08Add missing trailing / to homepage URL.frueauf1-4/+3
1999-01-07Add a HOMEPAGE for netatalk.agc1-2/+2
1999-01-01Minor LP64 fixes to get this building on alphagarbled2-0/+22
1998-12-26Initial import of the University of Michigan version of Netatalk. agc26-0/+569
(userland tools and utilities for AppleTalk interworking). This is the standard, reference version. Lacks AppleshareIP support. Package done by Bill Studenmund (wrstuden@netbsd.org), munged about a bit by myself. This is the 19981109 version of the sources.