1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

update to 1.4.5; replace WITH_MMX with a check on MACHINE_CPU

Feature safe:	yes
This commit is contained in:
Brendan Fabeny 2011-11-19 07:18:23 +00:00
parent 3b09aa2b3a
commit 0e466f1002
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=286046
2 changed files with 9 additions and 6 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= imlib2
PORTVERSION= 1.4.4
PORTREVISION= 1
PORTVERSION= 1.4.5
PORTEPOCH= 2
CATEGORIES= graphics enlightenment
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
@ -35,12 +34,16 @@ OPTIONS= JPEG "Enable jpeg image support" on \
.include <bsd.port.pre.mk>
.if defined(WITH_MMX) && (${ARCH} == "i386")
.if ${ARCH} == "i386" && !empty(MACHINE_CPU:Mmmx)
CONFIGURE_ARGS+= --enable-mmx
.else
CONFIGURE_ARGS+= --disable-mmx
.endif
.if (${ARCH} == "amd64")
.if ${ARCH} == "amd64"
CONFIGURE_ARGS+= --enable-amd64
.else
CONFIGURE_ARGS+= --disable-amd64
.endif
.if defined(WITHOUT_X11)

View File

@ -1,2 +1,2 @@
SHA256 (imlib2-1.4.4.tar.bz2) = 6441fb1e88a31533791c40ea4b3310b6d5d46233ca69d9f731a2846e4e423404
SIZE (imlib2-1.4.4.tar.bz2) = 888878
SHA256 (imlib2-1.4.5.tar.bz2) = 24700d93931838d2149cc2b4b58b9355cc81ec11d297f101a98dbb8d1c5c945a
SIZE (imlib2-1.4.5.tar.bz2) = 895624