diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-03-23 06:28:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-03-23 06:28:12 +0000 |
commit | c7507bd1d7b77655d9fd519333f56177cbf2bc71 (patch) | |
tree | ba4cb9ff035ae44e316aa7273db8f1ce9518df35 /net-libs | |
parent | Version bump, see http://www.winehq.org/announce/1.7.15 for the announcement. (diff) | |
download | gentoo-2-c7507bd1d7b77655d9fd519333f56177cbf2bc71.tar.gz gentoo-2-c7507bd1d7b77655d9fd519333f56177cbf2bc71.tar.bz2 gentoo-2-c7507bd1d7b77655d9fd519333f56177cbf2bc71.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/ftplib/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/ftplib/ftplib-4.0.ebuild | 37 |
2 files changed, 44 insertions, 3 deletions
diff --git a/net-libs/ftplib/ChangeLog b/net-libs/ftplib/ChangeLog index 29392cadbd08..591d85704b50 100644 --- a/net-libs/ftplib/ChangeLog +++ b/net-libs/ftplib/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for net-libs/ftplib -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/ftplib/ChangeLog,v 1.1 2011/12/22 18:10:49 ssuominen Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ftplib/ChangeLog,v 1.2 2014/03/23 06:28:12 vapier Exp $ + +*ftplib-4.0 (23 Mar 2014) + + 23 Mar 2014; Mike Frysinger <vapier@gentoo.org> +ftplib-4.0.ebuild: + Version bump. *ftplib-3.1.1 (22 Dec 2011) 22 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> +ftplib-3.1.1.ebuild: Initial commit. - diff --git a/net-libs/ftplib/ftplib-4.0.ebuild b/net-libs/ftplib/ftplib-4.0.ebuild new file mode 100644 index 000000000000..90497e5de7d7 --- /dev/null +++ b/net-libs/ftplib/ftplib-4.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ftplib/ftplib-4.0.ebuild,v 1.1 2014/03/23 06:28:12 vapier Exp $ + +EAPI=4 +inherit eutils multilib toolchain-funcs versionator + +DESCRIPTION="A set of routines that implement the FTP protocol" +HOMEPAGE="http://nbpfaus.net/~pfau/ftplib/" +SRC_URI="http://nbpfaus.net/~pfau/ftplib/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_prepare() { + sed -i \ + -e '/shared/s:$(CC):$(CC) $(LDFLAGS):' \ + -e 's:/usr/local:$(DESTDIR)/usr:' \ + -e '/^LDFLAGS/s:=:+=:' \ + -e "s:/lib:/$(get_libdir):" \ + -e '/ar -rcs/s:ar:$(AR):' \ + src/Makefile || die +} + +src_compile() { + tc-export AR CC + emake -C src DEBUG="${CFLAGS} ${CPPFLAGS}" +} + +src_install() { + dodir /usr/bin /usr/include /usr/$(get_libdir) + emake -C src DESTDIR="${ED}" install + dodoc additional_rfcs CHANGES README* RFC959.txt + dohtml html/* +} |