blob: d028582e0a8c08a5a092248a17bfa17f016bd88b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.15 2012/10/23 19:50:59 asau Exp $
DISTNAME= dog-1.7
PKGREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://jl.photodex.com/dog/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://jl.photodex.com/dog/
COMMENT= Dog writes the contents of each given file, URL, or stdin
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
USE_TOOLS+= gmake
BUILD_TARGET= dog
.include "../../mk/bsd.prefs.mk"
LDFLAGS.SunOS+= -lsocket -lnsl
.if ${OPSYS} == "SunOS" || ${OPSYS} == "Interix"
MAKE_ENV+= OBJS="getopt.o getopt1.o"
.endif
.include "../../mk/bsd.pkg.mk"
|