diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2015-11-04 12:34:50 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2015-11-04 14:37:36 +1100 |
commit | 20bd0a196859ecbc215da194403a3bfa3ef2264f (patch) | |
tree | 920af5a68aec55586dce2e160d22d0aa081ec263 /libxslt | |
parent | ca9df6680b068ed5da9e5b72eb666444bb71d353 (diff) | |
download | opt-20bd0a196859ecbc215da194403a3bfa3ef2264f.tar.gz opt-20bd0a196859ecbc215da194403a3bfa3ef2264f.tar.xz |
update romster ports for new man page location
Diffstat (limited to 'libxslt')
-rw-r--r-- | libxslt/.footprint | 12 | ||||
-rw-r--r-- | libxslt/Pkgfile | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/libxslt/.footprint b/libxslt/.footprint index ac2a3e31f..6117e7ef2 100644 --- a/libxslt/.footprint +++ b/libxslt/.footprint @@ -45,12 +45,12 @@ drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libexslt.pc -rw-r--r-- root/root usr/lib/pkgconfig/libxslt.pc -rw-r--r-- root/root usr/lib/xsltConf.sh -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/xsltproc.1.gz -drwxr-xr-x root/root usr/man/man3/ --rw-r--r-- root/root usr/man/man3/libexslt.3.gz --rw-r--r-- root/root usr/man/man3/libxslt.3.gz drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/aclocal/ -rw-r--r-- root/root usr/share/aclocal/libxslt.m4 +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/xsltproc.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/libexslt.3.gz +-rw-r--r-- root/root usr/share/man/man3/libxslt.3.gz diff --git a/libxslt/Pkgfile b/libxslt/Pkgfile index 9863714f1..fca810a02 100644 --- a/libxslt/Pkgfile +++ b/libxslt/Pkgfile @@ -14,18 +14,18 @@ build() { ./configure \ --prefix=/usr \ - --mandir=/usr/man \ --without-python \ --without-crypto make make DESTDIR=$PKG install + rm -r $PKG/usr/share/doc # move manpages - if [ -e $PKG/usr/man/man4/libxslt.4 ]; then - (cd $PKG/usr/man - mkdir man3 + if [ -e $PKG/usr/share/man/man4/libxslt.4 ]; then + (cd $PKG/usr/share/man + install -d man3 mv man4/libxslt.4 man3/libxslt.3) fi } |