diff options
author | asami <asami@FreeBSD.org> | 1996-06-03 08:28:05 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-06-03 08:28:05 +0800 |
commit | ef89cf7f555767f539bcfd5000e9f888dfc95a49 (patch) | |
tree | 737703e6fd025f36a4547f8838117e5089713973 /news | |
parent | f6260f47ce77e68d2b2f117955c18fab0e6839b2 (diff) | |
download | freebsd-ports-gnome-ef89cf7f555767f539bcfd5000e9f888dfc95a49.tar.gz freebsd-ports-gnome-ef89cf7f555767f539bcfd5000e9f888dfc95a49.tar.zst freebsd-ports-gnome-ef89cf7f555767f539bcfd5000e9f888dfc95a49.zip |
Makefile cleanup.
(1) Add $Id$.
(2) Reorder variables. Remove unnecessary PKGNAME (was ==DISTNAME).
(3) Remove spurious comments about MAINTAINER, it's funny to if you
look at the diff between 0.9.5 and 0.9.6 though.
(4) Remove unnecessary "IS_INTERACTIVE=no", that is a binary (set/unset)
variable so it actually meant "yes" (and I'm sure that's not what
Andreas meant).
Diffstat (limited to 'news')
-rw-r--r-- | news/knews/Makefile | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/news/knews/Makefile b/news/knews/Makefile index 9b7c56cc3f7d..a270f937b114 100644 --- a/news/knews/Makefile +++ b/news/knews/Makefile @@ -3,31 +3,24 @@ # Date created: Sun Apr 14 09:23:59 MET DST 1996 # Whom: Andreas Klemm <andreas@knobel.gun.de> # +# $Id$ # DISTNAME= knews-0.9.6 -PKGNAME= knews-0.9.6 -CATEGORIES+= x11 -CATEGORIES+= news +CATEGORIES+= x11 news +MASTER_SITES= ftp://ftp.nada.kth.se/home/su95-kjo/knews/ \ + ftp://sunsite.unc.edu/pub/Linux/X11/xapps/networked/ \ + ftp://ftp.cc.gatech.edu/ac88/linux/X11/xapps/networked/ \ + ftp://ftp.germany.eu.net/pub/os/Linux/Mirror.SunSITE/X11/xapps/networked/ \ + ftp://ftp.funet.fi/pub/mirrors/sunsite.unc.edu/pub/Linux/X11/xapps/networked/ -LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm - -MASTER_SITES+= ftp://ftp.nada.kth.se/home/su95-kjo/knews/ -MASTER_SITES+= ftp://sunsite.unc.edu/pub/Linux/X11/xapps/networked/ -MASTER_SITES+= ftp://ftp.cc.gatech.edu/ac88/linux/X11/xapps/networked/ -MASTER_SITES+= ftp://ftp.germany.eu.net/pub/os/Linux/Mirror.SunSITE/X11/xapps/networked/ -MASTER_SITES+= ftp://ftp.funet.fi/pub/mirrors/sunsite.unc.edu/pub/Linux/X11/xapps/networked/ - -# perhaps Andreas is going to maintain it personally some day... :) -#MAINTAINER= joerg -# this time ;-) MAINTAINER= andreas@knobel.gun.de +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm + WRKSRC= ${WRKDIR}/knews USE_IMAKE= yes MAKE_FLAGS= BINDIR=${PREFIX}/bin MANDIR=${PREFIX}/man/man1 \ XAPPLOADDIR=${PREFIX}/lib/X11/app-defaults -f -IS_INTERACTIVE= no - .include <bsd.port.mk> |