diff options
Diffstat (limited to 'devel/c2lib/Makefile')
-rw-r--r-- | devel/c2lib/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/devel/c2lib/Makefile b/devel/c2lib/Makefile index ee4070f8ab4d..eb5ed1255534 100644 --- a/devel/c2lib/Makefile +++ b/devel/c2lib/Makefile @@ -8,7 +8,7 @@ # PORTNAME= c2lib -PORTVERSION= 1.3.0 +PORTVERSION= 1.4.1 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= devel @@ -25,14 +25,17 @@ PREFIX?= ${LOCALBASE} MAKE_ENV+= CC="${CC}" .include <bsd.port.pre.mk> +do-configure: + cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make+ configure + do-build: - cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make+ + cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make+ do-install: cd ${WRKSRC}; ${SETENV} ${MAKE_ENV}\ make+ install prefix=${PREFIX} manprefix=${PREFIX} -.include "${.CURDIR}/manpages.mk" +.include "${FILESDIR}/manpages.mk" .include <bsd.port.post.mk> #EOF |