diff options
author | Juergen Daubert <jue@jue.li> | 2019-01-16 12:23:24 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2019-01-16 12:23:24 +0100 |
commit | c70515f217ed913aaad29eeddb273e518cf4f6b0 (patch) | |
tree | 6e5e23ccfa2db9809ad002e8e7cf97ca84890374 /tdb | |
parent | 1f11ef55f97a17bc8eeb3f538b672f29acc94ada (diff) | |
download | opt-c70515f217ed913aaad29eeddb273e518cf4f6b0.tar.gz opt-c70515f217ed913aaad29eeddb273e518cf4f6b0.tar.xz |
tdb: update to 1.3.17
Diffstat (limited to 'tdb')
-rw-r--r-- | tdb/.footprint | 6 | ||||
-rw-r--r-- | tdb/.signature | 8 | ||||
-rw-r--r-- | tdb/Pkgfile | 19 |
3 files changed, 19 insertions, 14 deletions
diff --git a/tdb/.footprint b/tdb/.footprint index c1a477127..ef76111a4 100644 --- a/tdb/.footprint +++ b/tdb/.footprint @@ -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/ diff --git a/tdb/.signature b/tdb/.signature index 23a897081..520e74e15 100644 --- a/tdb/.signature +++ b/tdb/.signature @@ -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 diff --git a/tdb/Pkgfile b/tdb/Pkgfile index 4e5267c89..74589ed1d 100644 --- a/tdb/Pkgfile +++ b/tdb/Pkgfile @@ -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 } |