Index: head/misc/compat9x/pkg-message =================================================================== --- head/misc/compat9x/pkg-message (revision 305298) +++ head/misc/compat9x/pkg-message (nonexistent) @@ -1,9 +0,0 @@ -******************************************************************************* -* * -* Do not forget to add COMPAT_FREEBSD8 into * -* your kernel configuration (enabled by default). * -* * -* To configure and recompile your kernel see: * -* http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html * -* * -******************************************************************************* Property changes on: head/misc/compat9x/pkg-message ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/misc/compat9x/Makefile =================================================================== --- head/misc/compat9x/Makefile (revision 305298) +++ head/misc/compat9x/Makefile (revision 305299) @@ -1,44 +1,45 @@ # $FreeBSD$ PORTNAME= compat9x PORTVERSION= 9.0.900000.201209 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= garga/compat PKGNAMESUFFIX= -${ARCH} DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION} MAINTAINER= garga@FreeBSD.org COMMENT= A convenience package to install the compat9x libraries USE_BZIP2= yes NO_BUILD= yes ONLY_FOR_ARCHS= i386 amd64 PLIST= ${PKGDIR}/pkg-plist.${ARCH} TARGET_DIR= ${PREFIX}/lib/compat TARGET32_DIR= ${PREFIX}/lib32/compat USE_LDCONFIG= ${TARGET_DIR} .include .if ${OSVERSION} < 900000 IGNORE= is for FreeBSD 9.x and newer .endif .if ${ARCH} == amd64 PLIST_SUB+= LDCONFIG_LIB32="${LDCONFIG} -32" USE_LDCONFIG32= ${TARGET32_DIR} .endif do-install: @${MKDIR} -m 0755 ${TARGET_DIR} (cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR}) .if ${ARCH} == amd64 @${MKDIR} ${TARGET32_DIR} (cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR}) .endif post-install: @${CAT} ${PKGMESSAGE} .include