mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
4416dfd133
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> Approved by: port's maintainer - Fix CATEGORIES/LIB_DEPENDS - Support CC/CFLAGS/PREFIX properly - Support imlib-config - Add USE_X_PREFIX - Remove USE_GMAKE - Move post-install message to pkg/MESSAGE - Add WWW: line and remove version number from pkg/DESCR
44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
--- Makefile.orig Sat Sep 25 01:57:55 1999
|
|
+++ Makefile Sun Feb 20 21:41:12 2000
|
|
@@ -1,29 +1,29 @@
|
|
# XPhotoHunter v1.4
|
|
|
|
# If you want to install data in another directory, edit the following line.
|
|
-DATADIR=/usr/local/share/xphotohunter
|
|
+DATADIR=${PREFIX}/share/xphotohunter
|
|
# If you want to install executive files in another directory, edit the following line.
|
|
-BINDIR=/usr/local/bin
|
|
+BINDIR=${PREFIX}/bin
|
|
# Where your locale dir is
|
|
-LOCALEDIR=/usr/share/locale
|
|
+LOCALEDIR=${PREFIX}/share/locale
|
|
|
|
SHELL=sh
|
|
-CC=gcc
|
|
+CC?=gcc
|
|
DEFS=-DDATA_DIR=\"$(DATADIR)\"
|
|
#INCLUDES=-I./ -I/usr/include -I/usr/lib/glib/include -I/usr/X11R6/include -I/usr/local/include
|
|
#INCLUDES=-I./ -I/usr/include -I/usr/X11R6/include -I/usr/local/include `gtk-config --cflags`
|
|
-INCLUDES=`gtk-config --cflags`
|
|
+INCLUDES=`imlib-config --cflags-gdk`
|
|
# The sequence of the "-l" is important when you compile staticly.
|
|
#LIBS=-L/usr/lib -L/usr/X11R6/lib -L/usr/local/lib -lgtk -lgdk_imlib -lgdk -lglib -ljpeg -ltiff -lpng \
|
|
# -lz -lgif -lXi -lXext -lX11 -lm
|
|
#LIBS=-L/usr/lib -L/usr/X11R6/lib -L/usr/local/lib `gtk-config --libs`
|
|
-LIBS=-lgdk_imlib -ljpeg -ltiff -lpng -lz -lgif `gtk-config --libs` -lXi -lXext -lX11 -lm
|
|
-CFLAGS= -g -O2 -Wall
|
|
+LIBS=`imlib-config --libs-gdk`
|
|
+CFLAGS?= -g -O2 -Wall
|
|
|
|
-INSTALL = /usr/bin/install -c
|
|
-INSTALL_DIR= $(INSTALL) -d -m 755
|
|
-INSTALL_BIN = $(INSTALL) -m 755
|
|
-INSTALL_DATA = $(INSTALL) -m 644
|
|
+INSTALL ?= /usr/bin/install -c
|
|
+INSTALL_DIR= mkdir -p
|
|
+INSTALL_BIN = ${BSD_INSTALL_PROGRAM}
|
|
+INSTALL_DATA = ${BSD_INSTALL_DATA}
|
|
RM=rm -fr
|
|
|
|
SRCS=main.c handler.c
|