diff options
author | sf <sf@FreeBSD.org> | 2001-09-11 14:49:45 +0000 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-09-11 14:49:45 +0000 |
commit | c74a7c7004a300539332646e69363f6174c66189 (patch) | |
tree | 538c925a23ab6bad178b444a90d4825f193d72a7 /devel/pth/Makefile | |
parent | 10bc5a6ae84f791b148baedc41932f58b39011c3 (diff) | |
download | FreeBSD-ports-c74a7c7004a300539332646e69363f6174c66189.zip FreeBSD-ports-c74a7c7004a300539332646e69363f6174c66189.tar.gz |
install headers/libraries under its own directory, ${PREFIX}/includes/pth and
${PREFIX}/lib/pth, to avoid conflict with FreeBSD pthread.
Diffstat (limited to 'devel/pth/Makefile')
-rw-r--r-- | devel/pth/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile index 3a9d27f..0384db3 100644 --- a/devel/pth/Makefile +++ b/devel/pth/Makefile @@ -7,6 +7,7 @@ PORTNAME= pth PORTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.engelschall.com/sw/pth/ @@ -15,11 +16,14 @@ MASTER_SITE_SUBDIR= pth MAINTAINER= ports@FreeBSD.org INSTALLS_SHLIB= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/pth GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-pthread \ --enable-syscall-soft \ --enable-optimize \ - --enable-batch + --enable-batch \ + --includedir="${PREFIX}/include/pth" \ + --libdir="${PREFIX}/lib/pth" MAN1= pth-config.1 pthread-config.1 MAN3= pth.3 pthread.3 |