mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
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)
33 lines
854 B
Makefile
33 lines
854 B
Makefile
# Created by: Junji NAKANISHI <jun-g@daemonfreaks.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pidgin-twitter
|
|
PORTVERSION= 0.9.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= http://www.honeyplanet.jp/
|
|
|
|
MAINTAINER= jun-g@daemonfreaks.com
|
|
COMMENT= Pidgin plugin to help twitting via pidgin
|
|
|
|
BUILD_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin
|
|
RUN_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin
|
|
|
|
USES= gmake pkgconfig
|
|
USE_GNOME= glib20 libxml2
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= lib/pidgin/pidgin-twitter.so \
|
|
${DATADIR_REL}/prefs.ui
|
|
PLIST_DIRS= ${DATADIR_REL}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-Werror||g' ${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
${INSTALL_LIB} ${WRKSRC}/pidgin-twitter.so ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/prefs.ui ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|