mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
718f64b85e
gaddr is a simple address book written using the GTK+ widget set that basically acts like a pile of alphabetized 3x5 index cards. PR: 13018
18 lines
371 B
Plaintext
18 lines
371 B
Plaintext
--- Makefile.in.orig Sun Aug 8 11:12:01 1999
|
|
+++ Makefile.in Sun Aug 8 11:14:15 1999
|
|
@@ -1,7 +1,7 @@
|
|
# Makefile for gaddr
|
|
# Cory Lueninghoener 1999 (cluenin1@bigred.unl.edu)
|
|
|
|
-CC=gcc
|
|
+CC?=gcc
|
|
#CC=cc
|
|
#DEBUG=--debug
|
|
|
|
@@ -28,4 +28,4 @@
|
|
rm -f gaddr
|
|
|
|
install: gaddr
|
|
- cp gaddr /usr/X11R6/bin/gaddr
|
|
+ @/usr/bin/install -c -o 0 -g 0 -s -m 755 gaddr ${PREFIX}/bin
|