289883b11b
* Add PKGNAMESUFFIX and rename the directory. This was done to show that IM6 is not the "main" version. But still fully supported by upstream. * Convert a number of options to optionhelpers. * Add option for ISO/IEC 23008-12:2017 HEIF suport * Add comment to pkg-descr explaining IM6's "legacy" tag. * Add comment to the patch-config_policy.xml file why it still needed. Please note that IM7 is not a drop in replacement due to library API and command arguments changes. And as a result ports need to decide for themself which version to use. Chase these changes in all the ports that using IM6. PR: 225102 (based on, only the version update) [1] Submitted by: Pascal Christen <pascal.christen@hostpoint.ch>
33 lines
810 B
Makefile
33 lines
810 B
Makefile
# Created by: Geoffrey Mainland <mainland@apeiron.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= latex
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 10
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= SF/pidgin-${PORTNAME}/pidgin-${PORTNAME}/${PORTVERSION}
|
|
PKGNAMEPREFIX= pidgin-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= mainland@apeiron.net
|
|
COMMENT= Display LaTeX output in your IMs
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/pidgin/pidgin.h:net-im/pidgin
|
|
RUN_DEPENDS= pidgin:net-im/pidgin \
|
|
convert:graphics/ImageMagick6
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
USES= gmake pkgconfig tar:bzip2
|
|
USE_TEX= latex
|
|
USE_GNOME= gtk20
|
|
MAKE_ARGS= CC="${CC}"
|
|
|
|
PLIST_FILES= lib/pidgin/LaTeX.so
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
${INSTALL_LIB} ${WRKSRC}/LaTeX.so ${STAGEDIR}${PREFIX}/lib/pidgin
|
|
|
|
.include <bsd.port.mk>
|