diff options
Diffstat (limited to 'app-pda/p3nfs/p3nfs-5.19.ebuild')
-rw-r--r-- | app-pda/p3nfs/p3nfs-5.19.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-pda/p3nfs/p3nfs-5.19.ebuild b/app-pda/p3nfs/p3nfs-5.19.ebuild new file mode 100644 index 000000000000..11bc96b89776 --- /dev/null +++ b/app-pda/p3nfs/p3nfs-5.19.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/p3nfs/p3nfs-5.19.ebuild,v 1.1 2006/02/27 23:02:48 mrness Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="Symbian to Unix and Linux communication program" +HOMEPAGE="http://www.koeniglich.de/p3nfs.html" +SRC_URI="http://www.koeniglich.de/packages/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" +DEPEND="net-nds/portmap" + +src_unpack() { + unpack ${A} + + sed -i "s:.*cd client/epoc32.*:#&:" "${S}/Makefile.in" +} + +src_compile() { + append-ldflags $(bindnow-flags) + sed -i "s:\$(LDFLAGS):${LDFLAGS}:" "${S}/server/Makefile.in" + + econf || die "econf failed" + emake CFLAGS="${CFLAGS} -Wall -I." || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc README +} + +pkg_postinst() { + einfo + einfo "You need to install one of the nfsapp-*.sis clients on your" + einfo "Symbian device to be able to mount it's filesystems." + einfo + einfo "Make sure to have portmap running before you start the" + einfo "p3nfsd server." + einfo +} |