diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2015-06-02 09:00:00 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2015-06-02 09:00:00 +0000 |
commit | bc7a742c14029386e73dd4ba64fe50fa3a7d8793 (patch) | |
tree | c711d195889f75c922da60c31eb1c178155d7911 /app-arch/sharutils | |
parent | Version Bump (diff) | |
download | gentoo-2-bc7a742c14029386e73dd4ba64fe50fa3a7d8793.tar.gz gentoo-2-bc7a742c14029386e73dd4ba64fe50fa3a7d8793.tar.bz2 gentoo-2-bc7a742c14029386e73dd4ba64fe50fa3a7d8793.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'app-arch/sharutils')
-rw-r--r-- | app-arch/sharutils/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/sharutils/sharutils-4.15.2.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-arch/sharutils/ChangeLog b/app-arch/sharutils/ChangeLog index b04b211247b0..728fda45f1a0 100644 --- a/app-arch/sharutils/ChangeLog +++ b/app-arch/sharutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/sharutils # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.130 2015/05/29 07:55:04 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.131 2015/06/02 09:00:00 polynomial-c Exp $ + +*sharutils-4.15.2 (02 Jun 2015) + + 02 Jun 2015; Lars Wendler <polynomial-c@gentoo.org> +sharutils-4.15.2.ebuild: + Version bump. *sharutils-4.15.1 (29 May 2015) diff --git a/app-arch/sharutils/sharutils-4.15.2.ebuild b/app-arch/sharutils/sharutils-4.15.2.ebuild new file mode 100644 index 000000000000..5f49ce56022a --- /dev/null +++ b/app-arch/sharutils/sharutils-4.15.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/sharutils-4.15.2.ebuild,v 1.1 2015/06/02 09:00:00 polynomial-c Exp $ + +EAPI="5" + +inherit eutils + +MY_P="${P/_/-}" +DESCRIPTION="Tools to deal with shar archives" +HOMEPAGE="http://www.gnu.org/software/sharutils/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="nls" + +DEPEND="app-arch/xz-utils + sys-apps/texinfo + nls? ( >=sys-devel/gettext-0.10.35 )" + +S=${WORKDIR}/${MY_P} + +src_configure() { + strip-linguas -u po + econf $(use_enable nls) +} |