View | Details | Raw Unified | Return to bug 13677 | Differences between
and this patch

Collapse All | Expand All

(-)graphics/gtkdps/Makefile (-3 lines)
Lines 22-28 Link Here
22
USE_LIBTOOL=	yes
22
USE_LIBTOOL=	yes
23
USE_X_PREFIX=	yes
23
USE_X_PREFIX=	yes
24
24
25
post-install:
26
	${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
27
28
.include <bsd.port.mk>
25
.include <bsd.port.mk>
(-)graphics/gtkdps/patches/patch-aa (-15 lines)
Lines 1-15 Link Here
1
--- ltmain.sh.orig	Sat Oct  3 22:08:22 1998
2
+++ ltmain.sh	Sat Oct  3 22:09:00 1998
3
@@ -964,7 +964,11 @@
4
       sunos)
5
         version_vars="$version_vars major versuffix"
6
         major="$current"
7
-        versuffix="$current.$revision"
8
+        if [ -x /usr/bin/objformat -a `objformat` = "elf" ]; then
9
+          versuffix="$current"
10
+        else
11
+          versuffix="$current.$revision"
12
+        fi
13
         ;;
14
 
15
       *)

Return to bug 13677