libgeoip: initial import

This commit is contained in:
Thomas Penteker 2017-07-27 12:52:39 +02:00
parent 18f82cd62c
commit 751e3399e9
4 changed files with 44 additions and 0 deletions

20
libgeoip/.footprint Normal file
View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/geoiplookup
-rwxr-xr-x root/root usr/bin/geoiplookup6
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/GeoIP.h
-rw-r--r-- root/root usr/include/GeoIPCity.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libGeoIP.a
-rwxr-xr-x root/root usr/lib/libGeoIP.la
lrwxrwxrwx root/root usr/lib/libGeoIP.so -> libGeoIP.so.1.6.11
lrwxrwxrwx root/root usr/lib/libGeoIP.so.1 -> libGeoIP.so.1.6.11
-rwxr-xr-x root/root usr/lib/libGeoIP.so.1.6.11
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/geoip.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/geoiplookup.1.gz
-rw-r--r-- root/root usr/share/man/man1/geoiplookup6.1.gz

1
libgeoip/.md5sum Normal file
View File

@ -0,0 +1 @@
1330a0d2c212b0783fcbdfe694bbc23e v1.6.11.tar.gz

5
libgeoip/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wQXnEOrRTda4EwTK5dIJZmbwTyfhOOTEttshrpHlFyK8l+nihLqJ/rTXP+ZNFOJ2ttQnz79HB22+Y9yRYzfew4=
SHA256 (Pkgfile) = bba0f703650a49b911c280714b4c8b166e6b68d512a9e6815a71772568151cae
SHA256 (.footprint) = 55889f24f10f8cc55420b291966b4d18d2ab8f8a16903f73a523b8c48ae67fa7
SHA256 (v1.6.11.tar.gz) = 8859cb7c9cb63e77f4aedb40a4622024359b956b251aba46b255acbe190c34e0

18
libgeoip/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: GeoIP Legacy C Library
# URL: https://github.com/maxmind/geoip-api-c
# Maintainer: Thomas Penteker, tek at serverop dot de
name=libgeoip
version=1.6.11
release=1
source=(https://github.com/maxmind/geoip-api-c/archive/v${version}.tar.gz)
build() {
cd geoip-api-c-$version
autoreconf -i
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}