diff options
author | alane <alane@FreeBSD.org> | 2003-01-24 06:16:07 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2003-01-24 06:16:07 +0800 |
commit | c11d7dcdf10034c986085f6383465540c6b9e4f8 (patch) | |
tree | 8a724e07490250ddbe3f682b286f8269e9a544a8 /print/cups | |
parent | 23881f006fa04d9015a5a48b9fd7d1c92c0d4064 (diff) | |
download | freebsd-ports-gnome-c11d7dcdf10034c986085f6383465540c6b9e4f8.tar.gz freebsd-ports-gnome-c11d7dcdf10034c986085f6383465540c6b9e4f8.tar.zst freebsd-ports-gnome-c11d7dcdf10034c986085f6383465540c6b9e4f8.zip |
fix all outstanding problems except printing test page
Diffstat (limited to 'print/cups')
-rw-r--r-- | print/cups/Makefile | 2 | ||||
-rw-r--r-- | print/cups/Makefile.common | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index 502e1ae40381..60442ada7c44 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -9,7 +9,7 @@ PORTNAME= cups PORTVERSION= ${CUPS_PORTVER} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= ${CUPS_PORTEPOCH} CATEGORIES= print MASTER_SITES= # empty diff --git a/print/cups/Makefile.common b/print/cups/Makefile.common index 1bccb425fcc1..420de4bb0631 100644 --- a/print/cups/Makefile.common +++ b/print/cups/Makefile.common @@ -14,12 +14,14 @@ CUPS_REVISION= 0 CUPS_PORTVER= ${CUPS_VERSION}.${CUPS_REVISION} CUPS_PORTEPOCH= 0 CUPS_FILESDIR= ${.CURDIR}/../../print/cups/files +CUPS_ETCDIR= ${PREFIX}/etc/cups +CUPS_RCDIR= ${PREFIX}/etc/rc.d CUPS_DOCSDIR= ${PREFIX}/share/doc/cups CUPS_SPOOLDIR= /var/spool/cups # file, dir ownership -CUPSGRP= wheel -CUPSOWN= daemon +CUPSGRP= daemon +CUPSOWN= root ###################################################################### # The rest of the file is for components (cups-base, cups-lpr) only. @@ -54,7 +56,7 @@ CONFIGURE_ARGS+= --localstatedir=/var \ --with-cups-user=${CUPSOWN} \ --with-cups-group=${CUPSGRP} \ --with-docdir=${CUPS_DOCSDIR} \ - --with-rcdir=${PREFIX}/etc/rc.d + --with-rcdir=${CUPS_RCDIR} CONFIGURE_ARGS+= CPPFLAGS="-I${PREFIX}/include" CONFIGURE_ARGS+= CFLAGS="${CFLAGS} -I.. -I${PREFIX}/include" |