diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-04-18 10:43:10 +0800 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-04-18 10:43:10 +0800 |
commit | eda89437588ac63fd48ce31710952f5ff4a282b6 (patch) | |
tree | e93060e96d029195b0818d5b92002dae65029036 /sysutils/apt | |
parent | 1de816e0f82c3397beee075dbae68c640f0eb436 (diff) | |
download | freebsd-ports-gnome-eda89437588ac63fd48ce31710952f5ff4a282b6.tar.gz freebsd-ports-gnome-eda89437588ac63fd48ce31710952f5ff4a282b6.tar.zst freebsd-ports-gnome-eda89437588ac63fd48ce31710952f5ff4a282b6.zip |
- Mark BROKEN on 10.x: tons of missing includes
Diffstat (limited to 'sysutils/apt')
-rw-r--r-- | sysutils/apt/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/apt/Makefile b/sysutils/apt/Makefile index ab5ed2d49d37..ba37d89e15cf 100644 --- a/sysutils/apt/Makefile +++ b/sysutils/apt/Makefile @@ -34,6 +34,12 @@ DPKGDIR?= /var/db/dpkg APTDIR?= /var/db/apt PLIST_SUB+= APTDIR=${APTDIR:C,^/,,} +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 +BROKEN= does not build +.endif + post-patch: ${CP} ${FILESDIR}/https.cc ${FILESDIR}/https.h ${WRKSRC}/methods/ ${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|g' -e \ @@ -118,4 +124,4 @@ do-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_MAN} ${WRKSRC}/docs/examples/* ${STAGEDIR}${EXAMPLESDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |