mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
4f7ba00ac9
A big Thank You to the original contributors of these ports: * Adam David <adam@FreeBSD.org> * Ade Lovett <ade@FreeBSD.org> * Andreas Klemm <andreas@klemm.gtn.com> * Andrey Slusar <anray@FreeBSD.org> * Brian Somers <brian@FreeBSD.org> * Carey Jones <mcj@acquiesce.org> * David O'Brien (obrien@cs.ucdavis.edu) * Denis Shaposhnikov <dsh@vlink.ru> * Don Croyle <croyle@gelemna.org> * Donald Burr <dburr@FreeBSD.org> * Frederic Cambus * George Sorsby <george@crackpipe.net> * James FitzGibbon <jfitz@FreeBSD.org> * Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> * Joe Marcus Clarke <marcus@FreeBSD.org> * John Holland <john@zoner.org> * Jun-ichiro itojun Itoh <itojun@itojun.org> * Kirill Ponomarew <ponomarew@oberon.net> * Lasse L. Johnsen (lasse@freebsdcluster.org) * Lewis Thompson <purple@lewiz.net> * Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> * Max Khon * Michael L. Hostbaek <mich@freebsdcluster.org> * Mikolaj Rydzewski <miki@ceti.pl> * Noritaka Ishizumi <graphite@taurus.bekkoame.or.jp> * Oliver Braun <obraun@informatik.unibw-muenchen.de> * Pete Fritchman <petef@databits.net> * Ralf van der Enden <tremere@cainites.net> * Sergey Skvortsov <skv@protey.ru> * Thierry Thomas <tthomas@mail.dotcom.fr> * Tim Welch <ports@thepentagon.org> * Yen-Ming Lee <leeym@FreeBSD.org> * Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw> * adam * asaddi@philosophysw.com * bkhl@elektrubadur.se * gary@hayers.org * ijliao * kbowling * obrien@cs.ucdavis.edu * proff@suburbia.net * smace * torstenb With hat: portmgr
26 lines
562 B
Makefile
26 lines
562 B
Makefile
PORTNAME= newsfetch
|
|
PORTVERSION= 1.21
|
|
PORTREVISION= 2
|
|
CATEGORIES= news
|
|
MASTER_SITES= SUNSITE/system/news/readers
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Download news articles from NNTP server
|
|
|
|
MAKE_ENV= BINDIR="${PREFIX}/bin" MANDIR="${PREFIX}/man/man"
|
|
|
|
USES= dos2unix uidfix
|
|
DOS2UNIX_GLOB= *.c
|
|
CFLAGS+= -Wno-return-type
|
|
PLIST_FILES= bin/newsfetch \
|
|
man/man1/newsfetch.1.gz
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC} && ( \
|
|
${ECHO_CMD} "PROG= newsfetch"; \
|
|
${ECHO_CMD} "SRCS=" *.c; \
|
|
${ECHO_CMD} ".include <bsd.prog.mk>"; \
|
|
) > Makefile)
|
|
|
|
.include <bsd.port.mk>
|