diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2007-03-31 00:40:39 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2007-03-31 00:40:39 +0000 |
commit | e575b98d144e76057c8ae2c1ae19185cfba07484 (patch) | |
tree | 0076fba38cdb3782e8f331c0d356c8fcca83fac9 /dev-libs | |
parent | Err, fix this... (diff) | |
download | gentoo-2-e575b98d144e76057c8ae2c1ae19185cfba07484.tar.gz gentoo-2-e575b98d144e76057c8ae2c1ae19185cfba07484.tar.bz2 gentoo-2-e575b98d144e76057c8ae2c1ae19185cfba07484.zip |
1.4.2 version bump for bug 172804. Both patches are now in upstream. Thanks to Sergij Borodych <bor at univ.kiev.ua>.
(Portage version: 2.1.2.2)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/geoip/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/geoip/files/digest-geoip-1.4.2 | 3 | ||||
-rw-r--r-- | dev-libs/geoip/geoip-1.4.2.ebuild | 29 |
3 files changed, 39 insertions, 1 deletions
diff --git a/dev-libs/geoip/ChangeLog b/dev-libs/geoip/ChangeLog index 20bcdeb34e43..fa8a7aa2546e 100644 --- a/dev-libs/geoip/ChangeLog +++ b/dev-libs/geoip/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/geoip # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.68 2007/02/01 20:50:30 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/ChangeLog,v 1.69 2007/03/31 00:40:39 vanquirius Exp $ + +*geoip-1.4.2 (31 Mar 2007) + + 31 Mar 2007; Marcelo Goes <vanquirius@gentoo.org> +geoip-1.4.2.ebuild: + 1.4.2 version bump for bug 172804. Both patches are now in upstream. Thanks + to Sergij Borodych <bor at univ.kiev.ua>. 01 Feb 2007; Markus Ullmann <jokey@gentoo.org> -geoip-1.3.14.ebuild: cleanup diff --git a/dev-libs/geoip/files/digest-geoip-1.4.2 b/dev-libs/geoip/files/digest-geoip-1.4.2 new file mode 100644 index 000000000000..4fb81c88ef19 --- /dev/null +++ b/dev-libs/geoip/files/digest-geoip-1.4.2 @@ -0,0 +1,3 @@ +MD5 d310da791d1d760edad25d33f2166fcd GeoIP-1.4.2.tar.gz 736086 +RMD160 2b8a9b3827ea3bf2e1e290e2421751bc0cce61da GeoIP-1.4.2.tar.gz 736086 +SHA256 51926c5f44ab7230ed7c5d1f0a97711638877defcfe25f959bb59981b83227e6 GeoIP-1.4.2.tar.gz 736086 diff --git a/dev-libs/geoip/geoip-1.4.2.ebuild b/dev-libs/geoip/geoip-1.4.2.ebuild new file mode 100644 index 000000000000..5f8b0c9dfe65 --- /dev/null +++ b/dev-libs/geoip/geoip-1.4.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.2.ebuild,v 1.1 2007/03/31 00:40:39 vanquirius Exp $ + +inherit autotools eutils libtool + +MY_P="${P/geoip/GeoIP}" +DESCRIPTION="easily lookup countries by IP addresses, even when Reverse DNS entries don't exist" +HOMEPAGE="http://www.maxmind.com/geoip/api/c.shtml" +SRC_URI="http://www.maxmind.com/download/geoip/api/c/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf --enable-shared || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "einstall failed" +} |