789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
69 lines
1.8 KiB
Makefile
69 lines
1.8 KiB
Makefile
# New ports collection makefile for: libgnomeprint
|
|
# Date created: 15 Jan 1999
|
|
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/print/libgnomeprint/Makefile,v 1.73 2008/09/22 13:55:39 kwm Exp $
|
|
#
|
|
# NOTE: Remind to update comms/gfax plist when PORTVERSION change.
|
|
|
|
PORTNAME= libgnomeprint
|
|
PORTVERSION= 2.18.6
|
|
CATEGORIES= print gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Gnome print support library
|
|
|
|
USE_BZIP2= yes
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \
|
|
popt.0:${PORTSDIR}/devel/popt
|
|
|
|
USE_BISON= build
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomeprefix intlhack gnomehack gnomehier glib20 pango libxml2 \
|
|
libartlgpl2 ltverhack
|
|
USE_GETTEXT= yes
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION} \
|
|
LIBVERSION=2.2
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (defined(WITH_CUPS) || exists(${LOCALBASE}/lib/libcups.so)) && !defined(WITHOUT_CUPS)
|
|
CONFIGURE_ARGS+= --with-cups
|
|
LIB_DEPENDS+= gnomecups-1.0:${PORTSDIR}/print/libgnomecups
|
|
PLIST_SUB+= CUPS:=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-cups
|
|
PLIST_SUB+= CUPS:="@comment "
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_CUPS)
|
|
@${ECHO_MSG} " Enable cups support by defining"
|
|
@${ECHO_MSG} " WITH_CUPS"
|
|
@${ECHO_MSG} ""
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|<malloc[.]h>|<stdlib.h>|'
|
|
@${REINPLACE_CMD} -e "/^SUBDIRS =/s|tests||" ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e "/^SUBDIRS =/s|doc||" ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/etc/gnome/libgnomeprint-2.0/fonts
|
|
@${TOUCH} ${PREFIX}/etc/gnome/libgnomeprint-2.0/fonts/gnome-print.fontmap
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
.endif
|