diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-02 11:35:47 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-02 11:35:47 +0800 |
commit | c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112 (patch) | |
tree | 9bf81002421573a8b7ffc2c0ed05f0bf5667510b | |
parent | 23909889790bfabb93e3673327c58ca0778e762f (diff) | |
download | marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar.gz marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar.bz2 marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar.lz marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar.xz marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.tar.zst marcuscom-ports-c03bca0304c81195dfc57cbc9ba2bfe9cf7e7112.zip |
The --disable-gedit doesn't work, so add a hack to disable it. No means no. ;-)
This allows seahorse to build.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9114 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | security/seahorse/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/security/seahorse/Makefile b/security/seahorse/Makefile index df42ba280..b7ea97a49 100644 --- a/security/seahorse/Makefile +++ b/security/seahorse/Makefile @@ -3,7 +3,7 @@ # Whom: Dave McKay <dave@mu.org> # # $FreeBSD$ -# $MCom: ports/security/seahorse/Makefile,v 1.38 2007/07/01 18:10:30 marcus Exp $ +# $MCom: ports/security/seahorse/Makefile,v 1.39 2007/07/01 22:05:19 marcus Exp $ # PORTNAME= seahorse @@ -117,8 +117,9 @@ CONFIGURE_ARGS+=--disable-sharing .endif post-patch: - @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ - ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|" == "|" = "|g ; \ + s|enable_gedit=yes|enable_gedit=no|g' \ + ${WRKSRC}/configure post-install: -@update-desktop-database |