1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/graphics/darknock/Makefile
Martin Wilke 1a2f0d274e darknocK detects edges in images, better than any other program. It will be
using Artificial Neural Networks to enchance the results of standard algorithms.
It's a part of My work for My Master degree.

WWW: http://sourceforge.net/projects/darknock/

PR:		ports/115214
Submitted by:	Yinghong.Liu <relaxbsd at gmail.com>
2007-08-20 15:45:07 +00:00

60 lines
1.4 KiB
Makefile

# New ports collection makefile for: darknock
# Date created: 5 August 2007
# Whom: Yinghong.Liu <relaxbsd@gmail.com>
#
# $FreeBSD$
#
PORTNAME= darknock
DISTVERSION= 0.2.7
CATEGORIES= graphics kde
MASTER_SITES= SF
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
MAINTAINER= relaxbsd@gmail.com
COMMENT= A program that can detect edges in images
USE_QT_VER= 4
QT_COMPONENTS= qmake_build moc_build rcc_build uic_build linguist_build gui
WRKSRC= ${WRKDIR}/${PORTNAME}
LRELEASE= ${QT_PREFIX}/bin/lrelease-qt4
PORTDOCS= changelog copyright
.if !defined(WITHOUT_NLS)
PLIST_SUB+= NLS=""
.else
PLIST_SUB+= NLS="@comment "
.endif
DESKTOP_ENTRIES= "${PORTNAME}" \
"${COMMENT}" \
"${PORTNAME}" \
"${PORTNAME}" \
"Qt;KDE;Graphics;" \
"false"
post-patch:
@${REINPLACE_CMD} -e 's|/usr/share/darknock|${DATADIR}|g' \
${WRKSRC}/src/main.cpp
pre-build:
@${LRELEASE} ${BUILD_WRKSRC}/${PORTNAME}.pro
@cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${QMAKE} -spec ${QMAKESPEC}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
@${INSTALL_DATA} ${WRKSRC}/images/${PORTNAME}.png ${PREFIX}/share/pixmaps
.if !defined(WITHOUT_NLS)
@${MKDIR} ${DATADIR}/locale
@${INSTALL_DATA} ${WRKSRC}/locale/*.qm ${DATADIR}/locale
.endif
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>