mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
2a58169b19
I am not touching the husky ports with a 10 foot pole. atp: stage, improve pkg-message crashmail: stage diablo: too wacky to stage, but convert WITH_* to OPTIONS, unmute commands that shouldn't be muted, use :MDOCS fidogate-ds: stage, OPTIONS, treat examples as EXAMPLES, not DOCS, handle /var/* in the plist properly golded+: stage, OPTIONS, protect examples behind %%PORTEXAMPLES%% nntpbtr: this was an unbelievably PITA stage, add missing prototypes, add missing return types, rename patch files to what they actually patch nntpcache: stage support, required lots of Makefile.in patching, call submakes correctly, handle config files properly nzbperl: stage, use OPTIONS, remove obsolete pkg-message papercut: stage, handle config file properly py-pynzb: stage, use OPTIONS helper to avoid bsd.port.options.mk inclusion s-news: stage slrnconf: stage slrnface: stage, install required files to datadir, not examplesdir, generate proper pkg-message sn: stage
26 lines
584 B
Makefile
26 lines
584 B
Makefile
# Created by: dk
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nntpbtr
|
|
PORTVERSION= 1.7
|
|
CATEGORIES= news
|
|
MASTER_SITES= ftp://ftp.kiarchive.ru/pub/unix/news/
|
|
|
|
MAINTAINER= dk@farm.org
|
|
COMMENT= NNTP bulk transfer
|
|
|
|
USES= tar:Z
|
|
PLIST_FILES= sbin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
pre-build:
|
|
(cd ${FILESDIR} ; ${PAX} -rw -l -u dbz ${WRKDIR}) || ${TRUE}
|
|
(cd ${WRKDIR}/dbz ; ${CC} ${CFLAGS} -c -I. dbz.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|