diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2008-06-15 18:50:31 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2008-06-15 18:50:31 +0000 |
commit | 88955af95761a3a85d4a5bc18039de20b2bba44d (patch) | |
tree | 4b63cd0dfa3a1dc004259da64df18da4cc0f1390 | |
parent | 845299be09c1386d9237b66644cded94774dc77c (diff) | |
download | ports-88955af95761a3a85d4a5bc18039de20b2bba44d.tar.gz ports-88955af95761a3a85d4a5bc18039de20b2bba44d.zip |
Notes
-rw-r--r-- | emulators/vgb-bin/Makefile | 6 | ||||
-rw-r--r-- | emulators/vgba-bin/Makefile | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/emulators/vgb-bin/Makefile b/emulators/vgb-bin/Makefile index d2e95a31c77c..8ccc54e62dae 100644 --- a/emulators/vgb-bin/Makefile +++ b/emulators/vgb-bin/Makefile @@ -7,7 +7,7 @@ PORTNAME= vgb PORTVERSION= 3.0 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= http://fms.komkon.org/VGB/ @@ -39,4 +39,8 @@ do-install: IGNORE= does not work for FreeBSD versions prior to 5.2.1R .endif +.if ${OSVERSION} >= 600000 +LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x +.endif + .include <bsd.port.post.mk> diff --git a/emulators/vgba-bin/Makefile b/emulators/vgba-bin/Makefile index 3d0371110622..a6be23c8caaa 100644 --- a/emulators/vgba-bin/Makefile +++ b/emulators/vgba-bin/Makefile @@ -7,7 +7,7 @@ PORTNAME= vgba PORTVERSION= 3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://fms.komkon.org/VGBA/ PKGNAMESUFFIX= -bin @@ -36,4 +36,8 @@ do-install: IGNORE= Does not work for FreeBSD versions prior to 5.2.1R .endif +.if ${OSVERSION} >= 600000 +LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x +.endif + .include <bsd.port.post.mk> |