diff options
author | clsung <clsung@FreeBSD.org> | 2006-08-08 13:25:05 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-08-08 13:25:05 +0800 |
commit | b22f110c65166a8bd5197c0e501ffd75e88b2507 (patch) | |
tree | 8ba59eacce37cdefa1526cff2bd4ec810fa3f079 /graphics | |
parent | 3ea552eed4438b4e6b6427a88c5ea5a653823de7 (diff) | |
download | freebsd-ports-graphics-b22f110c65166a8bd5197c0e501ffd75e88b2507.tar.gz freebsd-ports-graphics-b22f110c65166a8bd5197c0e501ffd75e88b2507.tar.zst freebsd-ports-graphics-b22f110c65166a8bd5197c0e501ffd75e88b2507.zip |
- Fix "Save PDF File" dialogue
"Save PDF File" dialogue has "Open" instead of "Save" button text
PR: ports/101626
Submitted by: maintainer (chinsan <chinsan dot tw_AT_gmail dot com>)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/epdfview/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/epdfview/Makefile b/graphics/epdfview/Makefile index 2921fb62cfb..5cb9eb609d6 100644 --- a/graphics/epdfview/Makefile +++ b/graphics/epdfview/Makefile @@ -7,7 +7,7 @@ PORTNAME= epdfview PORTVERSION= 0.1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics print gnome MASTER_SITES= http://www.emma-soft.com/projects/epdfview/chrome/site/releases/ @@ -38,6 +38,9 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif +post-patch: + @${REINPLACE_CMD} -e '273 s,OPEN,SAVE,' ${WRKSRC}/src/gtk/MainView.cxx + post-install: ${MKDIR} ${PREFIX}/share/applications ${PREFIX}/share/pixmaps ${INSTALL_DATA} ${WRKSRC}/data/${PORTNAME}.desktop ${PREFIX}/share/applications/ |