mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
33976f70df
The fvwm95 developement team makes good progress ;-)) One thing I doesn't understand when making the port: When doing make package, then the first @cwd in PLIST isn't used, so fvwm96 is packaged as /usr/local/bin/fvwm95 instead of /usr/X11R6/bin/fvwm95. Would someone please be so kind to look at this. Is it me or is pkg_add misbehaving ?!
26 lines
913 B
Plaintext
26 lines
913 B
Plaintext
--- modules/FvwmAudio/Makefile.in.orig Sat Feb 1 13:23:37 1997
|
|
+++ modules/FvwmAudio/Makefile.in Sat Feb 1 13:23:23 1997
|
|
@@ -10,6 +10,8 @@
|
|
bin_dir=@exec_prefix@/bin
|
|
x_includes=@x_includes@
|
|
x_libraries=@x_libraries@
|
|
+libdir=@libdir@
|
|
+includedir=@includedir@
|
|
fvwm_icons=@fvwm_icons@
|
|
fvwm_rc=@fvwm_rc@
|
|
fvwm_name=@fvwm_name@
|
|
@@ -24,11 +26,11 @@
|
|
XEXT_LIBRARY=-lXext
|
|
FVWM_LIBRARY=-l${fvwm_name}
|
|
RPLAY_LIBRARY=-lrplay
|
|
-LIBS=-L${top_srcdir}/libs ${x_libraries} ${FVWM_LIBRARY} ${XPM_LIBRARY} ${XEXT_LIBRARY} ${X_LIBRARY} ${RPLAY_LIBRARY}
|
|
+LIBS=-L${top_srcdir}/libs ${x_libraries} ${FVWM_LIBRARY} ${XPM_LIBRARY} ${XEXT_LIBRARY} ${X_LIBRARY} -L${libdir} ${RPLAY_LIBRARY}
|
|
|
|
EXTRA_DEFINES=-DXPM -DSHAPE
|
|
CC=@CC@
|
|
-INCLUDES=-I${top_srcdir}/include ${x_includes}
|
|
+INCLUDES=-I${top_srcdir}/include ${x_includes} ${includedir}
|
|
CFLAGS=${INCLUDES} @CFLAGS@ ${EXTRA_DEFINES}
|
|
MAKEDEPEND=@MAKEDEPEND@
|
|
INSTALL=@INSTALL@
|