diff options
author | bsam <bsam@FreeBSD.org> | 2006-08-09 03:19:35 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2006-08-09 03:19:35 +0800 |
commit | a7d300e16131e12fc449521e7ef24e8546f1b7a1 (patch) | |
tree | ac18735c003b65cc0f7960d0a4071ebc17cd8e4e /graphics/linux_dri | |
parent | ec23bc71882958bf6c534d66e0f8de76b65da2da (diff) | |
download | freebsd-ports-gnome-a7d300e16131e12fc449521e7ef24e8546f1b7a1.tar.gz freebsd-ports-gnome-a7d300e16131e12fc449521e7ef24e8546f1b7a1.tar.zst freebsd-ports-gnome-a7d300e16131e12fc449521e7ef24e8546f1b7a1.zip |
Let the ports which have both bz2 and gz distfiles extract on 4.x
(actually, if ${OSVERSION} < 502111):
- remove BROKEN from graphics/linux_dri-devel;
- remove IGNORE from graphics/linux_dri.
The next technique is used (thanks Brooks Davis):
.if ${OSVERSION} < 502111
EXTRACT_DEPENDS+= bsdtar:${PORTSDIR}/archivers/libarchive
TAR= bsdtar
.endif
Approved by: netchild (mentor, implicit)
Diffstat (limited to 'graphics/linux_dri')
-rw-r--r-- | graphics/linux_dri/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/linux_dri/Makefile b/graphics/linux_dri/Makefile index a6c8e68932da..45f69cf51f3e 100644 --- a/graphics/linux_dri/Makefile +++ b/graphics/linux_dri/Makefile @@ -35,8 +35,9 @@ LDCONFIG_LINUX= ${LINUXBASE}/sbin/ldconfig .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -IGNORE= does not extract with the tar in FreeBSD 4.x +.if ${OSVERSION} < 502111 +EXTRACT_DEPENDS+= bsdtar:${PORTSDIR}/archivers/libarchive +TAR= bsdtar .endif do-install: |