diff options
Diffstat (limited to 'net-fs/netatalk/netatalk-1.5.3.1-r1.ebuild')
-rw-r--r-- | net-fs/netatalk/netatalk-1.5.3.1-r1.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/net-fs/netatalk/netatalk-1.5.3.1-r1.ebuild b/net-fs/netatalk/netatalk-1.5.3.1-r1.ebuild deleted file mode 100644 index 0036948e0cb4..000000000000 --- a/net-fs/netatalk/netatalk-1.5.3.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# 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-1.5.3.1-r1.ebuild,v 1.5 2005/06/30 23:56:56 flameeyes Exp $ - -IUSE="ssl pam tcpd" - -DESCRIPTION="kernel level implementation of the AppleTalk Protocol Suite" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://netatalk.sourceforge.net" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="x86 ppc" - -DEPEND="sys-apps/shadow - pam? ( sys-libs/pam ) - ssl? ( dev-libs/openssl ) - tcpd? ( sys-apps/tcp-wrappers )" - -src_compile() { - use pam && myconf="${myconf} --with-pam" - use tcpd && myconf="${myconf} --with-tcp-wrappers" - use ssl || myconf="${myconf} --disable-ssl" - - econf \ - --enable-fhs \ - --with-shadow \ - --with-db3 \ - ${myconf} || die "netatalk configure failed" - - emake || die "netatalk emake failed" -} - -src_install() { - make DESTDIR=${D} install || die "netatalk make install failed" - - # install docs - dodoc CHANGES CONTRIBUTORS COPYING COPYRIGHT ChangeLog - dodoc NEWS README TODO VERSION - dodoc doc/* - - # install init script - exeinto /etc/init.d - newexe ${FILESDIR}/atalk-rc6 atalk -} |