mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
- Handle user account creation via Makefile rather than pkg-install - Handle permissions and ownerships via pkg-plist - USE_* -> USES - Add LICENSE - Bump PORTREVISION PR: 190972 Submitted by: ports@encarnate.com (maintainer) Reviewed by: maintainer Approved by: maintainer, mentors (implicit)
19 lines
646 B
Text
19 lines
646 B
Text
--- tools/Makefile.am.orig 2008-08-18 14:32:19.000000000 +0200
|
|
+++ tools/Makefile.am 2014-06-14 22:45:13.793133353 +0200
|
|
@@ -43,7 +43,7 @@
|
|
|
|
## SOURCES
|
|
ccdv: $(top_srcdir)/tools/ccdv.c
|
|
- gcc $(AM_CFLAGS) $(CFLAGS) -o ccdv $(top_srcdir)/tools/ccdv.c
|
|
+ $(CC) $(AM_CFLAGS) $(CFLAGS) -o ccdv $(top_srcdir)/tools/ccdv.c
|
|
|
|
cl_status_SOURCES = cl_status.c
|
|
# A little trick. Now ccdv can be auto-built but not auto-cleaned.
|
|
@@ -85,7 +85,5 @@
|
|
$(LIBRT)
|
|
|
|
install-data-hook: # install-exec-hook doesn't work (!)
|
|
- -chgrp $(apigid) $(DESTDIR)/$(habindir)/cl_status
|
|
- -chmod g+s,a-w $(DESTDIR)/$(habindir)/cl_status
|
|
|
|
.PHONY: install-exec-hook
|