blob: 3f5af8e655c68cc21033864d580067d5f2dbe191 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# New ports collection makefile for: libextractor
# Date created: 25 May 2005
# Whom: kevlo@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= libextractor
PORTVERSION= 0.5.20b
PORTREVISION= 3
CATEGORIES= textproc
MASTER_SITES= http://gnunet.org/libextractor/download/
MAINTAINER= vd@FreeBSD.org
COMMENT= Library for keyword extraction
LIB_DEPENDS= mpeg2:${PORTSDIR}/multimedia/libmpeg2
USE_GNOME= glib20
USE_PYTHON= yes
USE_AUTOTOOLS= libltdl:15
USE_DOS2UNIX= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= ${PREFIX}/lib/libextractor
CONFIGURE_ARGS= --disable-ltdl-install --enable-exiv2
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude libltdl
MAN1= extract.1
MAN3= libextractor.3
post-patch:
@${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
${WRKSRC}/src/plugins/Makefile.* \
${WRKSRC}/src/plugins/exiv2/Makefile.* \
${WRKSRC}/src/plugins/rpm/Makefile.*
@${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|^#ifdef EXV_HAVE_STDINT_H$$|#if EXV_HAVE_STDINT_H|' \
${WRKSRC}/src/plugins/exiv2/types.hpp
check: build
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check)
# this thing depends on install
#regression-test: check
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/wand/magick-wand.h)
LIB_DEPENDS+= MagickWand.2:${PORTSDIR}/graphics/ImageMagick
.endif
.if exists(${LOCALBASE}/include/vorbis/vorbisfile.h)
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
PLIST_SUB+= VORBIS=""
.else
PLIST_SUB+= VORBIS="@comment "
.endif
patch-autotools::
@(cd ${PATCH_WRKSRC}; \
for file in ${LIBTOOLFILES}; do \
${CP} $$file $$file.tmp; \
${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \
$$file.tmp > $$file; \
${RM} $$file.tmp; \
done);
.include <bsd.port.post.mk>
|