blob: c169a238f0edbffa90d0720a959d7ae63429d837 (
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
|
# Created by: Peter Schmiedeskamp <pschmied@qwest.net>
# $FreeBSD$
PORTNAME= libexif
PORTVERSION= 0.6.21
CATEGORIES= graphics
MASTER_SITES= SF
MAINTAINER= marius@nuenneri.ch
COMMENT= Library to read digital camera file meta-data
LICENSE= LGPL21
USE_BZIP2= yes
USE_GNOME= gnomehack ltverhack
USE_GMAKE= yes
USE_PKGCONFIG= yes
USE_AUTOTOOLS= libtool
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --disable-docs
USE_LDCONFIG= yes
PORTDOCS= AUTHORS ChangeLog NEWS README
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ENV+= am_cv_func_iconv=no
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e '/^SUBDIRS =/s|doc||g ; \
/^am__installdirs =/s|$$(docdir)||g ; \
/^install-data-am:/s|install-docDATA||g' ${WRKSRC}/Makefile.in
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|