pkgsrc change - Take matainer ship by me. - Introduce options.mk for PAM configure option. - Minor clean up of Makefile. - Added quick changes to avoid using <openssl/des.h>. netatalk changes Changes in 1.6.4a ================= * FIX: insecure tempfile handling bug in etc2ps.sh, found by Trustix, CAN-2004-0974. Changes in 1.6.4 ================ * NEW: afpd: Using the mswindows option now implicitly specifies usedots. [Sam Noble] * UPD: afpd.8: Updated the option documentation. [Thomas Kaiser, Sebastian Rittau] * FIX: configure: Removed broken --with-flock-locks option. [Bj\M-C\M-6rn Fernhomberg] * FIX: libatalk: Do not log network probe (OSX 10.3). [Didier Gautheron] * FIX: libatalk: Deadlock in signal handlers. [Didier] * FIX: libatalk: Compilation with Linux kernel 2.6 fixed. [Sebastian, Bj\M-C\M-6rn] * FIX: afpd: Solaris compile issues. [Bj\M-C\M-6rn] * FIX: afpd: If connection broke in dsi_tickle the child did never die. [Bj\M-C\M-6rn] * FIX: afpd: Catsearch, fixes a possible segmentation fault. [Bj\M-C\M-6rn] * FIX: afpd: Compilation issues. [Olaf Hering, Sebastian] * FIX: cnid: Fix compile problems on Tru64. [Burkhard Schmidt] * FIX: megatron: Fixed an uninitialized variable. [Olaf] * FIX: installation: Don't overwrite PAM file if --enable-overwrite configure option is not set. [Sam, Ryan Cleary] * FIX: installation: Fixed BSD installation. [Toru TAKAMIZU] * FIX: docs: Removed ssl-dir/ssl-dirs confusion from doc/INSTALL. [Bj\M-C\M-6rn] Changes in 1.6.3 ================ * UPD: afpd: Infrastructural support for an upcoming Kerberos 5 UAM. [Sam Noble] * UPD: uams_dhx_passwd: Better random seed in Tru64. [Burkhard Schmidt] * FIX: afpd: Bug in AFP connection negotiation stage. [Sam] * FIX: afpd: Catsearch, when Mac and unix name differ, search on attributes. * FIX: afpd: Files could be opened for writing on read-only filesystems. * FIX: afpd: Debugging using SIGUSR1 was broken. [Stefan Muenkner] * FIX: afpd: Segfault after login. [Robby Griffin, Sean Bolton] * FIX: psf: Correct path to etc2ps.sh. * FIX: shell_utils: Don't distribute generated files. * FIX: aecho: -A option didn't work. [Chris Shiels] * FIX: configure: Berkeley DB path detection could be wrong. [Stefan] * FIX: Automake build fixes.
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2005/06/05 23:40:56 taca Exp $
|
|
|
|
DISTNAME= netatalk-1.6.4a
|
|
CATEGORIES= net print
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netatalk/} \
|
|
http://me.in-berlin.de/~jroger/netatalk/
|
|
|
|
MAINTAINER= taca@NetBSD.org
|
|
HOMEPAGE= http://sourceforge.net/projects/netatalk/
|
|
COMMENT= Netatalk appletalk file and print services
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= gmake perl
|
|
USE_LIBTOOL= YES
|
|
|
|
USE_PKGINSTALL= YES
|
|
INSTALL_EXTRA_TMPL+= ${.CURDIR}/INSTALL
|
|
|
|
CONFLICTS= netatalk-asun-[0-9]* netatalk-umich-[0-9]*
|
|
|
|
RCD_SCRIPTS= atalkd afpd papd timelord
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --enable-netbsd \
|
|
--enable-timelord \
|
|
--with-did=last \
|
|
--with-tcp-wrappers \
|
|
--sbindir=${PREFIX}/libexec/netatalk \
|
|
--sysconfdir=${PKG_SYSCONFDIR} \
|
|
--localstatedir=${VARBASE}/netatalk \
|
|
--with-nls-dir=${PREFIX}/share/netatalk/nls \
|
|
--with-uams-path=${PREFIX}/libexec/netatalk/uams
|
|
|
|
#CONFIGURE_ARGS+= --with-flock-locks # broken
|
|
#CONFIGURE_ARGS+= --with-bdb=${PREFIX} # still some known issues
|
|
|
|
.include "options.mk"
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/etc/psf/etc2ps.sh ${WRKSRC}/etc/psf/etc2ps.sh.tmp
|
|
${SED} -e "s,^\(DVIPS=\)\(/usr/local/tex\)\(/bin\),\1${PREFIX}\3," \
|
|
< ${WRKSRC}/etc/psf/etc2ps.sh.tmp > ${WRKSRC}/etc/psf/etc2ps.sh
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/libexec/psffilters
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/netatalk
|
|
.for FILE in atalkd.conf netatalk.conf papd.conf AppleVolumes.default \
|
|
AppleVolumes.system afpd.conf
|
|
@-( cd ${WRKSRC}/config; ${MAKE_PROGRAM} ${FILE} )
|
|
${INSTALL_DATA} ${WRKSRC}/config/${FILE} \
|
|
${PREFIX}/share/examples/netatalk/
|
|
.endfor
|
|
|
|
#.include "../../databases/db3/buildlink3.mk"
|
|
.include "../../devel/rx/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|