mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
373e3f7407
organize your everyday text notes into a single document with individual notes placed into a tree-like structure. To ensure your privacy an encrypted document format is supported along with a standard unencrypted one. WWW: http://notecase.sourceforge.net/ PR: ports/114730 Submitted by: Yinghong.Liu <relaxbsd@gmail.com>
36 lines
738 B
Makefile
36 lines
738 B
Makefile
# New ports collection makefile for: notecase
|
|
# Date created: 19 July 2007
|
|
# Whom: Yinghong.Liu <relaxbsd@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= notecase
|
|
PORTVERSION= 1.5.8
|
|
CATEGORIES= deskutils textproc
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}_src
|
|
|
|
MAINTAINER= relaxbsd@gmail.com
|
|
COMMENT= A hierarchical text notes manager
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20 gnomevfs2 desktopfileutils
|
|
USE_GETTEXT= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET= install docinstall
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|prefix=/usr|prefix=${PREFIX}|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
@-update-mime-database ${PREFIX}/share/mime
|
|
@-update-desktop-database
|
|
|
|
.include <bsd.port.mk>
|