mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
409af62fa8
Overview of Changes in GTK+ 1.2.8: * GNU Make 3.79 bug workaround * FAQ and tutorial updates and improvements * Miscellaneous bug fixes: CList, Calendar, rc-files, FontSelection Overview of Changes in GLib 1.2.8: * GArray zero initialization bug fixed * Fix for upper bound calculation of formatted strings * Improved GCC detection * AIX dynamic modules fix to retrive symbols from shared libraries for the main program. * Miscellaneous other minor bug fixes
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: gtk12
|
|
# Date Created: 28 Sep 1997
|
|
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gtk
|
|
PORTVERSION= 1.2.8
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.2/ \
|
|
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.2/ \
|
|
http://www.ameth.org/gimp/gtk/v1.2/
|
|
DISTNAME= gtk+-${PORTVERSION}
|
|
|
|
MAINTAINER= vanilla@FreeBSD.org
|
|
|
|
LIB_DEPENDS= glib12.3:${PORTSDIR}/devel/glib12 \
|
|
intl.1:${PORTSDIR}/devel/gettext
|
|
|
|
GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_PERL5= yes
|
|
USE_LIBTOOL= yes
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-suffix
|
|
CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk12
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
X_CFLAGS="-I${LOCALBASE}/include" \
|
|
GLIB_CONFIG="${GLIB_CONFIG}" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
MAN1= gtk12-config.1
|
|
|
|
pre-build:
|
|
${PERL} -i -pe 's/\\"$$/\\/' ${WRKSRC}/gtk/gtkrc.*
|
|
${RM} -rf ${WRKSRC}/docs/gtk.info*
|
|
# ${CP} ${WRKSRC}/docs/gtk-config.1 ${WRKSRC}/docs/gtk12-config.1
|
|
|
|
.include <bsd.port.mk>
|