mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
663a202941
- New chipset supported: S3 Savage3D (I have not tested it personally); - Improved support for already supported chipsets; - Change port versioning scheme to PORTVERSION=YYYYMMDD, because despite the promise, the project had not released its magic 1.0 version (promised to be about 3 months ago); - Catch change of the Mesa3 version.
38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
--- libglut/Makefile.in.orig Thu Aug 24 16:53:46 2000
|
|
+++ libglut/Makefile.in Thu Aug 24 21:44:21 2000
|
|
@@ -13,9 +13,9 @@
|
|
# These define the name/version of the shared library we're building
|
|
# ------------------------------------------------------------------
|
|
LIBNAME = glut
|
|
-GLUTREV_major = 3
|
|
-GLUTREV_minor = 7
|
|
-SOGLUTREV = ${GLUTREV_major}.${GLUTREV_minor}
|
|
+GLUTREV_major = ${GLUTVER}
|
|
+GLUTREV_minor =
|
|
+SOGLUTREV = ${GLUTREV_major}${GLUTREV_minor}
|
|
GLUTLIB = lib${LIBNAME}.so.${SOGLUTREV}
|
|
|
|
# Source and Object definitions
|
|
@@ -114,8 +114,8 @@
|
|
@if [ -d ${DESTDIR}${INSTALL_libdir} ]; then set +x; \
|
|
else (set -x; ${MKDIR} ${DESTDIR}${INSTALL_libdir}); fi
|
|
${INSTALL} ${INSTALLFLAGS} ${INSTBINFLAGS} ${GLUTLIB} ${DESTDIR}${INSTALL_libdir}
|
|
- ${RM} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so.${GLUTREV_major} ;\
|
|
- ${LN} ${GLUTLIB} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so.${GLUTREV_major}
|
|
+# ${RM} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so.${GLUTREV_major} ;\
|
|
+# ${LN} ${GLUTLIB} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so.${GLUTREV_major}
|
|
${RM} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so ;\
|
|
${LN} ${GLUTLIB} ${DESTDIR}${INSTALL_libdir}/lib${LIBNAME}.so
|
|
else
|
|
@@ -147,8 +147,8 @@
|
|
fi;
|
|
${RM} $@
|
|
${MV} $@~ $@
|
|
- ${RM} lib${LIBNAME}.so.${GLUTREV_major}
|
|
- ${LN} $@ lib${LIBNAME}.so.${GLUTREV_major}
|
|
+# ${RM} lib${LIBNAME}.so.${GLUTREV_major}
|
|
+# ${LN} $@ lib${LIBNAME}.so.${GLUTREV_major}
|
|
${RM} lib${LIBNAME}.so
|
|
${LN} $@ lib${LIBNAME}.so
|
|
|