1
0
forked from ports/opt

tdb: update to 1.3.17

This commit is contained in:
Juergen Daubert 2019-01-16 12:23:24 +01:00
parent 1f11ef55f9
commit c70515f217
3 changed files with 19 additions and 14 deletions

View File

@ -7,9 +7,9 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/tdb.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libtdb.so -> libtdb.so.1.3.16
lrwxrwxrwx root/root usr/lib/libtdb.so.1 -> libtdb.so.1.3.16
-rwxr-xr-x root/root usr/lib/libtdb.so.1.3.16
lrwxrwxrwx root/root usr/lib/libtdb.so -> libtdb.so.1.3.17
lrwxrwxrwx root/root usr/lib/libtdb.so.1 -> libtdb.so.1.3.17
-rwxr-xr-x root/root usr/lib/libtdb.so.1.3.17
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/tdb.pc
drwxr-xr-x root/root usr/lib/python2.7/

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/bEym9X6Yh6qkAN++q7piMbebKUJZ0cTItJYmVKfz0U2G4lm5UvZnVUnZCDPHcMieDQkwy0WQA4aXTdWjr6tegs=
SHA256 (Pkgfile) = ff27702b3655d8d46d1bd9ffece8726eda64661e9f28052f738fd8be2197bdf8
SHA256 (.footprint) = 8ce4938c8b72e920e6d69969559adc430fa1fe01ad190ff6aebd1ec52b0e2755
SHA256 (tdb-1.3.16.tar.gz) = 6a3fc2616567f23993984ada3cea97d953a27669ffd1bfbbe961f26e0cf96cc5
RWSE3ohX2g5d/Vx62K7CrziEoGoxJG4JHtMaaDa1NWnDjNCBBEnaFCfgFj0mzOSBRLodZelsTwv4U7p/g3nn1d7bX80DYkHedQQ=
SHA256 (Pkgfile) = 7dc6404bc1f9f85b1f0d8bb62495b05841f7c591ab84a03ec37bdccd0d13766c
SHA256 (.footprint) = 98e7e0ecfa78eecca68c57e8f001b6296dc90a1b520b3420eb2cd8c4bb978d45
SHA256 (tdb-1.3.17.tar.gz) = 1cb4399394c60a773430ca54848359adcf54fb6f136afdcfcbbe62b5f4245614
SHA256 (tdb-man-pages.tar.xz) = 4ba01bfb0ea6d3572a00b1993783053d42170299cda5fa842629a231b957ae2f

View File

@ -4,16 +4,21 @@
# Depends on: attr python
name=tdb
version=1.3.16
version=1.3.17
release=1
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz
$name-man-pages.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -d $PKG/usr/share/man/man8
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
cd $name-$version
sed '/^WAF_BINARY/s|../.||' -i Makefile
export PYTHON=python2
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -d $PKG/usr/share/man/man8
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
}