Index: head/comms/gnokii/Makefile =================================================================== --- head/comms/gnokii/Makefile (revision 254794) +++ head/comms/gnokii/Makefile (revision 254795) @@ -1,148 +1,148 @@ # New ports collection makefile for: gnokii # Date created: 15 March 1999 # Whom: Staffan Ulfberg # # $FreeBSD$ # PORTNAME= gnokii PORTVERSION= 0.6.29 PORTEPOCH= 1 CATEGORIES= comms MASTER_SITES= http://www.gnokii.org/download/gnokii/ \ ftp://ftp.gnokii.org/pub/gnokii/ \ http://www.gnokii.org/download/gnokii/0.6.x/ MAINTAINER= mad@madpilot.net COMMENT= Tools to talk to GSM cellular phones BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser USE_BZIP2= yes USE_GMAKE= yes USE_GETTEXT= yes USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes WANT_GNOME= yes USE_GNOME= intltool GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} --enable-security \ --with-xgnokiidir=${PREFIX}/share CONFIGURE_ENV+= MSGFMT="${LOCALBASE}/bin/msgfmt" \ XGETTEXT="${LOCALBASE}/bin/xgettext" \ CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include -fPIC" \ LDFLAGS="-L${LOCALBASE}/lib" \ LIBS="-L${WRKSRC}/common -L${LOCALBASE}/lib" \ PKG_CONFIG="${LOCALBASE}/bin/pkg-config" PKGDEINSTALL= ${PKGINSTALL} SUB_FILES+= pkg-message PORTDOCS= * MAN1= gnokii.1 sendsms.1 xgnokii.1 MAN8= gnokiid.8 mgnokiidev.8 CONFLICTS= smstools-[0-9]* sendsms-[0-9]* OPTIONS= ICAL "Build with IETF iCal support" off \ USB "Build with libusb support" off \ PCSC "Build with PC/SC-Lite support" off \ SMSD "Enable smsd daemon" off \ MYSQL "Enable MySQL support for smsd" off \ PGSQL "Enable PostgreSQL support for smsd" off \ X11 "Build graphical version (xgnokii)" on .include .if exists(${LOCALBASE}/lib/libical.so) || defined(WITH_ICAL) -LIB_DEPENDS+= ical.43:${PORTSDIR}/devel/libical +LIB_DEPENDS+= ical.44:${PORTSDIR}/devel/libical .endif .if ${OSVERSION} < 800069 . if exists(${LOCALBASE}/lib/libusb.so) || defined(WITH_USB) LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb . endif .endif .if exists(${LOCALBASE}/lib/libpcsclite.so) || defined(WITH_PCSC) LIB_DEPENDS+= pcsclite.1:${PORTSDIR}/devel/pcsc-lite .endif .if !defined(WITH_SMSD) PLIST_SUB+= SMSD='@comment ' MSM='@comment ' PGM='@comment ' CONFIGURE_ARGS+= --disable-smsd .else PLIST_SUB+= SMSD='' USE_GNOME+= glib20 MAN8+= smsd.8 .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so) && !defined(WITHOUT_MYSQL) USE_MYSQL= yes PLIST_SUB+= MSM='' .else PLIST_SUB+= MSM='@comment ' .endif .if exists(${LOCALBASE}/bin/psql) && !defined(WITHOUT_PGSQL) USE_PGSQL= yes PLIST_SUB+= PGM='' .else PLIST_SUB+= PGM='@comment ' .endif .endif .if defined(WITHOUT_X11) CONFIGURE_ARGS+= --without-x PLIST_SUB+= X11='@comment ' .else USE_XORG= xpm USE_GNOME+= gtk20 PLIST_SUB+= X11='' .endif FIXPREFIX= Docs/man/gnokiid.8 Docs/DataCalls-QuickStart Docs/README \ common/cfgreader.c po/et.po po/sl.po post-patch: .for f in ${FIXPREFIX} @${REINPLACE_CMD} -e "s:/etc/gnokiirc:${PREFIX}/etc/gnokiirc:g" \ ${WRKSRC}/${f} .endfor @${REINPLACE_CMD} -e "s:%%PTHREAD_LIBS%%:${PTHREAD_LIBS}:; \ s:%%PTHREAD_CFLAGS%%:${PTHREAD_CFLAGS}:" ${WRKSRC}/configure .for f in common/data/virtmodem.c utils/mgnokiidev.c @${REINPLACE_CMD} -E -e "s:^(#ifdef.*)__OpenBSD__:\1__FreeBSD__:" \ ${WRKSRC}/${f} .endfor # fix test(1) conditions in configure script @${REINPLACE_CMD} -E \ -e 's|([[:space:]]+test[[:space:]]+.+)==([[:space:]]+"yes")|\1=\2|' \ ${WRKSRC}/${CONFIGURE_SCRIPT} @${MV} ${WRKSRC}/Docs/man/xgnokii.1x ${WRKSRC}/Docs/man/xgnokii.1 pre-install: @${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: ${INSTALL_DATA} ${WRKSRC}/xgnokii/xgnokii.pc ${PREFIX}/libdata/pkgconfig @${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .if !defined(NOPORTDOCS) ${GMAKE} install -C ${WRKSRC}/Docs .else ${GMAKE} install -C ${WRKSRC}/Docs/man .endif ${INSTALL_DATA} ${WRKSRC}/Docs/sample/gnokiirc \ ${PREFIX}/etc/gnokiirc.sample .if defined(WITH_SMSD) @cd ${WRKSRC}/smsd && ${GMAKE} install ${MKDIR} ${PREFIX}/share/smsd ${INSTALL_SCRIPT} ${WRKSRC}/smsd/action ${PREFIX}/share/smsd ${INSTALL_DATA} ${WRKSRC}/smsd/README ${PREFIX}/share/smsd .if defined(WITH_MYSQL) ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.mysql.sql ${PREFIX}/share/smsd .endif .if defined(WITH_PGSQL) ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.pq.sql ${PREFIX}/share/smsd .endif .endif @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/comms/gnokii/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.85 \ No newline at end of property +1.86 \ No newline at end of property Index: head/converters/ical2html/Makefile =================================================================== --- head/converters/ical2html/Makefile (revision 254794) +++ head/converters/ical2html/Makefile (revision 254795) @@ -1,24 +1,24 @@ # New ports collection makefile for: ical2html # Date created: Thu Apr 14 18:08:52 BST 2005 # Whom: keiichi@iijlab.net # # $FreeBSD$ # PORTNAME= ical2html PORTVERSION= 0.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= converters MASTER_SITES= http://www.w3.org/Tools/Ical2html/ MAINTAINER= keiichi@iijlab.net COMMENT= Manipulation commands for iCalendar files -LIB_DEPENDS= ical.43:${PORTSDIR}/devel/libical +LIB_DEPENDS= ical.44:${PORTSDIR}/devel/libical GNU_CONFIGURE= yes CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include/libical -I${LOCALBASE}/include" \ LDFLAGS=-L${LOCALBASE}/lib .include Property changes on: head/converters/ical2html/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/databases/evolution-data-server/Makefile =================================================================== --- head/databases/evolution-data-server/Makefile (revision 254794) +++ head/databases/evolution-data-server/Makefile (revision 254795) @@ -1,91 +1,92 @@ # New ports collection makefile for: evolution-data-server # Date created: 09 December 2003 # Whom: Joe Marcus Clarke # # $FreeBSD$ # $MCom: ports/databases/evolution-data-server/Makefile,v 1.194 2010/04/26 13:45:12 kwm Exp $ # PORTNAME= evolution-data-server PORTVERSION= 2.30.1 +PORTREVISION= 1 CATEGORIES= databases gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= The data backends for the Evolution integrated mail/PIM suite LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup \ dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - ical.43:${PORTSDIR}/devel/libical \ + ical.44:${PORTSDIR}/devel/libical \ nss3.1:${PORTSDIR}/security/nss \ tasn1.4:${PORTSDIR}/security/libtasn1 \ sqlite3.8:${PORTSDIR}/databases/sqlite3 \ gnome-keyring.0:${PORTSDIR}/security/gnome-keyring USE_BZIP2= yes USE_GMAKE= yes USE_BISON= build USE_GETTEXT= yes USE_GNOME= gnomeprefix gnomehack intlhack ltverhack ltasneededhack gconf2 \ libxml2 USE_OPENLDAP= yes USE_AUTOTOOLS= libtool:22 USE_BDB= 41+ USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-static \ --enable-gnome-keyring=yes \ --with-openldap=yes \ --with-libdb=${LOCALBASE} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" PLIST_SUB= VERSION="2.30" EVO_VERSION="1.2" #OPTIONS= IMAP4 "Enable experimental IMAP4 backend" off OPTIONS= WEATHER "Enable weather calendar backend" on .include .if defined(HEIMDAL_HOME) || defined(WITH_HEIMDAL) || defined(NO_KERBEROS) HEIMDAL_HOME?= ${LOCALBASE} LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} \ --with-krb5-includes=${HEIMDAL_HOME}/include KRB5_LIB= `${HEIMDAL_HOME}/bin/krb5-config gssapi --libs` .elif !defined(NO_KERBEROS) CONFIGURE_ARGS+= --with-krb5=/usr KRB5_LIB= `/usr/bin/krb5-config gssapi --libs` .endif #.if defined(WITH_IMAP4) || defined(PACKAGE_BUILDING) #CONFIGURE_ARGS+= --enable-imap4=yes #PLIST_SUB+= IMAP4="" #.else PLIST_SUB+= IMAP4="@comment " #.endif .if defined(WITH_WEATHER) LIB_DEPENDS+= gweather.1:${PORTSDIR}/net/libgweather CONFIGURE_ARGS+= --with-weather PLIST_SUB+= WEATHER="" .else CONFIGURE_ARGS+= --without-weather PLIST_SUB+= WEATHER="@comment " .endif EDS_BDB_MSG= "!!!WARNING!!!: Berkeley Database version is ${BDB_VER}. If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 41." pre-everything:: @if [ x"${BDB_VER}" != x"41" ]; then \ ${ECHO_MSG} ${EDS_BDB_MSG} | ${FMT} 75 79 ; \ fi post-patch: @${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \ s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g ; \ s|-Wl,--no-undefined||g ; \ s|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure .include Property changes on: head/databases/evolution-data-server/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.73 \ No newline at end of property +1.74 \ No newline at end of property Index: head/deskutils/kdepimlibs4/Makefile =================================================================== --- head/deskutils/kdepimlibs4/Makefile (revision 254794) +++ head/deskutils/kdepimlibs4/Makefile (revision 254795) @@ -1,48 +1,49 @@ # New ports collection Makefile for: kdepimplibs # Date created: 2008-01-20 # Whom: arved # # $FreeBSD$ PORTNAME= kdepimlibs PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Libraries for KDE-PIM applications LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \ sasl2:${PORTSDIR}/security/cyrus-sasl2 \ boost_python:${PORTSDIR}/devel/boost-python-libs \ - ical.43:${PORTSDIR}/devel/libical + ical.44:${PORTSDIR}/devel/libical CONFLICTS= kdepim-runtime-4.3.[1-4] USE_KDE4= kdelibs akonadi kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes USE_QT_VER= 4 QT_COMPONENTS= corelib opengl dbus qt3support \ designer network svg qtestlib help \ qmake_build moc_build rcc_build uic_build USE_OPENLDAP= yes MAKE_JOBS_SAFE= yes .include .if exists(${LOCALBASE}/lib/libgpgme-pth.so) PLIST_SUB+= WITH_PTH='' .else PLIST_SUB+= WITH_PTH='@comment ' .endif post-extract: ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/cmake/modules/*.cmake ${REINPLACE_CMD} -e '/find_package/s,PATHS,PATHS ${KDE4_PREFIX}/lib/cmake/Akonadi,' \ ${PATCH_WRKSRC}/cmake/modules/FindAkonadi.cmake .include Property changes on: head/deskutils/kdepimlibs4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/deskutils/orage/Makefile =================================================================== --- head/deskutils/orage/Makefile (revision 254794) +++ head/deskutils/orage/Makefile (revision 254795) @@ -1,52 +1,52 @@ # New ports collection makefile for: xfce4-calendar # Date created: 2003-01-14 # Whom: Matt Lancereau # # $FreeBSD$ # PORTNAME= orage PORTVERSION= 4.6.1 PORTREVISION= 4 CATEGORIES= deskutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 MAINTAINER= oliver@FreeBSD.org COMMENT= A calendar application to manage your time with XFce 4 GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_BZIP2= yes USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnometarget gtk20 intltool intlhack pkgconfig USE_XFCE= configenv libgui panel USE_XORG= xext xrender xinerama xi xrandr xcursor xcomposite xdamage x11 \ xfixes OPTIONS= BDB "Enable BDB support" off \ ICAL "Enable libical support" off MAN1= globaltime.1 orage.1 .include .if defined(WITH_BDB) CONFIGURE_ARGS+=--with-bdb4=yes --with-bdb4_dir=${LOCALBASE} USE_BDB= 40 .else CONFIGURE_ARGS+=--with-bdb4=no .endif .if defined(WITH_ICAL) -LIB_DEPENDS+= ical.43:${PORTSDIR}/devel/libical +LIB_DEPENDS+= ical.44:${PORTSDIR}/devel/libical .endif post-patch: .if !defined(WITH_ICAL) @${REINPLACE_CMD} -e 's|libical-|no-&|g' ${WRKSRC}/configure .endif @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure .include Property changes on: head/deskutils/orage/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.21 \ No newline at end of property +1.22 \ No newline at end of property Index: head/finance/kmymoney-kde4/Makefile =================================================================== --- head/finance/kmymoney-kde4/Makefile (revision 254794) +++ head/finance/kmymoney-kde4/Makefile (revision 254795) @@ -1,74 +1,74 @@ # New ports collection makefile for: KMyMoney # Date created: 21 June 2004 # Whom: Alexander Novitsky # # $FreeBSD$ # PORTNAME= kmymoney PORTVERSION= 3.97.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance MASTER_SITES= SF/${PORTNAME}2/KMyMoney-KDE4/${PORTVERSION} MAINTAINER= bsdkaffee@gmail.com COMMENT= KDE 4.x-based personal finance manager LIB_DEPENDS= boost_graph.4:${PORTSDIR}/devel/boost-libs USE_BZIP2= yes USE_CMAKE= yes USE_QT_VER= 4 QT_COMPONENTS= gui dbus network phonon qt3support sql svg xml \ qmake_build moc_build rcc_build uic_build USE_KDE4= kdehier kdeprefix automoc4 kdelibs pimlibs sharedmime USE_LDCONFIG= yes USE_GETTEXT= yes MAKE_JOBS_SAFE= yes MAN1= kmymoney.1 OPTIONS= CALENDAR "Enable Calendar plugin" on \ KBANKING "Enable KBanking plugin" off \ OFX "Enable OFX plugin" off \ QUOTES "Enable online price quotes" off .include .if defined(WITH_CALENDAR) -LIB_DEPENDS+= ical.43:${PORTSDIR}/devel/libical +LIB_DEPENDS+= ical.44:${PORTSDIR}/devel/libical CMAKE_ARGS+= -DENABLE_LIBICAL:BOOL=ON PLIST_SUB+= WITH_CALENDAR="" .else CMAKE_ARGS+= -DENABLE_LIBICAL:BOOL=OFF PLIST_SUB+= WITH_CALENDAR="@comment " .endif .if defined(WITH_KBANKING) LIB_DEPENDS+= aqbanking.31:${PORTSDIR}/finance/aqbanking CMAKE_ARGS+= -DENABLE_KBANKING:BOOL=ON PLIST_SUB+= WITH_KBANKING="" .else CMAKE_ARGS+= -DENABLE_KBANKING:BOOL=OFF PLIST_SUB+= WITH_KBANKING="@comment " .endif .if defined(WITH_OFX) LIB_DEPENDS+= ofx.4:${PORTSDIR}/finance/libofx CMAKE_ARGS+= -DENABLE_LIBOFX:BOOL=ON PLIST_SUB+= WITH_OFX="" .else CMAKE_ARGS+= -DENABLE_LIBOFX:BOOL=OFF PLIST_SUB+= WITH_OFX="@comment " .endif .if defined(WITH_QUOTES) USE_PERL5= yes RUN_DEPENDS+= ${SITE_PERL}/Date/Manip.pm:${PORTSDIR}/devel/p5-Date-Manip \ ${SITE_PERL}/Finance/Quote.pm:${PORTSDIR}/finance/p5-Finance-Quote \ ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ ${SITE_PERL}/XML/Writer.pm:${PORTSDIR}/textproc/p5-XML-Writer \ ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww .endif .include Property changes on: head/finance/kmymoney-kde4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.35 \ No newline at end of property +1.36 \ No newline at end of property Index: head/mail/libmapi/Makefile =================================================================== --- head/mail/libmapi/Makefile (revision 254794) +++ head/mail/libmapi/Makefile (revision 254795) @@ -1,74 +1,74 @@ # New ports collection makefile for: libmapi # Date created: 1 May 2009 # Whom: Koop Mast # # $FreeBSD$ # PORTNAME= libmapi PORTVERSION= 0.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= SF MASTER_SITE_SUBDIR=openchange/openchange/openchange-${PORTVERSION}%20${CODENAME}/ DISTNAME= openchange-${PORTVERSION}-${CODENAME} MAINTAINER= kwm@FreeBSD.org COMMENT= Open Source implementation of Microsoft Exchange protocols BUILD_DEPENDS= ${HOSTCONFIG}:${PORTSDIR}/net/samba4-devel \ pidl:${PORTSDIR}/devel/p5-Parse-Pidl LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3 \ - ical.43:${PORTSDIR}/devel/libical \ + ical.44:${PORTSDIR}/devel/libical \ tdb.1:${PORTSDIR}/databases/tdb \ talloc.2:${PORTSDIR}/devel/talloc RUN_DEPENDS= ${HOSTCONFIG}:${PORTSDIR}/net/samba4-devel HOSTCONFIG= ${LOCALBASE}/libdata/pkgconfig/samba-hostconfig.pc CODENAME= COCHRANE USE_GMAKE= yes USE_GNOME= pkgconfig USE_PYTHON= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-samba=${LOCALBASE} OPTIONS= BOOST "Enable libmapi++ (needs boost)" yes \ DOXYGEN "Enble building documentation" no .include CONFIGURE_ARGS+= --disable-swig-perl CONFIGURE_ARGS+= --disable-pymapi .if exists(${LOCALBASE}/lib/libboost_thread.so) WITH_BOOST=yes .endif .if defined(WITH_BOOST) LIB_DEPENDS+= boost_thread.4:${PORTSDIR}/devel/boost-libs PLIST_SUB+= BOOST="" .else PLIST_SUB+= BOOST="@comment " .endif .if defined(WITH_DOXYGEN) || exists(${LOCALBASE}/bin/doxygen) BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen PLIST_SUB+= DOXYGEN="" .else PLIST_SUB+= DOXYGEN="@comment " .endif post-patch: @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g' \ ${WRKSRC}/Makefile post-install: .for i in libmapi libmapiadmin libmapiproxy libmapiserver libmapistore libocpf @${LN} -fs ${PREFIX}/lib/${i}.so.0.9 ${PREFIX}/lib/${i}.so.0 .endfor .include Property changes on: head/mail/libmapi/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/misc/wmcalendar/Makefile =================================================================== --- head/misc/wmcalendar/Makefile (revision 254794) +++ head/misc/wmcalendar/Makefile (revision 254795) @@ -1,43 +1,43 @@ # New ports collection makefile for: wmcalendar # Date created: 24 Apr 2003 # Whom: Alexey Dokuchaev # # $FreeBSD$ # PORTNAME= wmcalendar PORTVERSION= 0.5.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= misc windowmaker MASTER_SITES= SF MAINTAINER= xride@FreeBSD.org COMMENT= A dockable calendar with interface to iCalendar based calendars -LIB_DEPENDS= ical.43:${PORTSDIR}/devel/libical +LIB_DEPENDS= ical.44:${PORTSDIR}/devel/libical WRKSRC= ${WRKDIR}/${DISTNAME}/Src USE_XORG= xpm USE_GNOME= gtk20 MAKE_ARGS= CC="${CC}" \ LFLAGS="`pkg-config --libs gtk+-2.0` -L${LOCALBASE}/lib" \ CFLAGS="${CFLAGS}" \ INCDIR="`pkg-config --cflags gtk+-2.0` -I${LOCALBASE}/include" \ LIBDIR="" \ LIBS="-lical -lXpm" CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" MAN1= wmCalendar.1 PLIST_FILES= bin/wmCalendar post-patch: ${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \ -e 's#/usr/X11R6#${LOCALBASE}#g' \ ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmCalendar ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/wmCalendar.1 ${MANPREFIX}/man/man1 .include Property changes on: head/misc/wmcalendar/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property