Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
29 lines
634 B
Makefile
29 lines
634 B
Makefile
# New ports collection makefile for: qtpixmap
|
|
# Date created: 2003-08-07
|
|
# Whom: arved
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= QtPixmap
|
|
PORTVERSION= 0.27
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= http://www.kde-look.org/content/files/
|
|
DISTNAME= 7043-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= Modifed GTK pixmap engine to obtain Theme information from Qt
|
|
|
|
USE_GNOME= gtk20
|
|
.if !defined(WITHOUT_GTK1)
|
|
USE_GNOME+= gtk12 imlib
|
|
PLIST_SUB= GTK1=""
|
|
.else
|
|
PLIST_SUB= GTK1="@comment "
|
|
.endif
|
|
USE_X_PREFIX= yes
|
|
USE_LIBTOOL_VER=13
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/7043-//}
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.mk>
|