forked from Lainports/freebsd-ports
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
917 B
Makefile
41 lines
917 B
Makefile
# New ports collection makefile for: fprint_demo
|
|
# Date created: April 12 2008
|
|
# Whom: barner
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fprint_demo
|
|
PORTVERSION= 0.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= fprint
|
|
|
|
MAINTAINER= barner@FreeBSD.org
|
|
COMMENT= Demo and test application for libfprint
|
|
|
|
LIB_DEPENDS= fprint:${PORTSDIR}/security/libfprint
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= atk glib20 gtk20 pango pkgconfig
|
|
|
|
PLIST_FILES+= bin/fprint_demo
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ENV+= CRYPTO_CFLAGS=-I${OPENSSLINC} \
|
|
CRYPTO_LIBS=-lcrypto \
|
|
CFLAGS="${CFLAGS} -DHAVE_MEMMEM"
|
|
|
|
post-install:
|
|
@${ECHO}
|
|
@${ECHO} =========================================================================
|
|
@${ECHO}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO}
|
|
@${ECHO} =========================================================================
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.post.mk>
|