Index: head/Mk/bsd.default-versions.mk =================================================================== --- head/Mk/bsd.default-versions.mk (revision 431244) +++ head/Mk/bsd.default-versions.mk (revision 431245) @@ -1,139 +1,144 @@ # $FreeBSD$ # # MAINTAINER: ports@FreeBSD.org # # Provide default versions for ports with multiple versions selectable # by the user. # # Users who want to override these defaults can easily do so by defining # DEFAULT_VERSIONS in their make.conf as follows: # # DEFAULT_VERSIONS= perl5=5.20 ruby=2.0 .if !defined(_INCLUDE_BSD_DEFAULT_VERSIONS_MK) _INCLUDE_BSD_DEFAULT_VERSIONS_MK= yes LOCALBASE?= /usr/local .for lang in APACHE BDB FIREBIRD FPC GCC GHOSTSCRIPT LINUX LUA MYSQL PERL5 \ PGSQL PHP PYTHON PYTHON2 PYTHON3 RUBY SSL TCLTK .if defined(${lang}_DEFAULT) WARNING+= "The variable ${lang}_DEFAULT is set and it should only be defined through DEFAULT_VERSIONS+=${lang:tl}=${${lang}_DEFAULT} in /etc/make.conf" WARNING+= "This behaviour has never been supported and will be removed on 2017-01-31" .endif #.undef ${lang}_DEFAULT .endfor .for lang in ${DEFAULT_VERSIONS} _l= ${lang:C/=.*//g} ${_l:tu}_DEFAULT= ${lang:C/.*=//g} .endfor # Possible values: 2.2, 2.4 APACHE_DEFAULT?= 2.4 # Possible values: 48, 5, 6 BDB_DEFAULT?= 5 # Possible values: 2.5 FIREBIRD_DEFAULT?= 2.5 # Possible values: 3.0.0 FPC_DEFAULT?= 3.0.0 # Possible values: 4.6, 4.7, 4.8, 4.9, 5 GCC_DEFAULT?= 4.9 # Possible values: 7, 8, 9, agpl GHOSTSCRIPT_DEFAULT?= agpl +.if ${ARCH} == amd64 # Possible values: c6, c6_64, c7, c7_64 +LINUX_DEFAULT?= c6_64 +.else +# Possible values: c6, c7 LINUX_DEFAULT?= c6 +.endif .if defined(OVERRIDE_LINUX_BASE_PORT) LINUX_DEFAULT:= ${OVERRIDE_LINUX_BASE_PORT} WARNING+= "OVERRIDE_LINUX_BASE_PORT is deprecated, please use DEFAULT_VERSIONS+=linux=${OVERRIDE_LINUX_BASE_PORT}." .endif # Possible values: 5.1, 5.2, 5.3 LUA_DEFAULT?= 5.2 # Possible values: 5.1, 5.5, 5.6, 5.7, 8.0, 5.5m, 10.0m, 10.1m, 5.5p, 5.6p, 5.7p MYSQL_DEFAULT?= 5.6 # Possible values: 5.20, 5.22, devel .if !exists(${LOCALBASE}/bin/perl) || (!defined(_PORTS_ENV_CHECK) && \ defined(PACKAGE_BUILDING)) PERL5_DEFAULT?= 5.24 .elif !defined(PERL5_DEFAULT) # There's no need to replace development versions, like "5.23" with "devel" # because 1) nobody is supposed to use it outside of poudriere, and 2) it must # be set manually in /etc/make.conf in the first place, and we're never getting # in here. .if !defined(_PERL5_FROM_BIN) _PERL5_FROM_BIN!= perl -e 'printf "%vd\n", $$^V;' .endif _EXPORTED_VARS+= _PERL5_FROM_BIN PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R} .endif # Possible values: 9.2, 9.3, 9.4, 9.5, 9.6 PGSQL_DEFAULT?= 9.3 # Possible values: 5.6, 7.0 PHP_DEFAULT?= 5.6 # Possible values: 2.7, 3.3, 3.4, 3.5, 3.6 PYTHON_DEFAULT?= 2.7 # Possible values: 2.7 PYTHON2_DEFAULT?= 2.7 # Possible values: 3.3, 3.4, 3.5, 3.6 PYTHON3_DEFAULT?= 3.5 # Possible values: 2.1, 2.2, 2.3, 2.4 RUBY_DEFAULT?= 2.3 # Possible values: base, openssl, openssl-devel, libressl, libressl-devel .if !defined(SSL_DEFAULT) # If no preference was set, check for an installed base version # but give an installed port preference over it. . if defined(WITH_OPENSSL_PORT) . if defined(OPENSSL_PORT) SSL_DEFAULT:=${OPENSSL_PORT:T} WARNING+= "Using WITH_OPENSSL_PORT and OPENSSL_PORT in make.conf is deprecated, replace them with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT} in your make.conf" . else SSL_DEFAULT=openssl WARNING+= "Using WITH_OPENSSL_PORT in make.conf is deprecated, replace it with DEFAULT_VERSIONS+=ssl=openssl in your make.conf" . endif . elif defined(WITH_OPENSSL_BASE) SSL_DEFAULT=base WARNING+= "Using WITH_OPENSSL_BASE in make.conf is deprecated, replace it with DEFAULT_VERSIONS+=ssl=base in your make.conf" . elif !defined(WITH_OPENSSL_BASE) && \ !defined(WITH_OPENSSL_PORT) && \ !defined(SSL_DEFAULT) && \ !exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \ exists(${DESTDIR}/usr/include/openssl/opensslv.h) SSL_DEFAULT= base . else . if exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) . if defined(PKG_BIN) # find installed port and use it for dependency . if !defined(OPENSSL_INSTALLED) . if defined(DESTDIR) PKGARGS= -c ${DESTDIR} . else PKGARGS= . endif OPENSSL_INSTALLED!= ${PKG_BIN} ${PKGARGS} which -qo ${LOCALBASE}/lib/libcrypto.so || : . endif . if defined(OPENSSL_INSTALLED) && !empty(OPENSSL_INSTALLED) SSL_DEFAULT:= ${OPENSSL_INSTALLED:T} WARNING+= "You have ${OPENSSL_INSTALLED} installed but do not have DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT} set in your make.conf" . endif . else check-makevars:: @${ECHO_MSG} "You have a ${LOCALBASE}/lib/libcrypto.so file installed, but the framework is unable" @${ECHO_MSG} "to determine what port it comes from." @${ECHO_MSG} "Add DEFAULT_VERSIONS+=ssl= to your /etc/make.conf and try again." @${FALSE} . endif . endif . endif # Make sure we have a default in the end SSL_DEFAULT?= base .endif # Possible values: 8.4, 8.5, 8.6, 8.7 TCLTK_DEFAULT?= 8.6 # Possible values: 4, 5 VARNISH_DEFAULT?= 4 # Version of lang/gcc. Do not override! LANG_GCC_IS= 4.9 .endif Index: head/accessibility/linux-c6-atk/Makefile =================================================================== --- head/accessibility/linux-c6-atk/Makefile (revision 431244) +++ head/accessibility/linux-c6-atk/Makefile (revision 431245) @@ -1,20 +1,21 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= atk PORTVERSION= 1.30.0 +PORTREVISION= 1 CATEGORIES= accessibility linux MAINTAINER= emulation@FreeBSD.org COMMENT= Accessibility Toolkit, Linux/i386 binary (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-atk-[0-9]* linux-f10-atk-[0-9]* USES= linux:c6 RPMVERSION= 1.el6 USE_LINUX_RPM= yes USE_LDCONFIG= yes .include Index: head/audio/linux-c6-alsa-lib/Makefile =================================================================== --- head/audio/linux-c6-alsa-lib/Makefile (revision 431244) +++ head/audio/linux-c6-alsa-lib/Makefile (revision 431245) @@ -1,37 +1,38 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= alsa-lib PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Advanced Linux Sound Architecture libraries (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 RUN_DEPENDS= alsa-lib>0:audio/alsa-lib CONFLICTS= linux-f10-alsa-lib-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 4.el6 USE_LDCONFIG= yes # We will use native configuration file, so delete a linux one post-extract: @${RM} -r ${WRKSRC}/etc post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc ${LN} -fs ${LOCALBASE}/etc/asound.conf ${STAGEDIR}${PREFIX}/etc ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-ac97.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-hda.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib/alsa-lib/smixer/smixer-sbase.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-ac97.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-hda.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/alsa-lib/smixer/smixer-sbase.la .include Index: head/audio/linux-c6-alsa-plugins-oss/Makefile =================================================================== --- head/audio/linux-c6-alsa-plugins-oss/Makefile (revision 431244) +++ head/audio/linux-c6-alsa-plugins-oss/Makefile (revision 431245) @@ -1,28 +1,29 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= alsa-plugins-oss PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= OSS plugin for ALSA (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-f10-alsa-plugins-oss-[0-9]* SRC_DISTFILES= alsa-plugins-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE USES= linux:c6 USE_LINUX= alsalib USE_LINUX_RPM= yes RPMVERSION= 1.el6 USE_LDCONFIG= yes # We will use native configuration file, so delete a linux one post-extract: @${RM} -r ${WRKSRC}/etc .include Index: head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile =================================================================== --- head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile (revision 431244) +++ head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile (revision 431245) @@ -1,31 +1,31 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= alsa-plugins-pulseaudio PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= PulseAudio plugin for ALSA (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-f10-alsa-plugins-pulseaudio-[0-9]* .if defined(PACKAGE_BUILDING) SRC_DISTFILES= alsa-plugins-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .endif USES= linux:c6 USE_LINUX= alsalib pulseaudio-libs USE_LINUX_RPM= yes RPMVERSION= 1.el6 USE_LDCONFIG= yes # We will use native configuration file, so delete a linux one post-extract: @${RM} -r ${WRKSRC}/etc .include Index: head/audio/linux-c6-alsa-utils/Makefile =================================================================== --- head/audio/linux-c6-alsa-utils/Makefile (revision 431244) +++ head/audio/linux-c6-alsa-utils/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= alsa-utils PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Advanced Linux Sound Architecture libraries (Linux CentOS ${LINUX_DIST_VER}) LICENSE= GPLv3 CONFLICTS= linux-alsa-lib-[0-9]* linux-f10-alsa-lib-[0-9]* USE_LINUX= alsalib alsa-plugins-oss USES= linux:c6 USE_LINUX_RPM= nolib RPMVERSION= 8.el6 .include Index: head/audio/linux-c6-arts/Makefile =================================================================== --- head/audio/linux-c6-arts/Makefile (revision 431244) +++ head/audio/linux-c6-arts/Makefile (revision 431245) @@ -1,24 +1,24 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= arts PORTVERSION= 1.5.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio kde linux MAINTAINER= emulation@FreeBSD.org COMMENT= Audio system for the KDE integrated X11 desktop (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-arts-[0-9]* linux-f8-arts-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 10.el6 USE_LDCONFIG= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/usr/lib/*.la ${RM} ${STAGEDIR}${PREFIX}/usr/lib64/*.la .include Index: head/audio/linux-c6-esound/Makefile =================================================================== --- head/audio/linux-c6-esound/Makefile (revision 431244) +++ head/audio/linux-c6-esound/Makefile (revision 431245) @@ -1,27 +1,27 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= esound PORTVERSION= 0.2.41 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio linux LIB_DISTFILES= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of esound (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-esound-[0-9]* linux-f10-esound-[0-9]* LINUX_NAME= ${PORTNAME}-libs RPMVERSION= 3.1.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= libaudiofile USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= AUTHORS COPYING.LIB ChangeLog NEWS README TIPS TODO esound.sgml DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-flac/Makefile =================================================================== --- head/audio/linux-c6-flac/Makefile (revision 431244) +++ head/audio/linux-c6-flac/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= flac PORTVERSION= 1.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Free lossless audio codec (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-flac-[0-9]* linux-f10-flac-[0-9]* RPMVERSION= 7.el6_6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= libogg USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-libaudiofile/Makefile =================================================================== --- head/audio/linux-c6-libaudiofile/Makefile (revision 431244) +++ head/audio/linux-c6-libaudiofile/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libaudiofile PORTVERSION= 0.2.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio linux DISTNAME= audiofile-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Implementation of the Audio File Library from SGI (Linux CentOS ${LINUX_DIST_VER}) CONTFLICTS= linux-libaudiofile-[0-9]* linux-f10-libaudiofile-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 11.1.el6 USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-libogg/Makefile =================================================================== --- head/audio/linux-c6-libogg/Makefile (revision 431244) +++ head/audio/linux-c6-libogg/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libogg PORTVERSION= 1.1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Ogg bitstream library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-libogg-[0-9]* linux-f10-libogg-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 2.1.el6 USE_LDCONFIG= yes PORTDOCS= AUTHORS CHANGES COPYING README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-libsndfile/Makefile =================================================================== --- head/audio/linux-c6-libsndfile/Makefile (revision 431244) +++ head/audio/linux-c6-libsndfile/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libsndfile PORTVERSION= 1.0.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Reading and writing files containing sampled sound (like WAV or AIFF) (Linux CentOS ${LINUX_DIST_VER}) CONTFLICTS= linux-libsndfile-[0-9]* linux-f10-libsndfile-[0-9]* USES= linux:c6 USE_LINUX= flac libogg libvorbis USE_LINUX_RPM= yes RPMVERSION= 5.el6 USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-libvorbis/Makefile =================================================================== --- head/audio/linux-c6-libvorbis/Makefile (revision 431244) +++ head/audio/linux-c6-libvorbis/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libvorbis PORTVERSION= 1.2.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Audio compression codec library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-libvorbis-[0-9]* linux-f10-libvorbis-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes USE_LINUX= libogg RPMVERSION= 4.el6_2.1 USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-mikmod/Makefile =================================================================== --- head/audio/linux-c6-mikmod/Makefile (revision 431244) +++ head/audio/linux-c6-mikmod/Makefile (revision 431245) @@ -1,27 +1,27 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= mikmod PORTVERSION= 3.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio linux MASTER_SITES= EPEL DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= MikMod Sound Library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-mikmod-[0-9]* linux-f8-mikmod-[0-9]* LINUX_NAME= lib${PORTNAME} RPMVERSION= 10.beta2.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= AUTHORS COPYING.LESSER COPYING.LIB NEWS README TODO DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-nas-libs/Makefile =================================================================== --- head/audio/linux-c6-nas-libs/Makefile (revision 431244) +++ head/audio/linux-c6-nas-libs/Makefile (revision 431245) @@ -1,26 +1,26 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= nas-libs PORTVERSION= 1.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio linux MASTER_SITES= EPEL DISTNAME= nas-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Network Audio System (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 7.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= xorglibs USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/nas-${PORTVERSION} DESCR= ${.CURDIR}/../nas/pkg-descr post-patch: @${RM} -r ${WRKSRC}/usr/bin ${WRKSRC}/etc/rc.d ${WRKSRC}/etc/sysconfig .include Index: head/audio/linux-c6-openal-soft/Makefile =================================================================== --- head/audio/linux-c6-openal-soft/Makefile (revision 431244) +++ head/audio/linux-c6-openal-soft/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= openal-soft PORTVERSION= 1.12.854 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio linux MASTER_SITES= EPEL MAINTAINER= emulation@FreeBSD.org COMMENT= A 3D positional spatialized sound library (Linux CentOS ${LINUX_DIST_VER}) USES= linux:c6 USE_LINUX_RPM= yes USE_LINUX= alsalib arts esound RPMVERSION= 1.el6 USE_LDCONFIG= yes PORTDOCS= COPYING DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/audio/linux-c6-pulseaudio-libs/Makefile =================================================================== --- head/audio/linux-c6-pulseaudio-libs/Makefile (revision 431244) +++ head/audio/linux-c6-pulseaudio-libs/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= pulseaudio-libs PORTVERSION= 0.9.21 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio linux LIB_DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${PORTNAME}-glib2-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} MAINTAINER= emulation@FreeBSD.org COMMENT= Libraries for PulseAudio clients (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 24.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= dbuslibs libasyncns libsndfile tcp_wrappers-libs xorglibs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../pulseaudio/pkg-descr SRC_DISTFILES= pulseaudio-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/audio/linux-c6-pulseaudio-utils/Makefile =================================================================== --- head/audio/linux-c6-pulseaudio-utils/Makefile (revision 431244) +++ head/audio/linux-c6-pulseaudio-utils/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= pulseaudio-utils PORTVERSION= 0.9.21 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio linux MAINTAINER= emulation@FreeBSD.org COMMENT= Utils for PulseAudio clients (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 24.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= xorglibs pulseaudio-libs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../pulseaudio/pkg-descr SRC_DISTFILES= pulseaudio-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/audio/linux-c6-sdl_mixer/Makefile =================================================================== --- head/audio/linux-c6-sdl_mixer/Makefile (revision 431244) +++ head/audio/linux-c6-sdl_mixer/Makefile (revision 431245) @@ -1,27 +1,27 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= sdl_mixer PORTVERSION= 1.2.12 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio linux MASTER_SITES= EPEL DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Sample multi-channel audio mixer library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-sdl_mixer-[0-9]* linux-f8-sdl_mixer-[0-9]* LINUX_NAME= SDL_mixer RPMVERSION= 1.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= sdl12 mikmod USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= CHANGES COPYING README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/databases/linux-c6-sqlite3/Makefile =================================================================== --- head/databases/linux-c6-sqlite3/Makefile (revision 431244) +++ head/databases/linux-c6-sqlite3/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= sqlite PORTVERSION= 3.6.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases linux MAINTAINER= emulation@FreeBSD.org COMMENT= Library that implements an embeddable SQL database engine (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f8-sqlite3-[0-9]* linux-f10-sqlite3-[0-9]* RPMVERSION= 1.el6_7.2 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes PORTDOCS= README DESCR= ${.CURDIR}/../${PORTNAME}3/pkg-descr .include Index: head/devel/linux-c6-dbus-glib/Makefile =================================================================== --- head/devel/linux-c6-dbus-glib/Makefile (revision 431244) +++ head/devel/linux-c6-dbus-glib/Makefile (revision 431245) @@ -1,21 +1,21 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= dbus-glib PORTVERSION= 0.86 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= GLib bindings for D-Bus (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 6.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= dbuslibs expat USE_LINUX_RPM= yes PORTDOCS= COPYING ChangeLog NEWS DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/devel/linux-c6-dbus-libs/Makefile =================================================================== --- head/devel/linux-c6-dbus-libs/Makefile (revision 431244) +++ head/devel/linux-c6-dbus-libs/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= dbus-libs PORTVERSION= 1.2.24 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= Libraries for accessing D-BUS (Linux CentOS ${LINUX_DIST_VER}) USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 8.el6_6 USE_LDCONFIG= yes DESCR= ${.CURDIR}/../dbus/pkg-descr CONFLICTS= linux-dbus-libs-[0-9]* linux-f10-dbus-libs-[0-9]* SRC_DISTFILES= dbus-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/devel/linux-c6-devtools/Makefile =================================================================== --- head/devel/linux-c6-devtools/Makefile (revision 431244) +++ head/devel/linux-c6-devtools/Makefile (revision 431245) @@ -1,50 +1,50 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= devtools PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel BIN_DISTFILES= binutils-2.20.51.0.2-5.44.el6${EXTRACT_SUFX} \ glibc-headers-2.12-1.192.el6${EXTRACT_SUFX} \ kernel-headers-2.6.32-642.11.1.el6${EXTRACT_SUFX} \ mpfr-2.4.1-6.el6${EXTRACT_SUFX} \ cpp-4.4.7-17.el6${EXTRACT_SUFX} \ gcc-4.4.7-17.el6${EXTRACT_SUFX} \ gcc-c++-4.4.7-17.el6${EXTRACT_SUFX} \ gcc-gfortran-4.4.7-17.el6${EXTRACT_SUFX} LIB_DISTFILES= binutils-devel-2.20.51.0.2-5.44.el6${EXTRACT_SUFX} \ glibc-devel-2.12-1.192.el6${EXTRACT_SUFX} \ libstdc++-devel-4.4.7-17.el6${EXTRACT_SUFX} \ libgomp-4.4.7-17.el6${EXTRACT_SUFX} SRC_DISTFILES= binutils-2.20.51.0.2-5.44.el6${SRC_SUFX}:SOURCE \ glibc-2.12-1.192.el6${SRC_SUFX}:SOURCE \ kernel-2.6.32-642.11.1.el6${SRC_SUFX}:SOURCE \ mpfr-2.4.1-6.el6${SRC_SUFX}:SOURCE \ gcc-4.4.7-17.el6${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= Linux compilers and base libraries (CentOS ${LINUX_DIST_VER}) # LICENSE= Various GNU USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= libgfortran USE_LINUX_RPM= yes .include post-install: .if ${LINUX_ARCH} == x86_64 ${LN} -sf ${LINUXBASE}/lib64/libgcc_s.so.1 \ ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgcc_s.so ${LN} -sf ${LINUXBASE}/lib/libgcc_s.so.1 \ ${STAGEDIR}${PREFIX}/usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so .else ${LN} -sf ${LINUXBASE}/lib/libgcc_s.so.1 \ ${STAGEDIR}${PREFIX}/usr/lib/gcc/i686-redhat-linux/4.4.4/libgcc_s.so .endif .include Index: head/devel/linux-c6-libelf/Makefile =================================================================== --- head/devel/linux-c6-libelf/Makefile (revision 431244) +++ head/devel/linux-c6-libelf/Makefile (revision 431245) @@ -1,22 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libelf PORTVERSION= 0.164 +PORTREVISION= 1 CATEGORIES= devel LIB_DISTFILES= elfutils-libelf-${DISTVERSION}-${RPMVERSION}${EXTRACT_SUFX} SRC_DISTFILES= elfutils-${DISTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= ELF file handling library (CentOS ${LINUX_DIST_VER}) DOCSDIR= ${PREFIX}/usr/share/doc/elfutils-libelf-${PORTVERSION} RPMVERSION= 2.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes OPTIONS_DEFINE= NLS OPTIONS_SUB= yes .include Index: head/devel/linux-c6-libgfortran/Makefile =================================================================== --- head/devel/linux-c6-libgfortran/Makefile (revision 431244) +++ head/devel/linux-c6-libgfortran/Makefile (revision 431245) @@ -1,18 +1,18 @@ # $FreeBSD$ PORTNAME= libgfortran PORTVERSION= 4.4.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of runtime libs for gfortran (Linux Centos ${LINUX_DIST_VER}) USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 17.el6 USE_LDCONFIG= yes SRC_DISTFILES= gcc-${DISTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/devel/linux-c6-libglade2/Makefile =================================================================== --- head/devel/linux-c6-libglade2/Makefile (revision 431244) +++ head/devel/linux-c6-libglade2/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: lme # $FreeBSD$ PORTNAME= libglade2 PORTVERSION= 2.6.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of libglade2 (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-libglade2-[0-9]* linux-f10-libglade2-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 3.1.el6 USE_LDCONFIG= yes PORTDOCS= AUTHORS COPYING NEWS README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/devel/linux-c6-libpciaccess/Makefile =================================================================== --- head/devel/linux-c6-libpciaccess/Makefile (revision 431244) +++ head/devel/linux-c6-libpciaccess/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libpciaccess PORTVERSION= 0.13.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= emulation@FreeBSD.org COMMENT= Generic PCI access library (CentOS ${LINUX_DIST_VER}) # LICENSE= Various GNU USES= linux:c6 RPMVERSION= 1.el6 USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr PLIST_SUB+= NLS="" .include Index: head/devel/linux-c6-libsigc++20/Makefile =================================================================== --- head/devel/linux-c6-libsigc++20/Makefile (revision 431244) +++ head/devel/linux-c6-libsigc++20/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libsigc++20 PORTVERSION= 2.2.4.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= Callback Framework for C++(Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-libsigc++20-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 1.el6 USE_LDCONFIG= yes PORTDOCS= AUTHORS COPYING ChangeLog NEWS README TODO DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/devel/linux-c6-libthai/Makefile =================================================================== --- head/devel/linux-c6-libthai/Makefile (revision 431244) +++ head/devel/linux-c6-libthai/Makefile (revision 431245) @@ -1,17 +1,18 @@ # $FreeBSD$ PORTNAME= libthai PORTVERSION= 0.1.12 +PORTREVISION= 1 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= Thai language support library (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 3.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/devel/linux-c6-ncurses-base/Makefile =================================================================== --- head/devel/linux-c6-ncurses-base/Makefile (revision 431244) +++ head/devel/linux-c6-ncurses-base/Makefile (revision 431245) @@ -1,20 +1,20 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= ${LINUX_NAME}-base PORTVERSION= 5.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel linux MAINTAINER= bacon4000@gmail.com COMMENT= Terminfo database required by Linux ncurses programs LINUX_NAME= ncurses RPMVERSION= 4.20090207.el6 USES= linux:c6 USE_LINUX_RPM= nolib SRC_DISTFILES= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE DESCR= ${.CURDIR}/../${LINUX_NAME}/pkg-descr .include Index: head/devel/linux-c6-nspr/Makefile =================================================================== --- head/devel/linux-c6-nspr/Makefile (revision 431244) +++ head/devel/linux-c6-nspr/Makefile (revision 431245) @@ -1,21 +1,22 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= nspr PORTVERSION= 4.11.0 +PORTREVISION= 1 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= Netscape Portable Runtime (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-nspr-[0-9]* RPMVERSION= 1.el6 USES= linux:c6 USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/devel/linux-c6-qt47/Makefile =================================================================== --- head/devel/linux-c6-qt47/Makefile (revision 431244) +++ head/devel/linux-c6-qt47/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47 PORTVERSION= 4.7.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel linux MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \ LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) RPMVERSION= 1_18.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= fontconfig png dbuslibs sqlite3 hicontheme openssl USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../qt4/pkg-descr SRC_DISTFILES= # no file available .include Index: head/devel/linux-c6-sdl12/Makefile =================================================================== --- head/devel/linux-c6-sdl12/Makefile (revision 431244) +++ head/devel/linux-c6-sdl12/Makefile (revision 431245) @@ -1,26 +1,26 @@ # Created by: Johannes Meixner Index: head/dns/linux-c6-libasyncns/Makefile =================================================================== --- head/dns/linux-c6-libasyncns/Makefile (revision 431244) +++ head/dns/linux-c6-libasyncns/Makefile (revision 431245) @@ -1,17 +1,17 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libasyncns PORTVERSION= 0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns devel linux MAINTAINER= emulation@FreeBSD.org COMMENT= C library for executing DNS queries asynchronously (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 1.1.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes .include Index: head/editors/linux-sublime3/Makefile =================================================================== --- head/editors/linux-sublime3/Makefile (revision 431244) +++ head/editors/linux-sublime3/Makefile (revision 431245) @@ -1,44 +1,45 @@ # Created by: Miguel Clara # $FreeBSD$ PORTNAME= sublime PORTVERSION= 3.1.26 +PORTREVISION= 1 CATEGORIES= editors linux MASTER_SITES= http://download.sublimetext.com/ PKGNAMEPREFIX= linux- PKGNAMESUFFIX= 3 DISTNAME_i386= sublime_text_3_build_3126_x32 DISTNAME_x86_64=sublime_text_3_build_3126_x64 MAINTAINER= miguelmclara@gmail.com COMMENT= Sophisticated text editor for code, markup and prose USES= desktop-file-utils linux tar:bzip2 USE_LINUX= xorglibs gtk2 INSTALLS_ICONS= yes WRKSRC= ${WRKDIR}/sublime_text_3 CONFLICTS_INSTALL= linux-sublime-[0-9]* NO_BUILD= SUB_FILES= sublime do-install: @${MKDIR} ${STAGEDIR}${DATADIR} \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps/ \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/32x32/apps/ \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps/ \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/128x128/apps/ \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/256x256/apps/ ${INSTALL_DATA} ${WRKSRC}/Icon/16x16/sublime-text.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps/ ${INSTALL_DATA} ${WRKSRC}/Icon/32x32/sublime-text.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/32x32/apps/ ${INSTALL_DATA} ${WRKSRC}/Icon/48x48/sublime-text.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/48x48/apps/ ${INSTALL_DATA} ${WRKSRC}/Icon/128x128/sublime-text.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/128x128/apps/ ${INSTALL_DATA} ${WRKSRC}/Icon/256x256/sublime-text.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/256x256/apps/ ${INSTALL_DATA} ${WRKSRC}/sublime_text.desktop ${STAGEDIR}${PREFIX}/share/applications/ cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} ${INSTALL_SCRIPT} ${WRKDIR}/sublime ${STAGEDIR}${PREFIX}/bin/sublime .include Index: head/emulators/linux_base-c6/Makefile =================================================================== --- head/emulators/linux_base-c6/Makefile (revision 431244) +++ head/emulators/linux_base-c6/Makefile (revision 431245) @@ -1,154 +1,154 @@ # Created by: Svyatoslav Lempert # $FreeBSD$ PORTNAME= c6 PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= emulators linux PKGNAMEPREFIX= linux_base- MAINTAINER= emulation@FreeBSD.org COMMENT= Base set of packages needed in Linux mode for i386/amd64 (Linux CentOS 6) BIN_DISTFILES= basesystem-10.0-4.el6.noarch.rpm \ bash-4.1.2-40.el6${EXTRACT_SUFX} \ bzip2-1.0.5-7.el6_0${EXTRACT_SUFX} \ centos-release-6-8.el6.centos.12.3${EXTRACT_SUFX} \ compat-libstdc++-296-2.96-144.el6.i686.rpm \ coreutils-8.4-43.el6${EXTRACT_SUFX} \ e2fsprogs-1.41.12-22.el6${EXTRACT_SUFX} \ elfutils-0.164-2.el6${EXTRACT_SUFX} \ findutils-4.4.2-9.el6${EXTRACT_SUFX} \ glibc-common-2.12-1.192.el6${EXTRACT_SUFX} \ grep-2.20-5.el6_8${EXTRACT_SUFX} \ info-4.13a-8.el6${EXTRACT_SUFX} \ keyutils-1.4-5.el6${EXTRACT_SUFX} \ less-436-13.el6${EXTRACT_SUFX} \ ncurses-5.7-4.20090207.el6${EXTRACT_SUFX} \ sed-4.2.1-10.el6${EXTRACT_SUFX} \ setserial-2.17-25.el6${EXTRACT_SUFX} \ setup-2.8.14-20.el6_4.1.noarch.rpm \ which-2.19-6.el6${EXTRACT_SUFX} \ filesystem-2.4.30-3.el6${EXTRACT_SUFX} LIB_DISTFILES= bzip2-libs-1.0.5-7.el6_0${EXTRACT_SUFX} \ compat-db43-4.3.29-15.el6${EXTRACT_SUFX} \ compat-libstdc++-33-3.2.3-69.el6${EXTRACT_SUFX} \ db4-4.7.25-20.el6_7${EXTRACT_SUFX} \ e2fsprogs-libs-1.41.12-22.el6${EXTRACT_SUFX} \ freetype-2.3.11-17.el6${EXTRACT_SUFX} \ gamin-0.1.10-9.el6${EXTRACT_SUFX} \ gdbm-1.8.0-39.el6${EXTRACT_SUFX} \ glib2-2.28.8-5.el6${EXTRACT_SUFX} \ glibc-2.12-1.192.el6${EXTRACT_SUFX} \ gmp-4.3.1-10.el6${EXTRACT_SUFX} \ keyutils-libs-1.4-5.el6${EXTRACT_SUFX} \ krb5-libs-1.10.3-57.el6${EXTRACT_SUFX} \ libacl-2.2.49-6.el6${EXTRACT_SUFX} \ libattr-2.4.44-7.el6${EXTRACT_SUFX} \ libblkid-2.17.2-12.24.el6_8.1${EXTRACT_SUFX} \ libcap-2.16-5.5.el6${EXTRACT_SUFX} \ libcom_err-1.41.12-22.el6${EXTRACT_SUFX} \ libgcc-4.4.7-17.el6${EXTRACT_SUFX} \ libidn-1.18-2.el6${EXTRACT_SUFX} \ libselinux-2.0.94-7.el6${EXTRACT_SUFX} \ libsepol-2.0.41-4.el6${EXTRACT_SUFX} \ libstdc++-4.4.7-17.el6${EXTRACT_SUFX} \ libuuid-2.17.2-12.24.el6_8.1${EXTRACT_SUFX} \ ncurses-libs-5.7-4.20090207.el6${EXTRACT_SUFX} \ pcre-7.8-7.el6${EXTRACT_SUFX} \ popt-1.13-7.el6${EXTRACT_SUFX} \ readline-6.0-4.el6${EXTRACT_SUFX} \ redhat-lsb-core-4.0-7.el6.centos${EXTRACT_SUFX} \ slang-2.2.1-1.el6${EXTRACT_SUFX} \ util-linux-ng-2.17.2-12.24.el6_8.1${EXTRACT_SUFX} \ zlib-1.2.3-29.el6${EXTRACT_SUFX} SRC_DISTFILES= acl-2.2.49-6.el6${SRC_SUFX}:SOURCE \ attr-2.4.44-7.el6${SRC_SUFX}:SOURCE \ basesystem-10.0-4.el6${SRC_SUFX}:SOURCE \ bash-4.1.2-40.el6${SRC_SUFX}:SOURCE \ bzip2-1.0.5-7.el6_0${SRC_SUFX}:SOURCE \ centos-release-6-8.el6.centos.12.3${SRC_SUFX}:SOURCE \ compat-db-4.6.21-15.el6${SRC_SUFX}:SOURCE \ compat-gcc-296-2.96-144.el6${SRC_SUFX}:SOURCE \ compat-gcc-32-3.2.3-69.el6${SRC_SUFX}:SOURCE \ coreutils-8.4-43.el6${SRC_SUFX}:SOURCE \ db4-4.7.25-20.el6_7${SRC_SUFX}:SOURCE \ e2fsprogs-1.41.12-22.el6${SRC_SUFX}:SOURCE \ elfutils-0.164-2.el6${SRC_SUFX}:SOURCE \ filesystem-2.4.30-3.el6${SRC_SUFX}:SOURCE \ findutils-4.4.2-9.el6${SRC_SUFX}:SOURCE \ freetype-2.3.11-17.el6${SRC_SUFX}:SOURCE \ gamin-0.1.10-9.el6${SRC_SUFX}:SOURCE \ gcc-4.4.7-17.el6${SRC_SUFX}:SOURCE \ gdbm-1.8.0-39.el6${SRC_SUFX}:SOURCE \ glib2-2.28.8-5.el6${SRC_SUFX}:SOURCE \ glibc-2.12-1.192.el6${SRC_SUFX}:SOURCE \ gmp-4.3.1-10.el6${SRC_SUFX}:SOURCE \ grep-2.20-5.el6_8${SRC_SUFX}:SOURCE \ keyutils-1.4-5.el6${SRC_SUFX}:SOURCE \ krb5-1.10.3-57.el6${SRC_SUFX}:SOURCE \ less-436-13.el6${SRC_SUFX}:SOURCE \ libcap-2.16-5.5.el6${SRC_SUFX}:SOURCE \ libidn-1.18-2.el6${SRC_SUFX}:SOURCE \ libselinux-2.0.94-7.el6${SRC_SUFX}:SOURCE \ libsepol-2.0.41-4.el6${SRC_SUFX}:SOURCE \ ncurses-5.7-4.20090207.el6${SRC_SUFX}:SOURCE \ pcre-7.8-7.el6${SRC_SUFX}:SOURCE \ popt-1.13-7.el6${SRC_SUFX}:SOURCE \ readline-6.0-4.el6${SRC_SUFX}:SOURCE \ redhat-lsb-4.0-7.el6.centos${SRC_SUFX}:SOURCE \ sed-4.2.1-10.el6${SRC_SUFX}:SOURCE \ setserial-2.17-25.el6${SRC_SUFX}:SOURCE \ setup-2.8.14-20.el6_4.1${SRC_SUFX}:SOURCE \ slang-2.2.1-1.el6${SRC_SUFX}:SOURCE \ texinfo-4.13a-8.el6${SRC_SUFX}:SOURCE \ util-linux-ng-2.17.2-12.24.el6_8.1${SRC_SUFX}:SOURCE \ which-2.19-6.el6${SRC_SUFX}:SOURCE \ zlib-1.2.3-29.el6${SRC_SUFX}:SOURCE CONFLICTS= linux_base-gentoo* linux_base-f10-[0-9]* linux-glib2-* PLIST_SUB= LINUXBASE=${LINUXBASE} SYSCTLMIB=${SYSCTLMIB} USES= linux:c6 USE_LINUX= # empty USE_LINUX_RPM= yes REMOVE_DIRS= boot home media root tmp usr/lib/pm-utils usr/lib64/pm-utils \ usr/local var/log var/run var/tmp REMOVE_FILES= bin/df bin/su etc/exports etc/group etc/gshadow etc/motd \ etc/passwd etc/printcap etc/protocols etc/services etc/shadow \ usr/tmp .include .if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 11000105 SYSCTLMIB= kern.features.linux64 .else SYSCTLMIB= compat.linux.osrelease .endif post-patch: @${RM} -r ${REMOVE_DIRS:S|^|${WRKSRC}/|} @${RM} ${REMOVE_FILES:S|^|${WRKSRC}/|} @${LN} -sfh centos-release-6 ${WRKSRC}/usr/share/doc/redhat-release @${BRANDELF} -t Linux ${WRKSRC}/lib/ld-2.12.so .if ${LINUX_ARCH} == x86_64 @${BRANDELF} -t Linux ${WRKSRC}/lib64/ld-2.12.so .endif post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/dev/shm ${TOUCH} ${STAGEDIR}${PREFIX}/etc/mtab ${MV} ${STAGEDIR}${PREFIX}/etc/krb5.conf \ ${STAGEDIR}${PREFIX}/etc/krb5.conf.sample ${MV} ${STAGEDIR}${PREFIX}/etc/nsswitch.conf \ ${STAGEDIR}${PREFIX}/etc/nsswitch.conf.sample ${MV} ${STAGEDIR}${PREFIX}/usr/lib/locale/locale-archive.tmpl \ ${STAGEDIR}${PREFIX}/usr/lib/locale/locale-archive ${LN} -sf /var/tmp ${STAGEDIR}${PREFIX}/usr/tmp ${LN} -sf ../usr/bin/[ ${STAGEDIR}${PREFIX}/bin/[ ${LN} -sf ../usr/bin/expr ${STAGEDIR}${PREFIX}/bin/expr ${LN} -sf ../usr/bin/test ${STAGEDIR}${PREFIX}/bin/test ${LN} -sf ../usr/bin/uuidgen ${STAGEDIR}${PREFIX}/bin/uuidgen ${LN} -sf ../../lib/librt.so.1 ${STAGEDIR}${PREFIX}/usr/lib/librt.so.1 .include Index: head/ftp/linux-c6-curl/Makefile =================================================================== --- head/ftp/linux-c6-curl/Makefile (revision 431244) +++ head/ftp/linux-c6-curl/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= curl PORTVERSION= 7.19.7 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= ftp linux LIB_DISTFILES= lib${DISTNAME}${EXTRACT_SUFX} SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= Command line tool for transferring files with URL syntax (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-curl-[0-9]* linux-f10-curl-[0-9]* USES= linux:c6 USE_LINUX= libssh2 nspr nss openldap USE_LINUX_RPM= nolib RPMVERSION= 52.el6 USE_LDCONFIG= yes PORTDOCS= BUGS COPYING FEATURES README TODO CHANGES FAQ MANUAL RESOURCES TheArtOfHttpScripting DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-cairo/Makefile =================================================================== --- head/graphics/linux-c6-cairo/Makefile (revision 431244) +++ head/graphics/linux-c6-cairo/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= cairo PORTVERSION= 1.8.8 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics linux MAINTAINER= emulation@FreeBSD.org COMMENT= Vector graphics library Cairo (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-cairo-[0-9]* linux-f10-cairo-[0-9]* RPMVERSION= 6.el6_6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= fontconfig pixman png xorglibs USE_LINUX_RPM= yes PORTDOCS= AUTHORS BIBLIOGRAPHY BUGS COPYING COPYING-LGPL-2.1 \ COPYING-MPL-1.1 NEWS README .include Index: head/graphics/linux-c6-dri/Makefile =================================================================== --- head/graphics/linux-c6-dri/Makefile (revision 431244) +++ head/graphics/linux-c6-dri/Makefile (revision 431245) @@ -1,34 +1,34 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= dri PORTVERSION= 11.0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics linux LIB_DISTFILES= mesa-libGL-${PORTVERSION}-4.el6${EXTRACT_SUFX} \ mesa-libGLU-${PORTVERSION}-4.el6${EXTRACT_SUFX} \ mesa-dri-drivers-${PORTVERSION}-4.el6${EXTRACT_SUFX} \ mesa-private-llvm-3.6.2-1.el6${EXTRACT_SUFX} \ libdrm-2.4.65-2.el6${EXTRACT_SUFX} \ freeglut-2.6.0-1.el6${EXTRACT_SUFX} SRC_DISTFILES= mesa-${PORTVERSION}-4.el6.src.rpm:SOURCE \ mesa-private-llvm-3.6.2-1.el6.src.rpm:SOURCE \ libdrm-2.4.65-2.el6.src.rpm:SOURCE \ freeglut-2.6.0-1.el6.src.rpm:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= Mesa libGL runtime libraries (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux_dri-[0-9]* linux_dri-devel-[0-9]* linux-f10-dri-[0-9]* linux-dri-[0-9]* USES= linux:c6 USE_LINUX= expat libelf libpciaccess xorglibs USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr post-install: @${RM} ${STAGEDIR}${PREFIX}/usr/lib/libGL.so.1 @${RM} ${STAGEDIR}${PREFIX}/usr/lib64/libGL.so.1 .include Index: head/graphics/linux-c6-gdk-pixbuf2/Makefile =================================================================== --- head/graphics/linux-c6-gdk-pixbuf2/Makefile (revision 431244) +++ head/graphics/linux-c6-gdk-pixbuf2/Makefile (revision 431245) @@ -1,19 +1,19 @@ # Created by: Kris Moore # $FreeBSD$ PORTNAME= gdk-pixbuf2 PORTVERSION= 2.24.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics linux MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the gdk-pixbuf lib (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 6.el6_7 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= jasper jpeg png tiff xorglibs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-glx-utils/Makefile =================================================================== --- head/graphics/linux-c6-glx-utils/Makefile (revision 431244) +++ head/graphics/linux-c6-glx-utils/Makefile (revision 431245) @@ -1,20 +1,20 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= glx-utils PORTVERSION= 11.0.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics linux MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the GLX utils (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 4.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= dri xorglibs USE_LINUX_RPM= nolib SRC_DISTFILES= mesa-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/graphics/linux-c6-jasper/Makefile =================================================================== --- head/graphics/linux-c6-jasper/Makefile (revision 431244) +++ head/graphics/linux-c6-jasper/Makefile (revision 431245) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= jasper PORTVERSION= 1.900.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics linux LIB_DISTFILES= ${PORTNAME}-libs-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= JPEG-2000 reference implementation (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 16.el6_6.3 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= jpeg USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-jpeg/Makefile =================================================================== --- head/graphics/linux-c6-jpeg/Makefile (revision 431244) +++ head/graphics/linux-c6-jpeg/Makefile (revision 431245) @@ -1,24 +1,24 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= jpeg PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics linux DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the JPEG lib (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-jpeg-[0-9]* linux-f10-jpeg-[0-9]* LINUX_NAME= libjpeg-turbo RPMVERSION= 3.el6_5 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../jpeg/pkg-descr DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} .include Index: head/graphics/linux-c6-png/Makefile =================================================================== --- head/graphics/linux-c6-png/Makefile (revision 431244) +++ head/graphics/linux-c6-png/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= png PORTVERSION= 1.2.49 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics linux DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of the PNG lib (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-png-[0-9]* linux-f8-png-[0-9]* linux-f10-png-[0-9]* LINUX_NAME= libpng RPMVERSION= 2.el6_7 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= CHANGES LICENSE README TODO example.c libpng-1.2.49.txt CMakeLists.txt DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-sdl_image/Makefile =================================================================== --- head/graphics/linux-c6-sdl_image/Makefile (revision 431244) +++ head/graphics/linux-c6-sdl_image/Makefile (revision 431245) @@ -1,28 +1,28 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= sdl_image PORTVERSION= 1.2.12 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics linux MASTER_SITES= EPEL DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Simple library to load images as SDL interfaces (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-sdl_image-[0-9]* linux-f8-sdl_image-[0-9]* LINUX_NAME= SDL_image RPMVERSION= 9.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= jpeg png sdl12 tiff USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= CHANGES COPYING README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/graphics/linux-c6-sdl_ttf/Makefile =================================================================== --- head/graphics/linux-c6-sdl_ttf/Makefile (revision 431244) +++ head/graphics/linux-c6-sdl_ttf/Makefile (revision 431245) @@ -1,26 +1,26 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= sdl_ttf PORTVERSION= 2.0.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics linux MASTER_SITES= EPEL DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= Simple library to load True Type Fonts as SDL interfaces (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-sdl_ttf-[0-9]* LINUX_NAME= SDL_ttf RPMVERSION= 6.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= jpeg png sdl12 tiff USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} PORTDOCS= CHANGES COPYING README .include Index: head/graphics/linux-c6-tiff/Makefile =================================================================== --- head/graphics/linux-c6-tiff/Makefile (revision 431244) +++ head/graphics/linux-c6-tiff/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= tiff PORTVERSION= 3.9.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics linux DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= TIFF library (Linux CentOS ${LINUX_DIST_VER}) LICENSE= BSD3CLAUSE LINUX_NAME= lib${PORTNAME} RPMVERSION= 18.el6_8 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= jpeg USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr DOCSDIR= ${PREFIX}/usr/share/doc/${LINUX_NAME}-${PORTVERSION} .include Index: head/lang/linux-c6-tcl85/Makefile =================================================================== --- head/lang/linux-c6-tcl85/Makefile (revision 431244) +++ head/lang/linux-c6-tcl85/Makefile (revision 431245) @@ -1,24 +1,24 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= tcl PORTVERSION= 8.5.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang linux PKGNAMESUFFIX= 85 MAINTAINER= emulation@FreeBSD.org COMMENT= Tool Command Language (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-tcl85-[0-9]* RPMVERSION= 6.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes USE_LINUX_RPM_BAD_PERMS= yes DATADIR= ${PREFIX}/usr/share/tcl${PORTVERSION:R} DESCR= ${.CURDIR}/../${PORTNAME}${PKGNAMESUFFIX}/pkg-descr .include Index: head/multimedia/linux-c6-libtheora/Makefile =================================================================== --- head/multimedia/linux-c6-libtheora/Makefile (revision 431244) +++ head/multimedia/linux-c6-libtheora/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libtheora PORTVERSION= 1.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia linux MAINTAINER= emulation@FreeBSD.org COMMENT= Theora Video Compression Codec (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-libtheora-[0-9]* linux-f10-libtheora[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 2.el6 USE_LDCONFIG= yes PORTDOCS= COPYING README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/multimedia/linux-c6-libv4l/Makefile =================================================================== --- head/multimedia/linux-c6-libv4l/Makefile (revision 431244) +++ head/multimedia/linux-c6-libv4l/Makefile (revision 431245) @@ -1,20 +1,20 @@ # Created by: bsam # $FreeBSD$ PORTNAME= libv4l PORTVERSION= 0.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia linux MAINTAINER= emulation@FreeBSD.org COMMENT= Collection of video4linux support libraries (CentOS 6) CONFLICTS= linux-f10-libv4l-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 2.el6 USE_LDCONFIG= yes PLIST_SUB+= PORTVERSION=${PORTVERSION} .include Index: head/net/linux-c6-avahi-libs/Makefile =================================================================== --- head/net/linux-c6-avahi-libs/Makefile (revision 431244) +++ head/net/linux-c6-avahi-libs/Makefile (revision 431245) @@ -1,20 +1,20 @@ # Created by: lme # $FreeBSD$ PORTNAME= avahi-libs PORTVERSION= 0.6.25 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net linux MAINTAINER= emulation@FreeBSD.org COMMENT= Libraries for Avahi (Linux CentOS ${LINUX_DIST_VER}) USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 15.el6_8.1 USE_LDCONFIG= yes SRC_DISTFILES= ${PORTNAME:S/-libs//}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE DESCR= ${.CURDIR}/../avahi/pkg-descr .include Index: head/net/linux-c6-openldap/Makefile =================================================================== --- head/net/linux-c6-openldap/Makefile (revision 431244) +++ head/net/linux-c6-openldap/Makefile (revision 431245) @@ -1,32 +1,32 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= openldap PORTVERSION= 2.4.40 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net linux MAINTAINER= emulation@FreeBSD.org COMMENT= Lightweight Directory Access Protocol libraries (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-openldap-[0-9]* USES= linux:c6 USE_LINUX= cyrus-sasl2 nss nspr RPMVERSION= 12.el6 USE_LINUX_RPM= yes USE_LDCONFIG= yes DESCR= ${.CURDIR}/../openldap24-server/pkg-descr PORTDOCS= ANNOUNCEMENT CHANGES COPYRIGHT LICENSE README # do not install any openldap configuration directories/files post-extract: ${RM} -r ${WRKSRC}/etc # use a native openldap configuration directories/files post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc ${LN} -sf ${LOCALBASE}/etc/openldap ${STAGEDIR}${PREFIX}/etc/openldap .include Index: head/net/linux-c6-tcp_wrappers-libs/Makefile =================================================================== --- head/net/linux-c6-tcp_wrappers-libs/Makefile (revision 431244) +++ head/net/linux-c6-tcp_wrappers-libs/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= tcp_wrappers-libs PORTVERSION= 7.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net linux MAINTAINER= emulation@FreeBSD.org COMMENT= Libraries tcp wrappers (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 58.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= xorglibs USE_LINUX_RPM= yes DOCSDIR= ${PREFIX}/usr/share/doc/tcp_wrappers-${PORTVERSION} SRC_DISTFILES= tcp_wrappers-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE .include Index: head/print/linux-c6-cups-libs/Makefile =================================================================== --- head/print/linux-c6-cups-libs/Makefile (revision 431244) +++ head/print/linux-c6-cups-libs/Makefile (revision 431245) @@ -1,21 +1,21 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= cups-libs PORTVERSION= 1.4.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print linux MAINTAINER= emulation@FreeBSD.org COMMENT= Common UNIX Printing System libraries RPMVERSION= 74.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= gnutls USE_LINUX_RPM= yes SRC_DISTFILES= cups-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE DESCR= ${.CURDIR}/../cups/pkg-descr .include Index: head/security/linux-c6-cyrus-sasl2/Makefile =================================================================== --- head/security/linux-c6-cyrus-sasl2/Makefile (revision 431244) +++ head/security/linux-c6-cyrus-sasl2/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= cyrus-sasl2 PORTVERSION= 2.1.23 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security linux DISTNAME= cyrus-sasl-lib-${PORTVERSION}-${RPMVERSION} SRC_DISTFILES= cyrus-sasl-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= RFC 2222 SASL (Simple Authentication and Security Layer) (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 15.el6_6.2 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr DOCSDIR= ${PREFIX}/usr/share/doc/cyrus-sasl-lib-${PORTVERSION} .include Index: head/security/linux-c6-gnutls/Makefile =================================================================== --- head/security/linux-c6-gnutls/Makefile (revision 431244) +++ head/security/linux-c6-gnutls/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= gnutls PORTVERSION= 2.8.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= GNU Transport Layer Security library USES= linux:c6 USE_LINUX_RPM= yes USE_LINUX= libtasn1 libgcrypt libgpg-error RPMVERSION= 19.el6_7 USE_LDCONFIG= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" DESCR= ${.CURDIR}/../gnutls/pkg-descr .include Index: head/security/linux-c6-libgcrypt/Makefile =================================================================== --- head/security/linux-c6-libgcrypt/Makefile (revision 431244) +++ head/security/linux-c6-libgcrypt/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libgcrypt PORTVERSION= 1.4.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= General purpose crypto library based on code used in GnuPG (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 12.el6_8 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes PORTDOCS= AUTHORS COPYING.LIB NEWS THANKS DESCR= ${.CURDIR}/../libgcrypt/pkg-descr post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/gcrypt .include Index: head/security/linux-c6-libgpg-error/Makefile =================================================================== --- head/security/linux-c6-libgpg-error/Makefile (revision 431244) +++ head/security/linux-c6-libgpg-error/Makefile (revision 431245) @@ -1,19 +1,19 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libgpg-error PORTVERSION= 1.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= Common error values for all GnuPG components RPMVERSION= 4.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../libgpg-error/pkg-descr .include Index: head/security/linux-c6-libssh2/Makefile =================================================================== --- head/security/linux-c6-libssh2/Makefile (revision 431244) +++ head/security/linux-c6-libssh2/Makefile (revision 431245) @@ -1,24 +1,24 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= libssh2 PORTVERSION= 1.4.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= Library implementing the SSH2 protocol (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-libssh2-[0-9]* RPMVERSION= 2.el6_7.1 USES= linux:c6 USE_LINUX= openssl USE_LINUX_RPM= yes USE_LDCONFIG= yes PORTDOCS= AUTHORS COPYING ChangeLog NEWS README DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/security/linux-c6-libtasn1/Makefile =================================================================== --- head/security/linux-c6-libtasn1/Makefile (revision 431244) +++ head/security/linux-c6-libtasn1/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libtasn1 PORTVERSION= 2.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= ASN.1 structure parser library USES= cpe linux:c6 CPE_VENDOR= gnu USE_LINUX_RPM= yes RPMVERSION= 6.el6_5 USE_LDCONFIG= yes PORTDOCS= AUTHORS COPYING COPYING.LIB ChangeLog NEWS README THANKS TODO libtasn1.pdf DESCR= ${.CURDIR}/../libtasn1/pkg-descr .include Index: head/security/linux-c6-nss/Makefile =================================================================== --- head/security/linux-c6-nss/Makefile (revision 431244) +++ head/security/linux-c6-nss/Makefile (revision 431245) @@ -1,29 +1,30 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= nss PORTVERSION= 3.21.3 +PORTREVISION= 1 CATEGORIES= security linux LIB_DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ nss-util-${PORTVERSION}-1.el6_8${EXTRACT_SUFX} \ nss-softokn-3.14.3-23.3.el6_8${EXTRACT_SUFX} \ nss-softokn-freebl-3.14.3-23.3.el6_8${EXTRACT_SUFX} MAINTAINER= emulation@FreeBSD.org COMMENT= Network Security Services (Linux CentOS ${LINUX_DIST_VER}) LICENSE= MPL RPMVERSION= 2.el6_8 USES= linux:c6 USE_LINUX= nspr sqlite3 USE_LINUX_RPM= yes USE_LDCONFIG= yes SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE \ nss-util-${PORTVERSION}-1.el6_8.src.rpm:SOURCE \ nss-softokn-3.14.3-23.3.el6_8.src.rpm:SOURCE DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/security/linux-c6-openssl/Makefile =================================================================== --- head/security/linux-c6-openssl/Makefile (revision 431244) +++ head/security/linux-c6-openssl/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= openssl PORTVERSION= 1.0.1e -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= OpenSSL toolkit (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-openssl-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 48.el6_8.3 USE_LDCONFIG= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/security/linux-c6-openssl-compat/Makefile =================================================================== --- head/security/linux-c6-openssl-compat/Makefile (revision 431244) +++ head/security/linux-c6-openssl-compat/Makefile (revision 431245) @@ -1,30 +1,30 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= openssl-compat PORTVERSION= 0.9.8e -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security linux DISTNAME= openssl098e-${PORTVERSION}-${RPMVERSION} MAINTAINER= emulation@FreeBSD.org COMMENT= OpenSSL toolkit (Linux CentOS ${LINUX_DIST_VER}) LICENSE= OpenSSL LICENSE_FILE= ${WRKSRC}/usr/share/doc/openssl098e-${PORTVERSION}/LICENSE CONFLICTS= linux-f10-openssl-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 20.el6.centos.1 USE_LDCONFIG= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" DESCR= ${.CURDIR}/../openssl/pkg-descr post-install: # For libflashsupport.so in www/linux-c6-flashplugin11. ${LN} -sf libssl.so.6 ${STAGEDIR}${PREFIX}/usr/lib/libssl.so.7 .include Index: head/textproc/linux-c6-aspell/Makefile =================================================================== --- head/textproc/linux-c6-aspell/Makefile (revision 431244) +++ head/textproc/linux-c6-aspell/Makefile (revision 431245) @@ -1,21 +1,21 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= aspell PORTVERSION= 0.60.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc linux MAINTAINER= emulation@FreeBSD.org COMMENT= Spelling checker with better logic than ispell (Linux CentOS ${LINUX_DIST_VER}) LICENSE= LGPL21+ RPMVERSION= 12.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/textproc/linux-c6-expat/Makefile =================================================================== --- head/textproc/linux-c6-expat/Makefile (revision 431244) +++ head/textproc/linux-c6-expat/Makefile (revision 431245) @@ -1,22 +1,22 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= expat PORTVERSION= 2.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc linux MAINTAINER= emulation@FreeBSD.org COMMENT= Linux/i386 binary port of Expat XML-parsing library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-expat-[0-9]* linux-f8-expat-[0-9]* linux-f10-expat-[0-9]* RPMVERSION= 13.el6_8 USES= linux:c6 USE_LINUX_RPM= yes USE_LDCONFIG= yes PORTDOCS= COPYING README DESCR= ${.CURDIR}/../${PORTNAME}2/pkg-descr .include Index: head/textproc/linux-c6-libxml2/Makefile =================================================================== --- head/textproc/linux-c6-libxml2/Makefile (revision 431244) +++ head/textproc/linux-c6-libxml2/Makefile (revision 431245) @@ -1,24 +1,24 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= libxml2 PORTVERSION= 2.7.6 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= textproc linux MAINTAINER= emulation@FreeBSD.org COMMENT= Library providing XML and HTML support (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-libxml2-[0-9]* USES= linux:c6 USE_LINUX_RPM= yes RPMVERSION= 21.el6_8.1 USE_LDCONFIG= yes PORTDOCS= AUTHORS ChangeLog.gz Copyright NEWS README TODO DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/www/linux-c6-qt47-webkit/Makefile =================================================================== --- head/www/linux-c6-qt47-webkit/Makefile (revision 431244) +++ head/www/linux-c6-qt47-webkit/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47-webkit PORTVERSION= 4.7.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www linux MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/ \ LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) RPMVERSION= 1_18.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= fontconfig png xorglibs sqlite3 qt47 qt47-x11 USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../../www/webkit-gtk3/pkg-descr # contains no GTK references, reuse SRC_DISTFILES= # unretrievable .include Index: head/x11/linux-c6-pixman/Makefile =================================================================== --- head/x11/linux-c6-pixman/Makefile (revision 431244) +++ head/x11/linux-c6-pixman/Makefile (revision 431245) @@ -1,17 +1,18 @@ # $FreeBSD$ PORTNAME= pixman PORTVERSION= 0.32.8 +PORTREVISION= 1 CATEGORIES= x11 linux MAINTAINER= emulation@FreeBSD.org COMMENT= Low-level pixel manipulation library (Linux CentOS ${LINUX_DIST_VER}) RPMVERSION= 1.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/x11/linux-c6-xorg-libs/Makefile =================================================================== --- head/x11/linux-c6-xorg-libs/Makefile (revision 431244) +++ head/x11/linux-c6-xorg-libs/Makefile (revision 431245) @@ -1,85 +1,85 @@ # Created by: bsam # $FreeBSD$ PORTNAME= xorg-libs PORTVERSION= 7.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 linux LIB_DISTFILES= libICE-1.0.6-1.el6${EXTRACT_SUFX} \ libSM-1.2.1-2.el6${EXTRACT_SUFX} \ libX11-1.6.3-2.el6${EXTRACT_SUFX} \ libXScrnSaver-1.2.2-2.el6${EXTRACT_SUFX} \ libXau-1.0.6-4.el6${EXTRACT_SUFX} \ libXaw-1.0.11-2.el6${EXTRACT_SUFX} \ libXcomposite-0.4.3-4.el6${EXTRACT_SUFX} \ libXcursor-1.1.14-2.1.el6${EXTRACT_SUFX} \ libXdamage-1.1.3-4.el6${EXTRACT_SUFX} \ libXdmcp-1.1.1-3.el6${EXTRACT_SUFX} \ libXevie-1.0.3-4.el6${EXTRACT_SUFX} \ libXext-1.3.3-1.el6${EXTRACT_SUFX} \ libXfixes-5.0.1-2.1.el6${EXTRACT_SUFX} \ libXfont-1.5.1-2.el6${EXTRACT_SUFX} \ libXft-2.3.2-1.el6${EXTRACT_SUFX} \ libXi-1.7.4-1.el6${EXTRACT_SUFX} \ libXinerama-1.1.3-2.1.el6${EXTRACT_SUFX} \ libXmu-1.1.1-2.el6${EXTRACT_SUFX} \ libXp-1.0.2-2.1.el6${EXTRACT_SUFX} \ libXpm-3.5.10-2.el6${EXTRACT_SUFX} \ libXrandr-1.4.2-1.el6${EXTRACT_SUFX} \ libXrender-0.9.8-2.1.el6_8.1${EXTRACT_SUFX} \ libXres-1.0.7-2.1.el6${EXTRACT_SUFX} \ libXt-1.1.4-6.1.el6${EXTRACT_SUFX} \ libXtst-1.2.2-2.1.el6${EXTRACT_SUFX} \ libXv-1.0.9-2.1.el6${EXTRACT_SUFX} \ libXvMC-1.0.8-2.1.el6${EXTRACT_SUFX} \ libXxf86dga-1.1.4-2.1.el6${EXTRACT_SUFX} \ libXxf86misc-1.0.3-4.el6${EXTRACT_SUFX} \ libXxf86vm-1.1.3-2.1.el6${EXTRACT_SUFX} \ libfontenc-1.1.2-3.el6${EXTRACT_SUFX} \ libxcb-1.11-2.el6${EXTRACT_SUFX} \ libxkbfile-1.0.6-1.1.el6${EXTRACT_SUFX} SRC_DISTFILES= libICE-1.0.6-1.el6.src.rpm:SOURCE \ libSM-1.2.1-2.el6.src.rpm:SOURCE \ libX11-1.6.3-2.el6.src.rpm:SOURCE \ libXScrnSaver-1.2.2-2.el6.src.rpm:SOURCE \ libXau-1.0.6-4.el6.src.rpm:SOURCE \ libXaw-1.0.11-2.el6.src.rpm:SOURCE \ libXcomposite-0.4.3-4.el6.src.rpm:SOURCE \ libXcursor-1.1.14-2.1.el6.src.rpm:SOURCE \ libXdamage-1.1.3-4.el6.src.rpm:SOURCE \ libXdmcp-1.1.1-3.el6.src.rpm:SOURCE \ libXevie-1.0.3-4.el6.src.rpm:SOURCE \ libXext-1.3.3-1.el6.src.rpm:SOURCE \ libXfixes-5.0.1-2.1.el6.src.rpm:SOURCE \ libXfont-1.5.1-2.el6.src.rpm:SOURCE \ libXft-2.3.2-1.el6.src.rpm:SOURCE \ libXi-1.7.4-1.el6.src.rpm:SOURCE \ libXinerama-1.1.3-2.1.el6.src.rpm:SOURCE \ libXmu-1.1.1-2.el6.src.rpm:SOURCE \ libXp-1.0.2-2.1.el6.src.rpm:SOURCE \ libXpm-3.5.10-2.el6.src.rpm:SOURCE \ libXrandr-1.4.2-1.el6.src.rpm:SOURCE \ libXrender-0.9.8-2.1.el6_8.1.src.rpm:SOURCE \ libXres-1.0.7-2.1.el6.src.rpm:SOURCE \ libXt-1.1.4-6.1.el6.src.rpm:SOURCE \ libXtst-1.2.2-2.1.el6.src.rpm:SOURCE \ libXv-1.0.9-2.1.el6.src.rpm:SOURCE \ libXvMC-1.0.8-2.1.el6.src.rpm:SOURCE \ libXxf86dga-1.1.4-2.1.el6.src.rpm:SOURCE \ libXxf86misc-1.0.3-4.el6.src.rpm:SOURCE \ libXxf86vm-1.1.3-2.1.el6.src.rpm:SOURCE \ libfontenc-1.1.2-3.el6.src.rpm:SOURCE \ libxcb-1.11-2.el6.src.rpm:SOURCE \ libxkbfile-1.0.6-1.1.el6.src.rpm:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= Xorg libraries (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-xorg-libs-[0-9]* linux-f8-xorg-libs-[0-9]* linux-f10-xorg-libs-[0-9]* USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= fontconfig USE_LINUX_RPM= yes .include Index: head/x11-fonts/linux-c6-fontconfig/Makefile =================================================================== --- head/x11-fonts/linux-c6-fontconfig/Makefile (revision 431244) +++ head/x11-fonts/linux-c6-fontconfig/Makefile (revision 431245) @@ -1,32 +1,32 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= fontconfig PORTVERSION= 2.8.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-fonts linux MAINTAINER= emulation@FreeBSD.org COMMENT= XML-based font configuration API for X Windows (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-fontconfig-[0-9]* linux-f8-fontconfig-[0-9]* linux-f10-fontconfig-[0-9]* DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr RPMVERSION= 5.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= expat USE_LINUX_RPM= yes # We will use some other configuration file, so delete a linux one # Don't let the linux fc-cache mess up the native cache file post-patch: @${RM} -r ${WRKSRC}/etc ${WRKSRC}/usr/share/fonts ${WRKSRC}/var \ ${WRKSRC}/usr/bin/fc-cache \ ${WRKSRC}/usr/share/man/man1/fc-cache.1.gz post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc @${LN} -s ${LOCALBASE}/etc/fonts ${STAGEDIR}${PREFIX}/etc/ .include Index: head/x11-themes/linux-c6-hicolor-icon-theme/Makefile =================================================================== --- head/x11-themes/linux-c6-hicolor-icon-theme/Makefile (revision 431244) +++ head/x11-themes/linux-c6-hicolor-icon-theme/Makefile (revision 431245) @@ -1,28 +1,28 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= hicolor-icon-theme PORTVERSION= 0.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-themes linux MASTER_SITES= # empty DISTFILES= # empty PKGNAMEPREFIX= linux-c6- MAINTAINER= emulation@FreeBSD.org COMMENT= High-color icon theme shell from the FreeDesktop project CONFLICTS= linux-f10-hicolor-icon-theme-[0-9]* RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:misc/hicolor-icon-theme NO_BUILD= yes USES= linux:c6 USE_LINUX_PREFIX= yes PLIST_FILES= usr/share/icons/hicolor do-install: ${INSTALL} -d ${STAGEDIR}${PREFIX}/usr/share/icons ${LN} -fs ${LOCALBASE}/share/icons/hicolor ${STAGEDIR}${PREFIX}/usr/share/icons .include Index: head/x11-toolkits/linux-c6-gtk2/Makefile =================================================================== --- head/x11-toolkits/linux-c6-gtk2/Makefile (revision 431244) +++ head/x11-toolkits/linux-c6-gtk2/Makefile (revision 431245) @@ -1,26 +1,26 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= gtk2 PORTVERSION= 2.24.23 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11-toolkits linux LIB_DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${PORTNAME}-engines-2.18.4-5.el6.centos${EXTRACT_SUFX} \ ${PORTNAME}-immodules-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX} SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE MAINTAINER= emulation@FreeBSD.org COMMENT= GTK+ library, version 2.X (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-gtk2-[0-9]* linux-f8-gtk2-[0-9]* linux-f10-gtk2-[0-9]* RPMVERSION= 8.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= atk gdkpixbuf2 pango xorglibs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}0/pkg-descr .include Index: head/x11-toolkits/linux-c6-openmotif/Makefile =================================================================== --- head/x11-toolkits/linux-c6-openmotif/Makefile (revision 431244) +++ head/x11-toolkits/linux-c6-openmotif/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: Johannes Meixner # $FreeBSD$ PORTNAME= openmotif PORTVERSION= 2.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits linux MAINTAINER= emulation@FreeBSD.org COMMENT= Motif toolkit libraries (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-openmotif-[0-9]* linux-f8-openmotif-[0-9]* USES= linux:c6 RPMVERSION= 8.el6 USE_LINUX_RPM= yes USE_LINUX= xorglibs USE_LDCONFIG= yes DESCR= ${.CURDIR}/../open-motif/pkg-descr post-extract: @${RM} -r ${WRKSRC}/etc ${WRKSRC}/usr/bin ${WRKSRC}/usr/include \ ${WRKSRC}/usr/share .include Index: head/x11-toolkits/linux-c6-pango/Makefile =================================================================== --- head/x11-toolkits/linux-c6-pango/Makefile (revision 431244) +++ head/x11-toolkits/linux-c6-pango/Makefile (revision 431245) @@ -1,23 +1,23 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= pango PORTVERSION= 1.28.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-toolkits linux MAINTAINER= emulation@FreeBSD.org COMMENT= Pango library (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-pango-[0-9]* linux-f10-pango-[0-9]* RPMVERSION= 11.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= cairo fontconfig libthai xorglibs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr .include Index: head/x11-toolkits/linux-c6-qt47-x11/Makefile =================================================================== --- head/x11-toolkits/linux-c6-qt47-x11/Makefile (revision 431244) +++ head/x11-toolkits/linux-c6-qt47-x11/Makefile (revision 431245) @@ -1,29 +1,29 @@ # Created by: Artyom Mirgorodskiy # $FreeBSD$ PORTNAME= qt47-x11 PORTVERSION= 4.7.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-toolkits linux MASTER_SITES= https://www.mirrorservice.org/sites/dl.atrpms.net/el6-x86_64/atrpms/testing/\ https://www.mirrorservice.org/sites/dl.atrpms.net/el6-i386/atrpms/testing/ \ LOCAL/xmj DIST_SUBDIR= rpm/${LINUX_RPM_ARCH}/atrpms/6 MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux CentOS 6) SRC_DISTFILES= # unretrievable. RPMVERSION= 1_18.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= alsalib dri fontconfig jpeg openssl png qt47 tiff xorglibs USE_LINUX_RPM= yes DESCR= ${.CURDIR}/../../devel/qt4/pkg-descr post-patch: ${RM} ${WRKSRC}/usr/share/qt47/translations/qt_help_*.qm .include Index: head/x11-toolkits/linux-c6-tk85/Makefile =================================================================== --- head/x11-toolkits/linux-c6-tk85/Makefile (revision 431244) +++ head/x11-toolkits/linux-c6-tk85/Makefile (revision 431245) @@ -1,25 +1,25 @@ # Created by: bsam # $FreeBSD$ PORTNAME= tk PORTVERSION= 8.5.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits linux PKGNAMESUFFIX= 85 MAINTAINER= emulation@FreeBSD.org COMMENT= Graphical toolkit for TCL (Linux CentOS ${LINUX_DIST_VER}) CONFLICTS= linux-f10-tk85-[0-9]* RPMVERSION= 5.el6 USES= linux:c6 USE_LDCONFIG= yes USE_LINUX= xorglibs USE_LINUX_RPM= yes USE_LINUX_RPM_BAD_PERMS= yes DATADIR= ${PREFIX}/usr/share/tk${PORTVERSION:R} DESCR= ${.CURDIR}/../${PORTNAME}${PKGNAMESUFFIX}/pkg-descr .include