diff options
author | sat <sat@FreeBSD.org> | 2007-12-15 04:15:35 +0800 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2007-12-15 04:15:35 +0800 |
commit | f97524d9767d0e60a20d1489a72c23ace9d5223a (patch) | |
tree | bec9c3dc6d26971a69419199514eb0293c497a2b /www | |
parent | c104dd70576610ab6f8d28aef596aa5c52308329 (diff) | |
download | freebsd-ports-gnome-f97524d9767d0e60a20d1489a72c23ace9d5223a.tar.gz freebsd-ports-gnome-f97524d9767d0e60a20d1489a72c23ace9d5223a.tar.zst freebsd-ports-gnome-f97524d9767d0e60a20d1489a72c23ace9d5223a.zip |
- Respect WITHOUT_NLS
PR: ports/117876 (based on)
Submitted by: Philip Gollucci <pgollucci@p6m7g8.com>
Diffstat (limited to 'www')
-rw-r--r-- | www/aria2/Makefile | 8 | ||||
-rw-r--r-- | www/aria2/pkg-descr | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/www/aria2/Makefile b/www/aria2/Makefile index a58297fae342..8ddefdf164c4 100644 --- a/www/aria2/Makefile +++ b/www/aria2/Makefile @@ -18,15 +18,19 @@ COMMENT= Yet another download tool #CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" #MAKE_ENV= DONTSTRIP= CONFIGURE_ARGS= --with-libintl-prefix=${LOCALBASE} --with-openssl \ - --with-libxml2 --without-gnutls --without-libares --without-libcares \ - --program-transform-name="" + --with-libxml2 --without-gnutls --without-libares \ + --without-libcares --program-transform-name="" USE_GCC= 3.4+ USE_BZIP2= yes USE_GNOME= gnomehack libxml2 USE_GETTEXT= yes GNU_CONFIGURE= yes +.ifdef WITHOUT_NLS +CONFIGURE_ARGS+= --disable-nls +.else LINGUAS= ca de es fr it ja nl pt_BR ru sv +.endif PLIST_FILES= bin/aria2c \ ${LINGUAS:S|^|share/locale/|:S|$|/LC_MESSAGES/aria2c.mo|} MAN1= aria2c.1 diff --git a/www/aria2/pkg-descr b/www/aria2/pkg-descr index 150466a7b2f6..96c8e45d936f 100644 --- a/www/aria2/pkg-descr +++ b/www/aria2/pkg-descr @@ -1,4 +1,4 @@ -aria2 has segmented downloading engine in its core. It therefore, it +aria2 has a segmented downloading engine in its core. Therefore, it can download files a lot faster than ordinary browsers. Currently it has following features: * HTTP/HTTPS GET support |