Ticket #18382: Portfile.diff
File Portfile.diff, 2.4 KB (added by simon@…, 16 years ago) |
---|
-
Portfile
old new 4 4 5 5 name mcabber 6 6 version 0.9.9 7 revision 1 7 8 categories net 8 9 maintainers hitzemann.org:simon 9 10 description Console Jabber client … … 25 26 port:ncursesw \ 26 27 port:glib2 \ 27 28 port:gettext \ 28 port:libotr 29 port:libotr \ 30 bin:gpgme-config:gpgme \ 31 bin:gcrypt-config:libgcrypt 29 32 30 33 depends_build bin:gawk:gawk \ 31 34 bin:pkg-config:pkgconfig \ 32 bin:gpgme-config:gpgme \33 bin:gcrypt-config:libgcrypt \34 35 bin:gmkdir:coreutils 35 36 36 37 configure.args --enable-otr \ … … 41 42 42 43 configure.env LIBTOOL=glibtool 43 44 44 #TODO 45 #Check why I get errors during linking, until then keep disabled 46 #variant gnutls { 47 # configure.args-delete --without-ssl 48 # configure.args-append --with-ssl 49 # configure.args-append --with-libgnutls-extra-prefix=${prefix} 50 # depends_lib-append port:gnutls 51 # } 45 patchfiles patch-autogen.sh.diff 46 47 pre-configure { 48 system "cd ${worksrcpath} && ./autogen.sh" 49 } 50 51 # TODO 52 # Bug #26 on mcabber - see pre-configure section for a workaround 53 variant gnutls \ 54 description "Use GNUTLS for TLS connections" { 55 configure.args-delete --without-ssl 56 configure.args-append --with-ssl 57 configure.args-append --with-libgnutls-extra-prefix=${prefix} 58 depends_lib-append port:gnutls 59 } 52 60 53 61 variant ssl \ 54 description "Use OpenSSL " {62 description "Use OpenSSL for SSL connections" { 55 63 configure.args-delete --without-ssl 56 64 configure.args-delete --without-openssl 57 65 configure.args-append --with-ssl … … 60 68 } 61 69 62 70 variant aspell \ 63 description "Use aspell spell checking " {71 description "Use aspell spell checking - remember to install a dictionary, too" { 64 72 configure.args-append --enable-aspell 65 73 depends_lib-append port:aspell 66 74 }