diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-07 22:44:09 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-07 22:44:09 +0000 |
commit | b243ee80d3f6acf3e1045ba8947665089e3ec8f6 (patch) | |
tree | c8550820f97c45981011c032af55f14016e8faf4 | |
parent | Remove old. (diff) | |
download | gentoo-2-b243ee80d3f6acf3e1045ba8947665089e3ec8f6.tar.gz gentoo-2-b243ee80d3f6acf3e1045ba8947665089e3ec8f6.tar.bz2 gentoo-2-b243ee80d3f6acf3e1045ba8947665089e3ec8f6.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
-rw-r--r-- | net-fs/ncpfs/ChangeLog | 5 | ||||
-rw-r--r-- | net-fs/ncpfs/ncpfs-2.2.6-r2.ebuild | 68 |
2 files changed, 4 insertions, 69 deletions
diff --git a/net-fs/ncpfs/ChangeLog b/net-fs/ncpfs/ChangeLog index 5eba16140f6d..4153c28db1cf 100644 --- a/net-fs/ncpfs/ChangeLog +++ b/net-fs/ncpfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/ncpfs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ChangeLog,v 1.39 2015/05/02 09:27:48 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/ncpfs/ChangeLog,v 1.40 2015/05/07 22:44:09 mrueg Exp $ + + 07 May 2015; Manuel Rüger <mrueg@gentoo.org> -ncpfs-2.2.6-r2.ebuild: + Remove old. 02 May 2015; Jeroen Roovers <jer@gentoo.org> ncpfs-2.2.6-r3.ebuild: Stable for PPC64 (bug #521746). diff --git a/net-fs/ncpfs/ncpfs-2.2.6-r2.ebuild b/net-fs/ncpfs/ncpfs-2.2.6-r2.ebuild deleted file mode 100644 index ff84249e1cc7..000000000000 --- a/net-fs/ncpfs/ncpfs-2.2.6-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2012 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-r2.ebuild,v 1.5 2012/12/04 10:21:15 ago 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 - - # Add a patch to fix multiple vulnerabilities. - # CVE-2010-0788, CVE-2010-0790, & CVE-2010-0791. - # http://seclists.org/fulldisclosure/2010/Mar/122 - epatch "${FILESDIR}"/${P}-multiple-vulns.patch - - # Add a patch that removes the __attribute__((packed)); directive - # from several struct members in include/ncp/ncplib.h. This will - # cut down on a large number of compile warnings generated by modern - # gcc releases. - epatch "${FILESDIR}"/${P}-remove-packed-attrib.patch - - # Bug #273484 - sed -i '/ldconfig/d' lib/Makefile.in - - # Hack to 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 - - # Install the main programs, then the headers. - emake DESTDIR="${D}" install || die - emake DESTDIR="${D}" install-dev || die - - # Install a startup script in /etc/init.d and a conf file in /etc/conf.d - newconfd "${FILESDIR}"/ipx.confd ipx - newinitd "${FILESDIR}"/ipx.init ipx - - # Docs - dodoc FAQ README -} |