diff --git a/sysutils/fortunelock/Makefile b/sysutils/fortunelock/Makefile index 1f9f455cfdc2..29b2ab9c0728 100644 --- a/sysutils/fortunelock/Makefile +++ b/sysutils/fortunelock/Makefile @@ -1,14 +1,15 @@ PORTNAME= fortunelock PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= LOCAL/dannyboy MAINTAINER= ports@FreeBSD.org COMMENT= Locks a terminal while showing fortunes USES= ncurses tar:bzip2 MAKE_ARGS= LIBS="${LDFLAGS} -lncurses" -PLIST_FILES= bin/fortunelock man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/fortunelock share/man/man1/${PORTNAME}.1.gz .include diff --git a/sysutils/fortunelock/files/patch-Makefile b/sysutils/fortunelock/files/patch-Makefile index d6fdac07c8a0..028f49eb09e5 100644 --- a/sysutils/fortunelock/files/patch-Makefile +++ b/sysutils/fortunelock/files/patch-Makefile @@ -1,28 +1,28 @@ --- Makefile.orig 2000-04-21 05:15:07.000000000 +0800 +++ Makefile 2013-11-09 19:38:12.000000000 +0800 @@ -1,10 +1,10 @@ -CC=gcc -CFLAGS=-O3 +CC?=gcc +CFLAGS?=-O3 #CFLAGS=-O3 -Wall -Wtraditional -Wstrict-prototypes -Wmissing-prototypes -pedantic -ansi #CFLAGS=-g -Wall -Wtraditional -Wstrict-prototypes -Wmissing-prototypes -pedantic -ansi TARGET=fortunelock LIBS=-lncurses -PREFIXDIR=/usr/local +PREFIX?=/usr/local all: $(TARGET) @@ -19,8 +19,8 @@ fortunelock.o: fortunelock.c fortunelock install: strip fortunelock - install -m 755 fortunelock $(PREFIXDIR)/bin - install -m 644 fortunelock.1 $(PREFIXDIR)/man/man1 + install -c -m 755 fortunelock $(DESTDIR)$(PREFIX)/bin -+ install -c -m 644 fortunelock.1 $(DESTDIR)$(PREFIX)/man/man1 ++ install -c -m 644 fortunelock.1 $(DESTDIR)$(PREFIX)/share/man/man1 uninstall: - rm -rf $(PREFIXDIR)/bin/fortunelock + rm -rf $(PREFIX)/bin/fortunelock