62f3ca1ad9
- Update to version 0.4.1 - Drop shlib versions in LIB_DEPENDS - Define LICENSE (GPLv2) - Cleanup Makefile and port description graphics/shotwell (gexiv2 consumer): - Bump port revision (chase gexiv2 update) - Drop shlib versions in LIB_DEPENDS - Define LICENSE (LGPL21) - Provide a better port description - Nota bene: version 0.13.1 is available Feature safe: yes Approved by: maintainer timeout
34 lines
786 B
Makefile
34 lines
786 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gexiv2
|
|
PORTVERSION= 0.4.1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://yorba.org/download/${PORTNAME}/${PORTVERSION:R}/
|
|
DISTNAME= libgexiv2-${PORTVERSION}
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
COMMENT= GObject-based wrapper around Exiv2 library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool \
|
|
gm4:${PORTSDIR}/devel/m4
|
|
LIB_DEPENDS= exiv2:${PORTSDIR}/graphics/exiv2
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= glib20
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_PKGCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E \
|
|
-e 's|^([[:space:]]+)m4[[:space:]]|\1gm4 |' \
|
|
-e 's|\$$\(LIB\)/pkgconfig|libdata/pkgconfig|' \
|
|
${WRKSRC}/${MAKEFILE}
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/share/vala/vapi
|
|
|
|
.include <bsd.port.mk>
|