1
0
forked from ports/opt

blackbox: fixed mandir location

This commit is contained in:
Jose V Beneyto 2016-04-04 11:55:03 +02:00
parent 590a338971
commit 4e87b88f10
2 changed files with 12 additions and 8 deletions

View File

@ -29,11 +29,6 @@ drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libbt.la
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libbt.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/blackbox.1.gz
-rw-r--r-- root/root usr/man/man1/bsetbg.1.gz
-rw-r--r-- root/root usr/man/man1/bsetroot.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/blackbox/
-rw-r--r-- root/root usr/share/blackbox/menu
@ -43,3 +38,8 @@ drwxr-xr-x root/root usr/share/blackbox/styles/
-rw-r--r-- root/root usr/share/blackbox/styles/Green
-rw-r--r-- root/root usr/share/blackbox/styles/Purple
-rw-r--r-- root/root usr/share/blackbox/styles/Red
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/blackbox.1.gz
-rw-r--r-- root/root usr/share/man/man1/bsetbg.1.gz
-rw-r--r-- root/root usr/share/man/man1/bsetroot.1.gz

View File

@ -6,15 +6,19 @@
name=blackbox
version=0.70.1
release=2
release=3
source=(http://download.sourceforge.net/blackboxwm/$name-$version.tar.bz2
blackbox-0.70.1-include-fix.diff)
$name-$version-include-fix.diff)
build () {
cd $name-$version
patch -p1 -i $SRC/blackbox-0.70.1-include-fix.diff
./configure --prefix=/usr --disable-nls
./configure --prefix=/usr \
--mandir=/usr/share/man \
--disable-nls
make
make DESTDIR=$PKG install
}