diff options
author | adamw <adamw@FreeBSD.org> | 2003-04-11 16:16:51 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2003-04-11 16:16:51 +0800 |
commit | 750c030be02da32b5d6966ec5de8963d9b3d5c4c (patch) | |
tree | efc754c7f3f0b94e7962b8de789550b9877d90ff /print | |
parent | a62af6c2c58641f31c12f19845e991ada5d25684 (diff) | |
download | freebsd-ports-gnome-750c030be02da32b5d6966ec5de8963d9b3d5c4c.tar.gz freebsd-ports-gnome-750c030be02da32b5d6966ec5de8963d9b3d5c4c.tar.zst freebsd-ports-gnome-750c030be02da32b5d6966ec5de8963d9b3d5c4c.zip |
Update to 2.1.4.
PR: 50808
Submitted by: KANOU Hiroki <kanou@khdd.net> (maintainer)
Diffstat (limited to 'print')
-rw-r--r-- | print/ft2demos/Makefile | 6 | ||||
-rw-r--r-- | print/ft2demos/distinfo | 2 | ||||
-rw-r--r-- | print/ft2demos/files/patch-Makefile | 11 |
3 files changed, 15 insertions, 4 deletions
diff --git a/print/ft2demos/Makefile b/print/ft2demos/Makefile index 3a5fb566ebf2..b0c550266ba7 100644 --- a/print/ft2demos/Makefile +++ b/print/ft2demos/Makefile @@ -6,7 +6,7 @@ # PORTNAME= ft2demos -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S,%SUBDIR%,freetype,} \ http://sunsite.cnlab-switch.ch/ftp/mirror/freetype/%SUBDIR%/ \ @@ -20,7 +20,7 @@ MAINTAINER= kanou@khdd.net COMMENT= Demo programs for FreeType2 BUILD_DEPENDS+= libtool:${PORTSDIR}/devel/libtool -BUILD_DEPENDS+= ${FREETYPE_WRKSRC}/config.mk:${PORTSDIR}/print/freetype2:build +BUILD_DEPENDS+= ${FREETYPE_WRKSRC}/config.mk:${PORTSDIR}/print/freetype2:configure LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 USE_XLIB= yes @@ -35,6 +35,6 @@ FREETYPE_WRKSRC!= cd ${PORTSDIR}/print/freetype2; ${MAKE} -V WRKSRC FT_PROGRAMS= ftbench ftdump ftlint ftmemchk ftmulti ftstring fttimer ftview testnames do-install: - @(cd ${WRKSRC}/bin/.libs/ ; ${INSTALL_PROGRAM} ${FT_PROGRAMS} ${PREFIX}/bin) + @(cd ${WRKSRC}/bin/; ${INSTALL_PROGRAM} ${FT_PROGRAMS} ${PREFIX}/bin) .include <bsd.port.post.mk> diff --git a/print/ft2demos/distinfo b/print/ft2demos/distinfo index fb092a469e3a..56f8fc0f0ab5 100644 --- a/print/ft2demos/distinfo +++ b/print/ft2demos/distinfo @@ -1 +1 @@ -MD5 (ft2demos-2.1.3.tar.bz2) = 8ca71a907a0623d5cabad61291a36e46 +MD5 (ft2demos-2.1.4.tar.bz2) = 92cb4e645fe1cfb8345b64cedb9d332e diff --git a/print/ft2demos/files/patch-Makefile b/print/ft2demos/files/patch-Makefile new file mode 100644 index 000000000000..df3b16c49386 --- /dev/null +++ b/print/ft2demos/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Fri Jun 14 17:53:27 2002 ++++ Makefile Fri Apr 11 14:54:29 2003 +@@ -94,7 +94,7 @@ + + COMPILE = $(CC) $(CFLAGS) $(INCLUDES:%=$I%) + +- FTLIB := $(LIB_DIR)$(SEP)$(LIBRARY).$A ++ FTLIB := $(LOCALBASE)/lib$(SEP)$(LIBRARY).so + + # "-lm" is required to compile on some Unix systems + # |