diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-02-21 08:57:58 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-02-21 08:57:58 +0000 |
commit | 12c86966ea1ef28244482201a15f7b349ec49111 (patch) | |
tree | c342a927891534aa5c2b5f0f0d56bebbe8c9a7a9 /dev-util | |
parent | Restricting jython (diff) | |
download | gentoo-2-12c86966ea1ef28244482201a15f7b349ec49111.tar.gz gentoo-2-12c86966ea1ef28244482201a15f7b349ec49111.tar.bz2 gentoo-2-12c86966ea1ef28244482201a15f7b349ec49111.zip |
Version bump.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/idutils/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/idutils/idutils-4.5.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/dev-util/idutils/ChangeLog b/dev-util/idutils/ChangeLog index a4b3575f6f3d..0c9f5d422978 100644 --- a/dev-util/idutils/ChangeLog +++ b/dev-util/idutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/idutils -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/idutils/ChangeLog,v 1.2 2010/12/03 16:42:31 ulm Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/idutils/ChangeLog,v 1.3 2012/02/21 08:57:58 robbat2 Exp $ + +*idutils-4.5 (21 Feb 2012) + + 21 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> +idutils-4.5.ebuild: + Version bump. 03 Dec 2010; Ulrich Mueller <ulm@gentoo.org> idutils-4.2.ebuild: Fix configure test for Emacs, bug 336731. diff --git a/dev-util/idutils/idutils-4.5.ebuild b/dev-util/idutils/idutils-4.5.ebuild new file mode 100644 index 000000000000..3944f2ce9f45 --- /dev/null +++ b/dev-util/idutils/idutils-4.5.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/idutils/idutils-4.5.ebuild,v 1.1 2012/02/21 08:57:58 robbat2 Exp $ + +inherit eutils elisp-common + +DESCRIPTION="Fast, high-capacity, identifier database tool" +HOMEPAGE="http://www.gnu.org/software/idutils/" +#DEB_PN="id-utils" # old upstream name for it +#DEB_P="${DEB_PN}_${PV}" +#DEB_PR="1" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" +#mirror://debian/pool/main/${PN:0:1}/${DEB_PN}/${DEB_P}-${DEB_PR}.diff.gz + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="emacs nls" + +RDEPEND="emacs? ( virtual/emacs ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${P}.tar.gz + if [ -n "${DEB_PR}" ]; then + cd "${S}" + epatch "${DISTDIR}"/${DEB_P}-${DEB_PR}.diff.gz + epatch "${S}"/debian/patches/*.dpatch + fi +} + +src_compile() { + use emacs || export EMACS=no + econf \ + $(use_enable nls) \ + "$(use_with emacs lispdir "${SITELISP}/${PN}")" + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS README* ChangeLog AUTHORS THANKS TODO +} |