Tue Aug 31 16:55:58 2010 UTC ()
Fix build problems under Mac OS X (and potentially other platforms):
1.) Include "devel/gettext-lib/buildlink3.mk" to avoid incomplete builds.
2.) Don't strip installed binaries (under Mac OS X only) which is required
    for shared objects.


(tron)
diff -r1.2 -r1.3 pkgsrc/converters/help2man/Makefile

cvs diff -r1.2 -r1.3 pkgsrc/converters/help2man/Makefile (expand / switch to unified diff)

--- pkgsrc/converters/help2man/Makefile 2010/05/02 11:25:29 1.2
+++ pkgsrc/converters/help2man/Makefile 2010/08/31 16:55:58 1.3
@@ -1,24 +1,31 @@ @@ -1,24 +1,31 @@
1# $NetBSD: Makefile,v 1.2 2010/05/02 11:25:29 wiz Exp $ 1# $NetBSD: Makefile,v 1.3 2010/08/31 16:55:58 tron Exp $
2# 
3 2
4DISTNAME= help2man-1.38.2 3DISTNAME= help2man-1.38.2
 4PKGREVISION= 1
5CATEGORIES= converters 5CATEGORIES= converters
6MASTER_SITES= ${MASTER_SITE_GNU:=help2man/} 6MASTER_SITES= ${MASTER_SITE_GNU:=help2man/}
7 7
8MAINTAINER= arved@arved.at 8MAINTAINER= arved@arved.at
9HOMEPAGE= http://www.gnu.org/software/help2man/ 9HOMEPAGE= http://www.gnu.org/software/help2man/
10COMMENT= Generate simple manual pages from program output 10COMMENT= Generate simple manual pages from program output
11LICENSE= gnu-gpl-v3 11LICENSE= gnu-gpl-v3
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15DEPENDS+= p5-gettext>=1.01:../../devel/p5-gettext 15DEPENDS+= p5-gettext>=1.01:../../devel/p5-gettext
16 16
17WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} 17WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
18GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
19USE_PKGLOCALEDIR= yes 19USE_PKGLOCALEDIR= yes
20USE_TOOLS+= perl:run msgfmt gmake 20USE_TOOLS+= perl:run msgfmt gmake
21 21
22INFO_FILES= yes 22INFO_FILES= yes
23 23
 24.include "../../mk/bsd.prefs.mk"
 25
 26.if ${OPSYS} == "Darwin"
 27_STRIPFLAG_INSTALL=
 28.endif
 29
 30.include "../../devel/gettext-lib/buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"