diff options
Diffstat (limited to 'net-fs/netatalk/netatalk-2.0.3-r1.ebuild')
-rw-r--r-- | net-fs/netatalk/netatalk-2.0.3-r1.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/net-fs/netatalk/netatalk-2.0.3-r1.ebuild b/net-fs/netatalk/netatalk-2.0.3-r1.ebuild new file mode 100644 index 000000000000..0238edefc2cc --- /dev/null +++ b/net-fs/netatalk/netatalk-2.0.3-r1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/netatalk/netatalk-2.0.3-r1.ebuild,v 1.1 2005/10/25 05:55:56 flameeyes Exp $ + +inherit eutils pam flag-o-matic autotools +IUSE="ssl pam tcpd slp cups kerberos krb4 debug cracklib" + +DESCRIPTION="Kernel level implementation of the AppleTalk Protocol Suite" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +HOMEPAGE="http://netatalk.sourceforge.net" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sh ~sparc ~x86" + +RDEPEND=">=sys-libs/db-4.2.52 + cracklib? ( sys-libs/cracklib ) + pam? ( virtual/pam ) + ssl? ( dev-libs/openssl ) + tcpd? ( sys-apps/tcp-wrappers ) + slp? ( net-libs/openslp ) + cups? ( net-print/cups ) + kerberos? ( virtual/krb5 ) + krb4? ( virtual/krb5 )" + +DEPEND="${RDEPEND} + sys-devel/autoconf + sys-devel/automake" + +src_unpack() { + unpack ${A} + cd ${S} + + # until someone that understands their config script build + # system gets a patch pushed upstream to make + # --enable-srvloc passed to configure also add slpd to the + # use line on the initscript, we'll need to do it this way + if use slp; then + myconf="${myconf} --enable-srvloc" + sed -i -e 's/^\([[:space:]]*use[[:space:][:alnum:]]*\)$/\1 slpd/' \ + ${S}/distrib/initscripts/rc.atalk.gentoo.tmpl + fi + + epatch ${FILESDIR}/${P}-setXid.patch + AT_M4DIR="macros" eautoreconf +} + +src_compile() { + # Ignore --enable-gentoo, we install the init.d by hand and we avoid having to + # sed the Makefiles to not do rc-update. + econf \ + $(use_with pam) \ + $(use_enable cups) \ + $(use_enable ssl) \ + $(use_enable debug) \ + $(use_enable tcpd tcp-wrappers) \ + $(use_enable kerberos krbV-uam) \ + $(use_enable krb4 krb4-uam) \ + $(use_enable slp srvloc) \ + $(use_with cracklib) \ + $(use_with elibc_glibc shadow) \ + --disable-afs \ + --enable-fhs \ + --with-bdb=/usr \ + ${myconf} || die "netatalk configure failed" + + sed -i -e "s:@BINDNOW_FLAGS@:$(bindnow_flags):" bin/afppasswd/Makefile + + emake || die "netatalk emake failed" + + # Create the init script manually (it's more messy to --enable-gentoo) + cd ${S}/distrib/initscripts + emake rc.atalk.gentoo +} + +src_install() { + make DESTDIR=${D} install || die "netatalk make install failed" + + dodoc CONTRIBUTORS NEWS README TODO VERSION + + newinitd ${S}/distrib/initscripts/rc.atalk.gentoo atalk + + # The pamd file isn't what we need, use pamd_mimic_system + rm -rf ${D}/etc/pam.d + pamd_mimic_system netatalk auth account password session +} |