2007-10-23 15:52:57 +02:00
|
|
|
# New ports collection makefile for: xf86-video-radeonhd
|
|
|
|
# Date Created: 20 Oct 2007
|
|
|
|
# Whom: Rene Ladan <r.c.ladan@gmail.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= xf86-video-radeonhd
|
2009-12-05 16:51:20 +01:00
|
|
|
PORTVERSION= 1.3.0
|
|
|
|
PORTREVISION= 0
|
2007-10-23 15:52:57 +02:00
|
|
|
CATEGORIES= x11-drivers
|
|
|
|
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
|
|
COMMENT= X.Org ati RadeonHD display driver
|
|
|
|
|
2008-04-19 22:57:04 +02:00
|
|
|
OPTIONS= UTILS "Install rhd_conntest and rhd_dump utilities" off
|
|
|
|
|
2007-10-23 15:52:57 +02:00
|
|
|
XORG_CAT= driver
|
2009-05-14 07:40:45 +02:00
|
|
|
USE_XORG= damageproto glproto videoproto xextproto xf86driproto
|
2008-12-23 09:47:57 +01:00
|
|
|
CONFIGURE_ARGS= --enable-exa
|
2007-10-23 15:52:57 +02:00
|
|
|
|
2008-12-23 09:47:57 +01:00
|
|
|
CONFLICTS= xf86-video-radeonhd-devel-[0-9]*
|
Add xf86-video-radeonhd-devel 1.2.1.20080906, supports new
devices and features than xf86-video-radeonhd, but experimental.
Add CONFLICTS xf86-video-radeonhd and xf86-video-radeonhd-devel.
--
In this time, DRI is not usable. Because 3D acceleration will
disable 2D acceleration, and it supports R5xx series only:-(.
EXA might be usable rather than XAA. Because some XAA functions
aren't implemented. But 2D acceleration is supported only R5xx.
Additional Hardwares:
RV670: Radeon HD 3690, FireStream 9170
M86: Mobility Radeon HD 3650, HD 3670, Mobility FireGL V5700
M88: Mobility Radeon HD 3850, HD 3850 X2, HD 3870, HD3870 X2
RS740: RS740, RS740M
RS780: Radeon HD 3100/3200/3300 Series
RV770: Radeon HD 4800 Series; Everest, K2, Denali ATI FirePro
PR: ports/127173
Repocopied by: portmgr (marcus)
Tested by: many people on freebsd-current@ and freebsd-stable@
2008-09-27 22:02:36 +02:00
|
|
|
|
2007-12-02 19:16:38 +01:00
|
|
|
MAN4= radeonhd.4x
|
|
|
|
|
2008-04-19 22:57:04 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if defined(WITH_UTILS)
|
|
|
|
LIB_DEPENDS+= pci.2:${PORTSDIR}/devel/libpci
|
|
|
|
PLIST_SUB= UTILS=""
|
|
|
|
CONFIGURE_ENV+= PCIUTILS_CFLAGS="-I${LOCALBASE}/include -lpci -lz" \
|
|
|
|
PCIUTILS_LIBS="-L${LOCALBASE}/lib"
|
|
|
|
.else
|
|
|
|
PLIST_SUB= UTILS="@comment "
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_UTILS)
|
|
|
|
post-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/utils/conntest/rhd_conntest ${PREFIX}/sbin
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/utils/conntest/rhd_dump ${PREFIX}/sbin
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|