diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-01-29 01:18:45 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-01-29 01:18:45 +0000 |
commit | 3f09790cf47387fa3e40a13d708193b03d9ccd1a (patch) | |
tree | 0fff63924c9246ece75805350a1a548f84a8743c /devel/libffi | |
parent | 0a84bd46169797a65b4e8d22174fe37a764b7dab (diff) | |
download | ports-3f09790cf47387fa3e40a13d708193b03d9ccd1a.tar.gz ports-3f09790cf47387fa3e40a13d708193b03d9ccd1a.zip |
Notes
Diffstat (limited to 'devel/libffi')
-rw-r--r-- | devel/libffi/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/devel/libffi/Makefile b/devel/libffi/Makefile index 87baf15943ad..ab47437c860f 100644 --- a/devel/libffi/Makefile +++ b/devel/libffi/Makefile @@ -4,8 +4,8 @@ PORTNAME= libffi PORTVERSION= 3.0.11 CATEGORIES= devel -MASTER_SITES= ftp://sourceware.org/pub/libffi/ \ - http://www.mirrorservice.org/sites/sourceware.org/pub/libffi/ +MASTER_SITES= SOURCEWARE +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Foreign Function Interface @@ -16,7 +16,7 @@ TEST_DESC= Run regression test suite .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MTEST} -BUILD_DEPENDS= runtest:${PORTSDIR}/misc/dejagnu +BUILD_DEPENDS+= runtest:${PORTSDIR}/misc/dejagnu .endif GNU_CONFIGURE= yes @@ -31,11 +31,13 @@ MAN3= ffi.3 ffi_call.3 ffi_prep_cif.3 ffi_prep_cif_var.3 .if ${PORT_OPTIONS:MTEST} post-build: - @cd ${WRKSRC} && ${GMAKE} check + @cd ${WRKSRC} && ${MAKE} check .endif post-install: - @${LN} -sf ../lib/libffi-${PORTVERSION}/include/ffi.h ${PREFIX}/include/ - @${LN} -sf ../lib/libffi-${PORTVERSION}/include/ffitarget.h ${PREFIX}/include/ + @${LN} -sf ../lib/libffi-${PORTVERSION}/include/ffi.h \ + ${PREFIX}/include/ + @${LN} -sf ../lib/libffi-${PORTVERSION}/include/ffitarget.h \ + ${PREFIX}/include/ .include <bsd.port.mk> |