diff options
author | fredb <fredb@pkgsrc.org> | 2003-02-15 20:01:06 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2003-02-15 20:01:06 +0000 |
commit | cb8a942c4177f984474f8afc2ca64d0b2ffa9fee (patch) | |
tree | 055723577eba057d560072ec8825cfec94fc6c85 /net/netatalk/Makefile | |
parent | 90b4c8853936edb1d6d056c1fe769cf0e0c34456 (diff) | |
download | pkgsrc-cb8a942c4177f984474f8afc2ca64d0b2ffa9fee.tar.gz |
Update netatalk to 1.6.0. Significant changes since 1.5.5, from "NEWS":
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.
Diffstat (limited to 'net/netatalk/Makefile')
-rw-r--r-- | net/netatalk/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/net/netatalk/Makefile b/net/netatalk/Makefile index 5d5eb8f028e..b31c9252fbb 100644 --- a/net/netatalk/Makefile +++ b/net/netatalk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.20 2003/01/28 22:03:53 jlam Exp $ +# $NetBSD: Makefile,v 1.21 2003/02/15 20:01:06 fredb Exp $ -DISTNAME= netatalk-1.5.5 +DISTNAME= netatalk-1.6.0 CATEGORIES= net print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netatalk/} \ http://me.in-berlin.de/~jroger/netatalk/ @@ -10,6 +10,7 @@ HOMEPAGE= http://sourceforge.net/projects/netatalk/ COMMENT= Netatalk appletalk file and print services GNU_CONFIGURE= YES +USE_BUILDLINK2= YES USE_PKGINSTALL= YES USE_GMAKE= YES USE_PERL5= YES @@ -22,13 +23,15 @@ RCD_SCRIPTS= atalkd afpd papd timelord .include "../../mk/bsd.prefs.mk" -CONFIGURE_ARGS+= --with-tcp-wrappers --with-flock-locks \ +CONFIGURE_ARGS+= --enable-netbsd \ --enable-timelord \ - --localstatedir=/var/netatalk \ + --with-did=last \ + --with-tcp-wrappers \ --sbindir=${PREFIX}/libexec/netatalk \ - --with-uams-path=${PREFIX}/libexec/netatalk/uams \ --sysconfdir=${PKG_SYSCONFDIR} \ - --enable-netbsd + --localstatedir=/var/netatalk \ + --with-nls-dir=${PREFIX}/share/netatalk/nls \ + --with-uams-path=${PREFIX}/libexec/netatalk/uams pre-install: ${INSTALL_DATA_DIR} ${PREFIX}/libexec/psffilters @@ -40,4 +43,5 @@ pre-install: ${PREFIX}/share/examples/netatalk/ .endfor +.include "../../devel/rx/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |