diff options
author | tijl <tijl@FreeBSD.org> | 2014-05-18 00:57:14 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-05-18 00:57:14 +0800 |
commit | 28e42c75bcdfdc70a96743cb31f866dc008a24dd (patch) | |
tree | eae79d4f3cebba3d0e91ecad3c25f200503106b5 /net-im/pidgin-latex | |
parent | f084098040cd9061d9bb36e65f8cb0abd8cf4f76 (diff) | |
download | freebsd-ports-gnome-28e42c75bcdfdc70a96743cb31f866dc008a24dd.tar.gz freebsd-ports-gnome-28e42c75bcdfdc70a96743cb31f866dc008a24dd.tar.zst freebsd-ports-gnome-28e42c75bcdfdc70a96743cb31f866dc008a24dd.zip |
Convert net-im/libpurple (and slave ports net-im/finch and net-im/pidgin)
to "USES=libtool tar:bzip2". Bump PORTREVISION on all dependent ports
and modernise them as well (USES, LIB_DEPENDS, staging).
audio/pidgin-musictracker:
- Replace LIBS with LDFLAGS.
- Disable static plugin.
net/online-desktop: Remove obsolete patches.
net-im/mbpurple:
- Drop pkgconf dependency.
- Replace post-patch with MAKE_ARGS.
- Use standard do-build.
net-im/pidgin-audacious-remote: Disable static plugin.
net-im/pidgin-birthday-reminder: Disable static plugin.
net-im/pidgin-fetion: Replace pkg-plist with PLIST_FILES.
net-im/pidgin-guifications:
- Drop USE_GNOME=gnomeprefix.
- Replace LIBS with LDFLAGS.
net-im/pidgin-hotkeys:
- Drop CFLAGS=-fPIC.
- Fix build on systems without gcc.
net-im/pidgin-libnotify:
- Use option helpers.
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
net-im/pidgin-manualsize: Fix build on systems without gcc.
net-im/pidgin-privacy-please:
- Replace a patch with CPPFLAGS and LDFLAGS.
- Don't use USE_LDCONFIG for a plugin.
net-im/pidgin-sipe:
- Don't use USE_LDCONFIG for a plugin.
- Drop PORTDOCS that don't contain useful documentation.
- Patch configure with s/LDLAGS/LDFLAGS/ so LDFLAGS can replace LIBS.
- Use option helpers and fix Kerberos option.
- Remove obsolete CONFIGURE_ENV.
security/pidgin-encryption:
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
- Disable static plugin.
- Use option helpers.
security/pidgin-otr:
- Drop redundant comment about PORTREVISION.
- Add USE_GNOME=gtk20.
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
- Port uses stack protector unconditionally so link with -lssp_nonshared
when necessary like Mk/bsd.ssp.mk does.
Approved by: portmgr (PORTREVISION bump on unstaged port)
Diffstat (limited to 'net-im/pidgin-latex')
-rw-r--r-- | net-im/pidgin-latex/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/net-im/pidgin-latex/Makefile b/net-im/pidgin-latex/Makefile index 184fa16fcbeb..55b211725683 100644 --- a/net-im/pidgin-latex/Makefile +++ b/net-im/pidgin-latex/Makefile @@ -3,7 +3,7 @@ PORTNAME= latex PORTVERSION= 1.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net-im MASTER_SITES= SF/pidgin-${PORTNAME}/pidgin-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= pidgin- @@ -18,16 +18,15 @@ RUN_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin \ WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME} -CFLAGS+= "-fPIC" -USES= gmake pkgconfig +USES= gmake pkgconfig tar:bzip2 USE_TEX= latex USE_GNOME= gtk20 -USE_BZIP2= yes +MAKE_ARGS= CC=${CC} PLIST_FILES= lib/pidgin/LaTeX.so -NO_STAGE= yes do-install: - ${INSTALL_DATA} ${WRKSRC}/LaTeX.so ${PREFIX}/lib/pidgin + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/pidgin + ${INSTALL_LIB} ${WRKSRC}/LaTeX.so ${STAGEDIR}${PREFIX}/lib/pidgin .include <bsd.port.mk> |