app-pda/p3nfs: Remove last-rited package

Closes: https://bugs.gentoo.org/631044
This commit is contained in:
Andreas K. Hüttel
2018-03-30 20:07:02 +02:00
parent c5153020fd
commit ea6e2f40a1
5 changed files with 0 additions and 116 deletions

View File

@@ -1 +0,0 @@
DIST p3nfs-5.19.tar.gz 258444 BLAKE2B 4ad69d7cb8d39ce8e3aaef3f38eca955bbabc1d8cc1d4061b2275c324bd0860483280a44ab384434626195385e4ec07044a87cc3eeac640118760ed3bded3ed1 SHA512 b4fd4f8d4b096f9ab3c1eb649b95db88a109d0715dcf98c39e5e852e91bd6d149038a7ec3025e75aafa0c303f411daba58b3d6035349c26b69870b4c158e67ba

View File

@@ -1,14 +0,0 @@
--- configure.in.orig 2014-04-09 14:05:32.579648000 +0400
+++ configure.in 2014-04-09 14:10:05.162648000 +0400
@@ -81,7 +81,10 @@
break
fi
done
-test -z "$DDEV" && AC_MSG_ERROR(serial device not found... Try harder.)
+if test -z "$DDEV"; then
+ DDEV="/dev/ttyS0"
+ AC_MSG_RESULT(serial device not found... Setting default one to $DDEV)
+fi
AC_SUBST(DDEV)
dnl Looking for Symbian SDKs:

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
</pkgmetadata>

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
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="~amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="|| ( net-nds/portmap net-nds/rpcbind )"
src_prepare() {
sed -i "s:.*cd client/epoc32.*:#&:" "${S}/Makefile.in" || die
# bug #314971
epatch "${FILESDIR}/${P}-set-default-tty.patch"
}
src_configure() {
append-flags -fno-strict-aliasing # fix QA issues
sed -i "s:\$(LDFLAGS):${LDFLAGS}:" "${S}/server/Makefile.in" || die
econf || die "econf failed"
}
src_compile() {
emake CFLAGS="${CFLAGS} -Wall -I." || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" DOCDIR="${D}/usr/share/doc/${PF}" install || die "emake install failed"
dodoc README
}
pkg_postinst() {
elog
elog "You need to install one of the nfsapp-*.sis clients on your"
elog "Symbian device to be able to mount it's filesystems."
elog
elog "Make sure to have portmap or rpcbind service running"
elog "before you start the p3nfsd server."
elog
}

View File

@@ -1,45 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
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="~amd64 ~x86"
DEPEND=""
RDEPEND="|| ( net-nds/portmap net-nds/rpcbind )"
src_prepare() {
sed -i "s:.*cd client/epoc32.*:#&:" "${S}/Makefile.in" || die
sed -i "s:\$(LDFLAGS):${LDFLAGS}:" "${S}/server/Makefile.in" || die
append-flags -fno-strict-aliasing # fix QA issues
# bug #314971
epatch "${FILESDIR}/${P}-set-default-tty.patch"
epatch_user
}
src_compile() {
emake CFLAGS="${CFLAGS} -Wall -I." || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" DOCDIR="${D}/usr/share/doc/${PF}" install
dodoc README
}
pkg_postinst() {
elog
elog "You need to install one of the nfsapp-*.sis clients on your"
elog "Symbian device to be able to mount it's filesystems."
elog
elog "Make sure to have portmap or rpcbind service running"
elog "before you start the p3nfsd server."
elog
}