diff options
author | danilo <danilo@FreeBSD.org> | 2013-10-22 12:55:32 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2013-10-22 12:55:32 +0800 |
commit | d6c9ddf9d8ef81045ebddfde10a54f576decd665 (patch) | |
tree | a5d837233ed49dd193e758415eafb24ed382ab65 /databases/cego/Makefile | |
parent | 06769130d20ce6171261859134614d52e836a373 (diff) | |
download | freebsd-ports-gnome-d6c9ddf9d8ef81045ebddfde10a54f576decd665.tar.gz freebsd-ports-gnome-d6c9ddf9d8ef81045ebddfde10a54f576decd665.tar.zst freebsd-ports-gnome-d6c9ddf9d8ef81045ebddfde10a54f576decd665.zip |
- Update from 2.19.6 to 2.19.7 [1]
- Add stage support [1]
- Convert LIB_DEPENDS to new syntax
PR: ports/183128
Submitted by: Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer) [1]
Diffstat (limited to 'databases/cego/Makefile')
-rw-r--r-- | databases/cego/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 37a64cc754f9..c5f2b2ef0c60 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.19.6 +PORTVERSION= 2.19.7 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ @@ -11,8 +11,8 @@ COMMENT= Relational and transactional database system LICENSE= GPLv3 -LIB_DEPENDS= lfcbase:${PORTSDIR}/devel/lfcbase \ - lfcxml:${PORTSDIR}/devel/lfcxml +LIB_DEPENDS= liblfcbase.so:${PORTSDIR}/devel/lfcbase \ + liblfcxml.so:${PORTSDIR}/devel/lfcxml GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -28,7 +28,6 @@ GROUPS= cego PLIST_SUB+= USER=${USERS} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's,-O3,,g' \ ${WRKSRC}/src/Makefile.in \ @@ -36,7 +35,7 @@ post-patch: ${WRKSRC}/samples/cgwraptest/Makefile.in post-install: - @${MKDIR} ${PREFIX}/share/cego - @${CP} ${WRKSRC}/tools/* ${PREFIX}/share/cego/ + @${MKDIR} ${STAGEDIR}${DATADIR} + @${CP} ${WRKSRC}/tools/* ${STAGEDIR}${DATADIR} .include <bsd.port.mk> |