mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
344b32ccd9
- Enforce the now clarified rules from the Porter's Handbook (e.g. no dots, no A/An, etc.)
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# New ports collection makefile for: slrnconf
|
|
# Date created: 13 Jun 2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= slrnconf
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 5
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://home.arcor.de/kaffeetisch/downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphical configuration utility for the newsreader slrn
|
|
|
|
BUILD_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \
|
|
p5-Parse-RecDescent>=0:${PORTSDIR}/devel/p5-Parse-RecDescent
|
|
|
|
USE_BZIP2= yes
|
|
USE_PERL5= yes
|
|
MAKE_ARGS+= PREFIX=${PREFIX}
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}/help
|
|
@${INSTALL_DATA} ${WRKSRC}/help/* ${DATADIR}/help
|
|
@${MKDIR} ${DATADIR}/data
|
|
@${INSTALL_DATA} ${WRKSRC}/data/* ${DATADIR}/data
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/slrnconf ${PREFIX}/bin
|
|
.for i in preferences.pm rc_grammar.pm ui.pm
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DATADIR}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ABOUT COPYING README
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|