From 229e225176ed5b58bc6c14f087bbd80664f30dc6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 18 Jan 2011 01:27:26 +0000 Subject: Version bump. (Portage version: 2.2.0_alpha13/cvs/Linux x86_64) --- sys-apps/file/file-5.05.ebuild | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 sys-apps/file/file-5.05.ebuild (limited to 'sys-apps/file/file-5.05.ebuild') diff --git a/sys-apps/file/file-5.05.ebuild b/sys-apps/file/file-5.05.ebuild new file mode 100644 index 000000000000..9f910e246ab2 --- /dev/null +++ b/sys-apps/file/file-5.05.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.05.ebuild,v 1.1 2011/01/18 01:27:26 vapier Exp $ + +PYTHON_DEPEND="python? 2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit eutils distutils libtool flag-o-matic + +DESCRIPTION="identify a file's format by scanning binary data for patterns" +HOMEPAGE="ftp://ftp.astron.com/pub/file/" +SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz + ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="python" + +src_unpack() { + unpack ${P}.tar.gz + cd "${S}" + + elibtoolize + epunt_cxx + + # dont let python README kill main README #60043 + mv python/README{,.python} +} + +src_compile() { + # file uses things like strndup() and wcwidth() + append-flags -D_GNU_SOURCE + + econf || die + emake || die + + use python && cd python && distutils_src_compile +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc ChangeLog MAINT README + + use python && cd python && distutils_src_install +} + +pkg_postinst() { + use python && distutils_pkg_postinst +} + +pkg_postrm() { + use python && distutils_pkg_postrm +} -- cgit v1.2.3-65-gdbad