mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
6910bf819a
these ports [1] - Trim headers - Remove indefinite article from COMMENT - Convert tab to space in WWW lines PR: ports/175415 [1] Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> [1] Discussed with: bapt
37 lines
963 B
Makefile
37 lines
963 B
Makefile
# Created by: 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= c.petrik.sosa@gmail.com
|
|
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>
|