diff options
author | wiz <wiz@pkgsrc.org> | 2003-01-13 13:21:07 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-01-13 13:21:07 +0000 |
commit | 559a1407a0f88378b5befacab285eddb5817199a (patch) | |
tree | 63a61bdfe164a2aa6814dbf112469fbfb2f2cdff /comms/jpilot-syncmal/Makefile | |
parent | bf10ec37349ab253350664a155bab4a3c737accc (diff) | |
download | pkgsrc-559a1407a0f88378b5befacab285eddb5817199a.tar.gz |
Update to 0.71, makes it compile again with latest jpilot.
Changes since 0.60:
0.71 - 4/27/2002
- Support for pilot-link 0.10
- syncmal.c now includes errno.h
-- Thanks to Renaud Pacalet and Ludovic Rousseau, both of whom pointed out
these errors and how to fix them
- Added GPL exception text to the boilerplate in libplugin.h and prefs.h,
with Judd's permission
0.70 - 4/7/2002
- Distribution now includes necessary J-Pilot headers (libplugin.h and
prefs.h) and malsync-2.0.7 source.
- Updated README for vastly simplified build instructions
- Added jpilot-syncmal.spec
0.62.2 - 2/7/2002
- Updated prefs code to use the new API (J-Pilot 0.99.2 and later)
0.62 - 5/9/2001
- Fixed a typo in skip_sync which would cause it to fail if any interval
other than always was selected. Thanks to Chris Bagwell for identifying
this bug.
0.61 - 3/3/2001 Very minor changes
- Fix an error in configure.in which caused the build to fail on Solaris
- Added some comments to syncmal.c
Diffstat (limited to 'comms/jpilot-syncmal/Makefile')
-rw-r--r-- | comms/jpilot-syncmal/Makefile | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/comms/jpilot-syncmal/Makefile b/comms/jpilot-syncmal/Makefile index 8083a280fac..ae756cb33d4 100644 --- a/comms/jpilot-syncmal/Makefile +++ b/comms/jpilot-syncmal/Makefile @@ -1,15 +1,12 @@ -# $NetBSD: Makefile,v 1.12 2002/09/21 07:25:02 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2003/01/13 13:21:07 wiz Exp $ -DISTNAME= jpilot-syncmal_0.60 -PKGNAME= jpilot-syncmal-0.60 -PKGREVISION= 1 +DISTNAME= jpilot-syncmal_0.71 +PKGNAME= jpilot-syncmal-0.71 CATEGORIES= comms -MASTER_SITES= http://people.atl.mediaone.net/jasonday/code/syncmal/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -DISTFILES+= malsync_2.0.5.src${EXTRACT_SUFX} +MASTER_SITES= http://jasonday.home.att.net/code/syncmal/ MAINTAINER= jlam@netbsd.org -HOMEPAGE= http://people.atl.mediaone.net/jasonday/code/syncmal/syncmal.html +HOMEPAGE= http://jasonday.home.att.net/code/syncmal/syncmal.html COMMENT= MAL synchronization plugin for J-Pilot BUILDLINK_DEPMETHOD.jpilot= full @@ -19,22 +16,18 @@ USE_X11= # defined USE_GMAKE= # defined USE_LIBTOOL= # defined -LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +SHLIBTOOL_OVERRIDE= ${WRKSRC}/libtool GNU_CONFIGURE= # defined -CONFIGURE_ARGS+= --with-gtk-prefix="${BUILDLINK_PREFIX.gtk}" -CONFIGURE_ARGS+= --with-mal-source="${WRKSRC}/../malsync" -CONFIGURE_ARGS+= --with-plugin-prefix="${BUILDLINK_PREFIX.jpilot}/include/jpilot" -CONFIGURE_ARGS+= --with-pilot-prefix="${BUILDLINK_PREFIX.pilot-link-libs}" - +CONFIGURE_ARGS+= --with-gtk-prefix=${BUILDLINK_PREFIX.gtk} +CONFIGURE_ARGS+= --with-plugin-prefix=${BUILDLINK_PREFIX.jpilot}/include/jpilot +CONFIGURE_ARGS+= --with-pilot-prefix=${BUILDLINK_PREFIX.pilot-link-libs} +MAKE_ENV+= PILOT_LINK_DIR=${BUILDLINK_PREFIX.pilot-link-libs} CFLAGS+= -D__unix__=1 PLUGINSDIR= ${PREFIX}/lib/jpilot/plugins PLIST_SUBST+= PLUGINSDIR=${PLUGINSDIR:S/${PREFIX}\///} -do-install: - ${INSTALL_DATA} ${WRKSRC}/.libs/libsyncmal.so ${PLUGINSDIR} - .include "../../comms/jpilot/buildlink2.mk" .include "../../comms/pilot-link-libs/buildlink2.mk" |