diff options
author | joerg <joerg> | 2006-03-15 16:34:13 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-03-15 16:34:13 +0000 |
commit | 43ead5fb0707c331ffa79a7436864bdf7f404021 (patch) | |
tree | 7d9be857e3e5e50be4eccc0a492c1f980c7e6a45 | |
parent | 91bf823f0d21150203bd737eba7f0ef1358b17e7 (diff) | |
download | pkgsrc-43ead5fb0707c331ffa79a7436864bdf7f404021.tar.gz |
Fix build before someone tries to use this. *blush*
Honour PKGMANDIR. Bump revision.
-rw-r--r-- | devel/pthread-sem/Makefile | 4 | ||||
-rw-r--r-- | devel/pthread-sem/files/Makefile | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/devel/pthread-sem/Makefile b/devel/pthread-sem/Makefile index edc278d3906..f19841bb2bb 100644 --- a/devel/pthread-sem/Makefile +++ b/devel/pthread-sem/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2006/01/15 11:56:54 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2006/03/15 16:34:13 joerg Exp $ # DISTNAME= pthread-sem-1.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.cit.gu.edu.au/teaching/2105CIT/software/ diff --git a/devel/pthread-sem/files/Makefile b/devel/pthread-sem/files/Makefile index 80605496f14..44e56b86e6f 100644 --- a/devel/pthread-sem/files/Makefile +++ b/devel/pthread-sem/files/Makefile @@ -1,16 +1,19 @@ -# $NetBSD: Makefile,v 1.1 2006/01/10 13:42:29 joerg Exp $ +# $NetBSD: Makefile,v 1.2 2006/03/15 16:34:13 joerg Exp $ LIB= libsemaphore LIB_VER= 1:0 LIBS?= ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} SRCS= sem.c +OBJS= ${SRCS:.c=.lo} HDRS= semaphore.h +CFLAGS+= -I. + PREFIX?= /usr/local LIBDIR?= ${PREFIX}/lib INCLUDEDIR?= ${PREFIX}/include -MANDIR?= ${PREFIX}/man +MANDIR?= ${PREFIX}/${PKGMANDIR} MANDIR3?= ${MANDIR}/man3 BSD_INSTALL?= install |