summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-06-11 08:28:19 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-06-11 08:28:19 +0000
commit6f1be1b2186d5e255ab8e2b1774a883f078809f3 (patch)
treeb3590523013fb85b74ecf4bf1c917fd41c37350b /net-fs/ncpfs
parentppc stable (bug 418623) (diff)
downloadgentoo-2-6f1be1b2186d5e255ab8e2b1774a883f078809f3.tar.gz
gentoo-2-6f1be1b2186d5e255ab8e2b1774a883f078809f3.tar.bz2
gentoo-2-6f1be1b2186d5e255ab8e2b1774a883f078809f3.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/ncpfs')
-rw-r--r--net-fs/ncpfs/ChangeLog5
-rw-r--r--net-fs/ncpfs/ncpfs-2.2.6-r1.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/net-fs/ncpfs/ChangeLog b/net-fs/ncpfs/ChangeLog
index cb7ee83766fa..95440da77dd4 100644
--- a/net-fs/ncpfs/ChangeLog
+++ b/net-fs/ncpfs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-fs/ncpfs
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ChangeLog,v 1.29 2012/06/07 21:43:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ChangeLog,v 1.30 2012/06/11 08:28:19 ago Exp $
+
+ 11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> -ncpfs-2.2.6-r1.ebuild:
+ Remove old
07 Jun 2012; Brent Baude <ranger@gentoo.org> ncpfs-2.2.6-r2.ebuild:
Marking ncpfs-2.2.6-r2 ppc for bug 418227
diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r1.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r1.ebuild
deleted file mode 100644
index 7a451a159976..000000000000
--- a/net-fs/ncpfs/ncpfs-2.2.6-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ncpfs-2.2.6-r1.ebuild,v 1.3 2011/02/10 09:26:38 kumba Exp $
-
-EAPI="2"
-
-inherit eutils pam
-
-DESCRIPTION="Provides Access to Netware services using the NCP protocol"
-HOMEPAGE="ftp://platan.vc.cvut.cz/pub/linux/ncpfs/"
-SRC_URI="ftp://platan.vc.cvut.cz/pub/linux/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="nls pam php"
-
-DEPEND="nls? ( sys-devel/gettext )
- pam? ( virtual/pam )
- php? ( || ( dev-lang/php virtual/httpd-php ) )"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # add patch for PHP extension sandbox violation
- epatch "${FILESDIR}"/${PN}-2.2.5-php.patch
- epatch "${FILESDIR}"/${P}-gcc4.patch
- epatch "${FILESDIR}"/${P}-missing-includes.patch
- sed -i '/ldconfig/d' lib/Makefile.in #273484
- # hack inject LDFLAGS into the build
- sed -i '/^LIBS/s:=:= @LDFLAGS@:' `find -name Makefile.in` || die
-}
-
-src_configure() {
- econf \
- $(use_enable nls) \
- $(use_enable pam pam "$(getpam_mod_dir)") \
- $(use_enable php)
-}
-
-src_install() {
- dodir $(getpam_mod_dir) /usr/sbin /sbin
- emake DESTDIR="${D}" install || die
- dodoc FAQ README
-}