diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2010-01-11 00:16:28 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2010-01-11 00:16:28 +0000 |
commit | 6ee321c95ae9a600b1db932d99d6885cc7adae46 (patch) | |
tree | 6a8b1f8af2f4c20862a91304127f6dab44b15c1d /net-fs/netatalk/netatalk-2.0.5-r1.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-6ee321c95ae9a600b1db932d99d6885cc7adae46.tar.gz gentoo-2-6ee321c95ae9a600b1db932d99d6885cc7adae46.tar.bz2 gentoo-2-6ee321c95ae9a600b1db932d99d6885cc7adae46.zip |
EAPI=2 version. fix the paths in the installed headers since we change the location they're installing to
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/netatalk/netatalk-2.0.5-r1.ebuild')
-rw-r--r-- | net-fs/netatalk/netatalk-2.0.5-r1.ebuild | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/net-fs/netatalk/netatalk-2.0.5-r1.ebuild b/net-fs/netatalk/netatalk-2.0.5-r1.ebuild new file mode 100644 index 000000000000..a9b4b1c2eefb --- /dev/null +++ b/net-fs/netatalk/netatalk-2.0.5-r1.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/netatalk/netatalk-2.0.5-r1.ebuild,v 1.1 2010/01/11 00:16:28 cardoe Exp $ + +EAPI=2 + +inherit eutils pam + +DESCRIPTION="Kernel level implementation of the AppleTalk Protocol Suite" +HOMEPAGE="http://netatalk.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ssl pam tcpd slp cups kerberos krb4 debug cracklib xfs" + +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 ) + >=sys-apps/coreutils-7.1 + !app-text/yudit" +DEPEND="${RDEPEND} + xfs? ( sys-fs/xfsprogs <sys-kernel/linux-headers-2.6.16 )" + +src_prepare() { + epatch "${FILESDIR}"/${P}-control-pam.patch + + # 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 + sed -i -e '/^[[:space:]]*use\>/s:$: slpd:' \ + distrib/initscripts/rc.atalk.gentoo.tmpl || die + fi +} + +src_configure() { + if ! use xfs ; then + eval $(printf '%s\n' {linux,xfs}/{dqblk_xfs,libxfs,xqm,xfs_fs}.h | \ + sed -e 's:[/.]:_:g' -e 's:^:export ac_cv_header_:' -e 's:$:=no:') + fi + + # 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 debug) \ + $(use_enable tcpd tcp-wrappers) \ + $(use_enable kerberos krbV-uam) \ + $(use_enable krb4 krb4-uam) \ + $(use_enable slp srvloc) \ + $(use_with ssl ssl-dir) \ + $(use_with cracklib) \ + $(use_with slp srvloc) \ + $(use_with elibc_glibc shadow) \ + --disable-afs \ + --enable-fhs \ + --with-bdb=/usr +} + +src_compile() { + emake || die + + # Create the init script manually (it's more messy to --enable-gentoo) + emake -C distrib/initscripts rc.atalk.gentoo || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc CONTRIBUTORS NEWS README TODO VERSION + + newinitd distrib/initscripts/rc.atalk.gentoo atalk || die + + # 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 + + # Move /usr/include/netatalk to /usr/include/netatalk2 to avoid collisions + # with /usr/include/netatalk/at.h provided by glibc (strange, uh?) + # Packages that wants to link to netatalk should then probably change the + # includepath then, but right now, nothing uses netatalk. + # On a side note, it also solves collisions with freebsd-lib and other libcs + mv "${D}"/usr/include/netatalk{,2} || die + sed -e 's/include <netatalk/include <netatalk2/g' \ + -i "${D}"usr/include/{netatalk2,atalk}/* || die +} |