1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Add staging support

This commit is contained in:
Pawel Pekala 2014-06-04 11:50:45 +00:00
parent 59975d569b
commit dcebf31120
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=356473
2 changed files with 10 additions and 11 deletions

View File

@ -12,12 +12,9 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Program for generating various statistics on emails
MAN1= mls.1
MANCOMPRESSED= yes
PLIST_FILES= bin/mls
PLIST_FILES= bin/mls man/man1/mls.1.gz
MAKE_ARGS+= DESTDIR="${PREFIX}" CC="${CC}" CFLAGS="${CFLAGS}"
MAKE_ARGS+= CC="${CC}" CFLAGS="${CFLAGS}"
ALL_TARGET= mls
NO_STAGE= yes
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- Makefile.orig Sat Feb 15 05:16:21 2003
+++ Makefile Mon Apr 21 23:18:27 2003
--- Makefile.orig 2003-06-10 22:26:51.000000000 +0200
+++ Makefile 2014-06-04 13:39:49.442936071 +0200
@@ -5,13 +5,13 @@
# -m386 (486,pentium,pentiumpro)
@ -16,14 +16,16 @@
CFLAGS=-Wall $(OPTIMIZE) $(DEBUG)
LIBS=-lm
CC=gcc
@@ -31,8 +31,8 @@
@@ -37,9 +37,9 @@
$(CC) $(CFLAGS) -c mls_text.c -o mls_text.o
install: mls
- install -m 755 -g root -o root -s mls $(DESTDIR)/bin
- install -m 644 -g root -o root mls.1 $(DESTDIR)/man/man1
+ install -m 755 -g wheel -o root -s mls $(DESTDIR)/bin
+ install -m 644 -g wheel -o root mls.1 $(DESTDIR)/man/man1
gzip -9f $(DESTDIR)/man/man1/mls.1
- gzip -9f $(DESTDIR)/man/man1/mls.1
+ $(BSD_INSTALL_PROGRAM) mls $(DESTDIR)$(PREFIX)/bin
+ $(BSD_INSTALL_MAN) mls.1 $(DESTDIR)$(PREFIX)/man/man1
+ gzip -9f $(DESTDIR)$(PREFIX)/man/man1/mls.1
@echo "**************************************************************"
@echo "*** To use HTML feature or PHP wrapper, copy contents of ***"
@echo "*** 'html' subdirectory to location accessible by your ***"