6f32add9a7
FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon
41 lines
1,005 B
Makefile
41 lines
1,005 B
Makefile
# New ports collection makefile for: atk
|
|
# Date Created: 14 May 2001
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/accessibility/atk/Makefile,v 1.90 2008/03/10 13:51:38 ahze Exp $
|
|
#
|
|
|
|
PORTNAME= atk
|
|
PORTVERSION= 1.22.0
|
|
PORTREVISION?= 0
|
|
CATEGORIES= accessibility devel
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A GNOME accessibility toolkit (ATK)
|
|
|
|
USE_BZIP2= yes
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
USE_GETTEXT= yes
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_GNOME= gnomehack glib20 ltverhack referencehack
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--disable-gtk-doc \
|
|
--with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
AUTOCONF=${TRUE} AUTOMAKE=${TRUE}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "/^SUBDIRS =/s/tests//" \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|