diff --git a/devel/Makefile b/devel/Makefile index d750a3bcc41a..d1407af8c1a8 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -236,7 +236,9 @@ SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache + SUBDIR += ccache-static SUBDIR += ccache-memcached + SUBDIR += ccache-memcached-static SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccons diff --git a/devel/ccache-memcached-static/Makefile b/devel/ccache-memcached-static/Makefile new file mode 100644 index 000000000000..2cd4b8a1ad9d --- /dev/null +++ b/devel/ccache-memcached-static/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -memcached-static + +MASTERDIR= ${.CURDIR}/../ccache + +OPTIONS_SLAVE= MEMCACHED STATIC + +CONFLICTS_INSTALL= ccache-[0-9]* ccache-memcached[0-9]* ccache-static[0-9]* + +.include "${MASTERDIR}/Makefile" diff --git a/devel/ccache-memcached/Makefile b/devel/ccache-memcached/Makefile index 317a23094307..408c49446911 100644 --- a/devel/ccache-memcached/Makefile +++ b/devel/ccache-memcached/Makefile @@ -6,6 +6,6 @@ MASTERDIR= ${.CURDIR}/../ccache OPTIONS_SLAVE= MEMCACHED -CONFLICTS_INSTALL= ccache-[0-9]* +CONFLICTS_INSTALL= ccache-[0-9]* ccache-memcached-static[0-9]* ccache-static-[0-9]* .include "${MASTERDIR}/Makefile" diff --git a/devel/ccache-static/Makefile b/devel/ccache-static/Makefile new file mode 100644 index 000000000000..daaba05eac22 --- /dev/null +++ b/devel/ccache-static/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -static + +MASTERDIR= ${.CURDIR}/../ccache + +OPTIONS_SLAVE= STATIC + +CONFLICTS_INSTALL= ccache-[0-9]* ccache-memcached[0-9]* ccache-memcached-static[0-9]* + +.include "${MASTERDIR}/Makefile" diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 0908c39b35f2..ad9c4659ce6e 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -13,7 +13,7 @@ COMMENT= Tool to minimize the compile time of C/C++ programs LICENSE= GPLv3 -CONFLICTS_INSTALL= ccache-memcached-[0-9]* +CONFLICTS_INSTALL= ccache-static-[0-9]* ccache-memcached-[0-9]* ccache-memcached-static-[0-9]* GNU_CONFIGURE= yes