summaryrefslogtreecommitdiff
path: root/emulators/wine
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-07-04 21:55:02 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-07-04 21:55:02 +0000
commit68a8c30f14dcf9943fa0e8c211c801b097e65702 (patch)
treeb40fe5fe169a57ce57e2f3507b6df7bc8a3433f9 /emulators/wine
parentMake PORTDOCS compliant (diff)
Delete outdated patch-gg
Update to 2001.06.29 Install man pages with INSTALL_MAN instead of INSTALL_DATA PR: 28608 Submitted by: Patrick Li <pat@databits.net> Reviewed by: maintainer
Notes
Notes: svn path=/head/; revision=44766
Diffstat (limited to 'emulators/wine')
-rw-r--r--emulators/wine/Makefile6
-rw-r--r--emulators/wine/distinfo2
-rw-r--r--emulators/wine/files/patch-gg38
3 files changed, 4 insertions, 42 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile
index 071b972fa951..f54d70af1282 100644
--- a/emulators/wine/Makefile
+++ b/emulators/wine/Makefile
@@ -7,7 +7,7 @@
#
PORTNAME= wine
-PORTVERSION= 2001.05.10
+PORTVERSION= 2001.06.29
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= ALPHA/wine/development
@@ -69,8 +69,8 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/documentation/samples/config ${PREFIX}/etc/wine.conf.sample
[ -f ${PREFIX}/etc/wine.conf ] \
|| ${INSTALL_DATA} ${PREFIX}/etc/wine.conf.sample ${PREFIX}/etc/wine.conf
- ${INSTALL_DATA} ${WRKSRC}/documentation/wine.man ${PREFIX}/man/man1/wine.1
- ${INSTALL_DATA} ${WRKSRC}/documentation/wine.conf.man ${PREFIX}/man/man5/wine.conf.5
+ ${INSTALL_MAN} ${WRKSRC}/documentation/wine.man ${PREFIX}/man/man1/wine.1
+ ${INSTALL_MAN} ${WRKSRC}/documentation/wine.conf.man ${PREFIX}/man/man5/wine.conf.5
.if !defined(NOPORTDOCS)
-@${MKDIR} ${PREFIX}/lib/wine/documentation
.for i in README ANNOUNCE AUTHORS LICENSE WARRANTY documentation/psdrv.reg
diff --git a/emulators/wine/distinfo b/emulators/wine/distinfo
index 664d6acb3a0d..c267832ad362 100644
--- a/emulators/wine/distinfo
+++ b/emulators/wine/distinfo
@@ -1 +1 @@
-MD5 (Wine-20010510.tar.gz) = 6e1840a294845fa0db85704b1fc6728e
+MD5 (Wine-20010629.tar.gz) = c81c4abdbe76c93a4d4c30829a128571
diff --git a/emulators/wine/files/patch-gg b/emulators/wine/files/patch-gg
deleted file mode 100644
index aec707b8a09d..000000000000
--- a/emulators/wine/files/patch-gg
+++ /dev/null
@@ -1,38 +0,0 @@
---- dlls/wineps/afm.c 2001/05/09 17:11:59 1.13
-+++ dlls/wineps/afm.c 2001/05/11 11:51:52
-@@ -683,7 +683,7 @@ static BOOL SortFontMetrics()
-
- qsort(aglCopy, PSDRV_AdobeGlyphList.size,
- sizeof(UNICODEGLYPH),
-- (__compar_fn_t)UnicodeGlyphByNameIndex);
-+ UnicodeGlyphByNameIndex);
- }
-
- for (i = 0; i < afm->NumofMetrics; ++i)
-@@ -695,7 +695,7 @@ static BOOL SortFontMetrics()
-
- pug = bsearch(&ug, aglCopy, PSDRV_AdobeGlyphList.size,
- sizeof(UNICODEGLYPH),
-- (__compar_fn_t)UnicodeGlyphByNameIndex);
-+ UnicodeGlyphByNameIndex);
- if (pug == NULL)
- {
- WARN("Glyph '%s' in font '%s' does not have a UV\n",
-@@ -715,7 +715,7 @@ static BOOL SortFontMetrics()
-
- /* typecast avoids compiler warning */
- qsort((void *)(afm->Encoding->glyphs), afm->Encoding->size,
-- sizeof(UNICODEGLYPH), (__compar_fn_t)UnicodeGlyphByUV);
-+ sizeof(UNICODEGLYPH), UnicodeGlyphByUV);
-
- for (i = 0; i < afm->Encoding->size; ++i)
- if (afm->Encoding->glyphs[i].UV >= 0)
-@@ -726,7 +726,7 @@ static BOOL SortFontMetrics()
- }
-
- qsort(afm->Metrics, afm->NumofMetrics, sizeof(AFMMETRICS),
-- (__compar_fn_t)AFMMetricsByUV);
-+ AFMMetricsByUV);
-
- for (i = 0; i < afm->NumofMetrics; ++i)
- if (afm->Metrics[i].UV >= 0)