* [Buildroot] [PATCH 1/3] libmhash: new package
@ 2013-01-07 18:12 Gustavo Zacarias
2013-01-07 18:12 ` [Buildroot] [PATCH 2/3] libmcrypt: " Gustavo Zacarias
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2013-01-07 18:12 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/libmhash/Config.in | 9 +++++++++
package/libmhash/libmhash.mk | 14 ++++++++++++++
3 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 package/libmhash/Config.in
create mode 100644 package/libmhash/libmhash.mk
diff --git a/package/Config.in b/package/Config.in
index 0f397d6..942e62c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -370,6 +370,7 @@ source "package/beecrypt/Config.in"
source "package/gnutls/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
+source "package/libmhash/Config.in"
source "package/libnss/Config.in"
source "package/nettle/Config.in"
source "package/ocf-linux/Config.in"
diff --git a/package/libmhash/Config.in b/package/libmhash/Config.in
new file mode 100644
index 0000000..82b544f
--- /dev/null
+++ b/package/libmhash/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBMHASH
+ bool "libmhash"
+ help
+ Mhash is a free (under GNU Lesser GPL) library which provides
+ a uniform interface to a large number of hash algorithms.
+ These algorithms can be used to compute checksums, message digests,
+ and other signatures.
+
+ http://mhash.sourceforge.net/
diff --git a/package/libmhash/libmhash.mk b/package/libmhash/libmhash.mk
new file mode 100644
index 0000000..aa05f93
--- /dev/null
+++ b/package/libmhash/libmhash.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# libmhash
+#
+#############################################################
+
+LIBMHASH_VERSION = 0.9.9.9
+LIBMHASH_SITE = http://downloads.sourceforge.net/project/mhash/mhash/$(LIBMHASH_VERSION)
+LIBMHASH_SOURCE = mhash-$(LIBMHASH_VERSION).tar.bz2
+LIBMHASH_INSTALL_STAGING = YES
+LIBMHASH_LICENSE = LGPLv2
+LIBMHASH_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/3] libmcrypt: new package
2013-01-07 18:12 [Buildroot] [PATCH 1/3] libmhash: new package Gustavo Zacarias
@ 2013-01-07 18:12 ` Gustavo Zacarias
2013-01-13 20:28 ` Peter Korsgaard
2013-01-07 18:13 ` [Buildroot] [PATCH 3/3] mcrypt: " Gustavo Zacarias
2013-01-13 20:24 ` [Buildroot] [PATCH 1/3] libmhash: " Peter Korsgaard
2 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2013-01-07 18:12 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/libmcrypt/Config.in | 7 +++++++
package/libmcrypt/libmcrypt-nocxx.patch | 15 +++++++++++++++
package/libmcrypt/libmcrypt.mk | 21 +++++++++++++++++++++
4 files changed, 44 insertions(+), 0 deletions(-)
create mode 100644 package/libmcrypt/Config.in
create mode 100644 package/libmcrypt/libmcrypt-nocxx.patch
create mode 100644 package/libmcrypt/libmcrypt.mk
diff --git a/package/Config.in b/package/Config.in
index 942e62c..ca5136f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -370,6 +370,7 @@ source "package/beecrypt/Config.in"
source "package/gnutls/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
+source "package/libmcrypt/Config.in"
source "package/libmhash/Config.in"
source "package/libnss/Config.in"
source "package/nettle/Config.in"
diff --git a/package/libmcrypt/Config.in b/package/libmcrypt/Config.in
new file mode 100644
index 0000000..e5dc5e2
--- /dev/null
+++ b/package/libmcrypt/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_LIBMCRYPT
+ bool "libmcrypt"
+ help
+ libmcrypt is a library that provides uniform interface to access
+ several encryption algorithms.
+
+ http://mcrypt.sourceforge.net/
diff --git a/package/libmcrypt/libmcrypt-nocxx.patch b/package/libmcrypt/libmcrypt-nocxx.patch
new file mode 100644
index 0000000..b1c2871
--- /dev/null
+++ b/package/libmcrypt/libmcrypt-nocxx.patch
@@ -0,0 +1,15 @@
+libmcrypt doesn't use C++ so remove the check.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura libmcrypt-2.5.8.orig/configure.in libmcrypt-2.5.8/configure.in
+--- libmcrypt-2.5.8.orig/configure.in 2013-01-07 12:20:44.332200669 -0300
++++ libmcrypt-2.5.8/configure.in 2013-01-07 12:20:50.405390565 -0300
+@@ -19,7 +19,6 @@
+
+ AC_PROG_MAKE_SET
+
+-AC_PROG_CXX
+ AC_PROG_CC
+ AC_PROG_CPP
+ AC_PROG_INSTALL
diff --git a/package/libmcrypt/libmcrypt.mk b/package/libmcrypt/libmcrypt.mk
new file mode 100644
index 0000000..9d22f01
--- /dev/null
+++ b/package/libmcrypt/libmcrypt.mk
@@ -0,0 +1,21 @@
+#############################################################
+#
+# libmcrypt
+#
+#############################################################
+
+LIBMCRYPT_VERSION = 2.5.8
+LIBMCRYPT_SITE = http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/$(LIBMCRYPT_VERSION)
+LIBMCRYPT_AUTORECONF = YES
+LIBMCRYPT_INSTALL_STAGING = YES
+LIBMCRYPT_LICENSE = LGPLv2.1
+LIBMCRYPT_LICENSE_FILES = COPYING.LIB
+
+define LIBMCRYPT_STAGING_LIBMCRYPT_CONFIG_FIXUP
+ $(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/libmcrypt-config
+ $(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/libmcrypt-config
+endef
+
+LIBMCRYPT_POST_INSTALL_STAGING_HOOKS += LIBMCRYPT_STAGING_LIBMCRYPT_CONFIG_FIXUP
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 3/3] mcrypt: new package
2013-01-07 18:12 [Buildroot] [PATCH 1/3] libmhash: new package Gustavo Zacarias
2013-01-07 18:12 ` [Buildroot] [PATCH 2/3] libmcrypt: " Gustavo Zacarias
@ 2013-01-07 18:13 ` Gustavo Zacarias
2013-01-13 20:30 ` Peter Korsgaard
2013-01-13 20:24 ` [Buildroot] [PATCH 1/3] libmhash: " Peter Korsgaard
2 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2013-01-07 18:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/mcrypt/Config.in | 13 ++++
package/mcrypt/mcrypt-CVE-2012-4409.patch | 25 +++++++
package/mcrypt/mcrypt-CVE-2012-4426.patch | 35 +++++++++
package/mcrypt/mcrypt-CVE-2012-4527.patch | 108 +++++++++++++++++++++++++++++
package/mcrypt/mcrypt-no-rpath.patch | 17 +++++
package/mcrypt/mcrypt.mk | 17 +++++
7 files changed, 216 insertions(+), 0 deletions(-)
create mode 100644 package/mcrypt/Config.in
create mode 100644 package/mcrypt/mcrypt-CVE-2012-4409.patch
create mode 100644 package/mcrypt/mcrypt-CVE-2012-4426.patch
create mode 100644 package/mcrypt/mcrypt-CVE-2012-4527.patch
create mode 100644 package/mcrypt/mcrypt-no-rpath.patch
create mode 100644 package/mcrypt/mcrypt.mk
diff --git a/package/Config.in b/package/Config.in
index ca5136f..9d3577e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -585,6 +585,7 @@ menu "Miscellaneous"
source "package/collectd/Config.in"
source "package/empty/Config.in"
source "package/googlefontdirectory/Config.in"
+source "package/mcrypt/Config.in"
source "package/mobile-broadband-provider-info/Config.in"
source "package/shared-mime-info/Config.in"
source "package/snowball-init/Config.in"
diff --git a/package/mcrypt/Config.in b/package/mcrypt/Config.in
new file mode 100644
index 0000000..58567cd
--- /dev/null
+++ b/package/mcrypt/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_MCRYPT
+ bool "mcrypt"
+ depends on BR2_USE_MMU # fork()
+ select BR2_PACKAGE_LIBMCRYPT
+ select BR2_PACKAGE_LIBMHASH
+ select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+ help
+ MCrypt is a replacement for the old crypt() package and crypt(1)
+ command, with extensions.
+ It allows developers to use a wide range of encryption functions,
+ without making drastic changes to their code.
+
+ http://mcrypt.sourceforge.net/
diff --git a/package/mcrypt/mcrypt-CVE-2012-4409.patch b/package/mcrypt/mcrypt-CVE-2012-4409.patch
new file mode 100644
index 0000000..97c658b
--- /dev/null
+++ b/package/mcrypt/mcrypt-CVE-2012-4409.patch
@@ -0,0 +1,25 @@
+From 3efb40e17ce4f76717ae17a1ce1e1f747ddf59fd Mon Sep 17 00:00:00 2001
+From: Alon Bar-Lev <alon.barlev@gmail.com>
+Date: Sat, 22 Dec 2012 22:37:06 +0200
+Subject: [PATCH] cleanup: buffer overflow
+
+---
+ src/extra.c | 2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+diff --git a/src/extra.c b/src/extra.c
+index 3082f82..c7a1ac0 100644
+--- a/src/extra.c
++++ b/src/extra.c
+@@ -241,6 +241,8 @@ int check_file_head(FILE * fstream, char *algorithm, char *mode,
+ if (m_getbit(6, flags) == 1) { /* if the salt bit is set */
+ if (m_getbit(0, sflag) != 0) { /* if the first bit is set */
+ *salt_size = m_setbit(0, sflag, 0);
++ if (*salt_size > sizeof(tmp_buf))
++ err_quit(_("Salt is too long\n"));
+ if (*salt_size > 0) {
+ fread(tmp_buf, 1, *salt_size,
+ fstream);
+--
+1.7.8.6
+
diff --git a/package/mcrypt/mcrypt-CVE-2012-4426.patch b/package/mcrypt/mcrypt-CVE-2012-4426.patch
new file mode 100644
index 0000000..708d4a5
--- /dev/null
+++ b/package/mcrypt/mcrypt-CVE-2012-4426.patch
@@ -0,0 +1,35 @@
+Patch taken from gentoo.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+--- a/src/errors.c
++++ b/src/errors.c
+@@ -25,24 +25,24 @@
+
+ void err_quit(char *errmsg)
+ {
+- fprintf(stderr, errmsg);
++ fprintf(stderr, "%s", errmsg);
+ exit(-1);
+ }
+
+ void err_warn(char *errmsg)
+ {
+ if (quiet <= 1)
+- fprintf(stderr, errmsg);
++ fprintf(stderr, "%s", errmsg);
+ }
+
+ void err_info(char *errmsg)
+ {
+ if (quiet == 0)
+- fprintf(stderr, errmsg);
++ fprintf(stderr, "%s", errmsg);
+ }
+
+ void err_crit(char *errmsg)
+ {
+ if (quiet <= 2)
+- fprintf(stderr, errmsg);
++ fprintf(stderr, "%s", errmsg);
+ }
diff --git a/package/mcrypt/mcrypt-CVE-2012-4527.patch b/package/mcrypt/mcrypt-CVE-2012-4527.patch
new file mode 100644
index 0000000..a287680
--- /dev/null
+++ b/package/mcrypt/mcrypt-CVE-2012-4527.patch
@@ -0,0 +1,108 @@
+Description: [CVE-2012-4527] Stack-based buffer overflow with long file names
+ .
+ A buffer overflow in mcrypt version 2.6.8 and earlier due to long filenames.
+ If a user were tricked into attempting to encrypt/decrypt specially crafted
+ long filename(s), this flaw would cause a stack-based buffer overflow that
+ could potentially lead to arbitrary code execution.
+ .
+ Note that this is caught by FORTIFY_SOURCE, which makes this a crash-only
+ bug on wheezy.
+Author: Attila Bogar, Jean-Michel Vourg?re <jmv_deb@nirgal.com>
+Origin: https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2012-4527
+Bug: CVE-2012-4527
+Bug-Debian: http://bugs.debian.org/690924
+Forwarded: no
+Last-Update: 2012-11-01
+Index: mcrypt-2.6.8/src/mcrypt.c
+===================================================================
+--- mcrypt-2.6.8.orig/src/mcrypt.c
++++ mcrypt-2.6.8/src/mcrypt.c
+@@ -41,4 +41,6 @@
+
++/* Temporary error message can contain one file name and 1k of text */
++#define ERRWIDTH ((PATH_MAX)+1024)
+-char tmperr[128];
++char tmperr[ERRWIDTH];
+ unsigned int stream_flag = FALSE;
+ char *keymode = NULL;
+ char *mode = NULL;
+@@ -482,7 +485,7 @@
+ #ifdef HAVE_STAT
+ if (stream_flag == FALSE) {
+ if (is_normal_file(file[i]) == FALSE) {
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("%s: %s is not a regular file. Skipping...\n"),
+ program_name, file[i]);
+@@ -501,7 +504,7 @@
+ dinfile = file[i];
+ if ((isatty(fileno((FILE *) (stdin))) == 1)
+ && (stream_flag == TRUE) && (force == 0)) { /* not a tty */
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("%s: Encrypted data will not be read from a terminal.\n"),
+ program_name);
+@@ -520,7 +523,7 @@
+ einfile = file[i];
+ if ((isatty(fileno((FILE *) (stdout))) == 1)
+ && (stream_flag == TRUE) && (force == 0)) { /* not a tty */
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("%s: Encrypted data will not be written to a terminal.\n"),
+ program_name);
+@@ -544,7 +547,7 @@
+ strcpy(outfile, einfile);
+ /* if file has already the .nc ignore it */
+ if (strstr(outfile, ".nc") != NULL) {
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("%s: file %s has the .nc suffix... skipping...\n"),
+ program_name, outfile);
+@@ -590,10 +593,10 @@
+
+ if (x == 0) {
+ if (stream_flag == FALSE) {
+- sprintf(tmperr, _("File %s was decrypted.\n"), dinfile);
++ snprintf(tmperr, ERRWIDTH, _("File %s was decrypted.\n"), dinfile);
+ err_warn(tmperr);
+ } else {
+- sprintf(tmperr, _("Stdin was decrypted.\n"));
++ snprintf(tmperr, ERRWIDTH, _("Stdin was decrypted.\n"));
+ err_warn(tmperr);
+ }
+ #ifdef HAVE_STAT
+@@ -610,7 +613,7 @@
+
+ } else {
+ if (stream_flag == FALSE) {
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("File %s was NOT decrypted successfully.\n"),
+ dinfile);
+@@ -636,10 +639,10 @@
+
+ if (x == 0) {
+ if (stream_flag == FALSE) {
+- sprintf(tmperr, _("File %s was encrypted.\n"), einfile);
++ snprintf(tmperr, ERRWIDTH, _("File %s was encrypted.\n"), einfile);
+ err_warn(tmperr);
+ } else {
+- sprintf(tmperr, _("Stdin was encrypted.\n"));
++ snprintf(tmperr, ERRWIDTH, _("Stdin was encrypted.\n"));
+ err_warn(tmperr);
+ }
+ #ifdef HAVE_STAT
+@@ -655,7 +658,7 @@
+
+ } else {
+ if (stream_flag == FALSE) {
+- sprintf(tmperr,
++ snprintf(tmperr, ERRWIDTH,
+ _
+ ("File %s was NOT encrypted successfully.\n"),
+ einfile);
diff --git a/package/mcrypt/mcrypt-no-rpath.patch b/package/mcrypt/mcrypt-no-rpath.patch
new file mode 100644
index 0000000..a0813bc
--- /dev/null
+++ b/package/mcrypt/mcrypt-no-rpath.patch
@@ -0,0 +1,17 @@
+Patch out rpath hardcoding since it completely ignores --disable-rpath
+and other configure ways.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura mcrypt-2.6.8.orig/config.rpath mcrypt-2.6.8/config.rpath
+--- mcrypt-2.6.8.orig/config.rpath 2013-01-07 13:05:22.626883480 -0300
++++ mcrypt-2.6.8/config.rpath 2013-01-07 13:12:47.196090608 -0300
+@@ -153,7 +153,7 @@
+ # here allows them to be overridden if necessary.
+ # Unlike libtool, we use -rpath here, not --rpath, since the documented
+ # option of GNU ld is called -rpath, not --rpath.
+- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
++ hardcode_libdir_flag_spec=
+ case "$host_os" in
+ aix3* | aix4* | aix5*)
+ # On AIX/PPC, the GNU linker is very broken
diff --git a/package/mcrypt/mcrypt.mk b/package/mcrypt/mcrypt.mk
new file mode 100644
index 0000000..5bd5816
--- /dev/null
+++ b/package/mcrypt/mcrypt.mk
@@ -0,0 +1,17 @@
+#############################################################
+#
+# mcrypt
+#
+#############################################################
+
+MCRYPT_VERSION = 2.6.8
+MCRYPT_SITE = http://downloads.sourceforge.net/project/mcrypt/MCrypt/$(MCRYPT_VERSION)
+MCRYPT_DEPENDENCIES = libmcrypt libmhash \
+ $(if $(BR2_PACKAGE_ZLIB),zlib) \
+ $(if $(BR2_PACKAGE_LIBICONV),libiconv) \
+ $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
+MCRYPT_CONF_OPT = --with-libmcrypt-prefix=$(STAGING_DIR)/usr
+MCRYPT_LICENSE = GPLv3
+MCRYPT_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
--
1.7.8.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/3] libmhash: new package
2013-01-07 18:12 [Buildroot] [PATCH 1/3] libmhash: new package Gustavo Zacarias
2013-01-07 18:12 ` [Buildroot] [PATCH 2/3] libmcrypt: " Gustavo Zacarias
2013-01-07 18:13 ` [Buildroot] [PATCH 3/3] mcrypt: " Gustavo Zacarias
@ 2013-01-13 20:24 ` Peter Korsgaard
2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2013-01-13 20:24 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/Config.in | 1 +
Gustavo> package/libmhash/Config.in | 9 +++++++++
Gustavo> package/libmhash/libmhash.mk | 14 ++++++++++++++
Gustavo> 3 files changed, 24 insertions(+), 0 deletions(-)
Gustavo> create mode 100644 package/libmhash/Config.in
Gustavo> create mode 100644 package/libmhash/libmhash.mk
Gustavo> diff --git a/package/Config.in b/package/Config.in
Gustavo> index 0f397d6..942e62c 100644
Gustavo> --- a/package/Config.in
Gustavo> +++ b/package/Config.in
Gustavo> @@ -370,6 +370,7 @@ source "package/beecrypt/Config.in"
Gustavo> source "package/gnutls/Config.in"
Gustavo> source "package/libgcrypt/Config.in"
Gustavo> source "package/libgpg-error/Config.in"
Gustavo> +source "package/libmhash/Config.in"
Gustavo> source "package/libnss/Config.in"
Gustavo> source "package/nettle/Config.in"
Gustavo> source "package/ocf-linux/Config.in"
Gustavo> diff --git a/package/libmhash/Config.in b/package/libmhash/Config.in
Gustavo> new file mode 100644
Gustavo> index 0000000..82b544f
Gustavo> --- /dev/null
Gustavo> +++ b/package/libmhash/Config.in
Gustavo> @@ -0,0 +1,9 @@
Gustavo> +config BR2_PACKAGE_LIBMHASH
Gustavo> + bool "libmhash"
Gustavo> + help
Gustavo> + Mhash is a free (under GNU Lesser GPL) library which provides
Gustavo> + a uniform interface to a large number of hash algorithms.
Gustavo> + These algorithms can be used to compute checksums, message digests,
Gustavo> + and other signatures.
Trailing space. Committed with that fixed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/3] libmcrypt: new package
2013-01-07 18:12 ` [Buildroot] [PATCH 2/3] libmcrypt: " Gustavo Zacarias
@ 2013-01-13 20:28 ` Peter Korsgaard
0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2013-01-13 20:28 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/Config.in | 1 +
Gustavo> package/libmcrypt/Config.in | 7 +++++++
Gustavo> package/libmcrypt/libmcrypt-nocxx.patch | 15 +++++++++++++++
Gustavo> package/libmcrypt/libmcrypt.mk | 21 +++++++++++++++++++++
Gustavo> 4 files changed, 44 insertions(+), 0 deletions(-)
Gustavo> create mode 100644 package/libmcrypt/Config.in
Gustavo> create mode 100644 package/libmcrypt/libmcrypt-nocxx.patch
Gustavo> create mode 100644 package/libmcrypt/libmcrypt.mk
Gustavo> +++ b/package/libmcrypt/libmcrypt.mk
Gustavo> @@ -0,0 +1,21 @@
Gustavo> +#############################################################
Gustavo> +#
Gustavo> +# libmcrypt
Gustavo> +#
Gustavo> +#############################################################
Gustavo> +
Gustavo> +LIBMCRYPT_VERSION = 2.5.8
Gustavo> +LIBMCRYPT_SITE = http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/$(LIBMCRYPT_VERSION)
Gustavo> +LIBMCRYPT_AUTORECONF = YES
Gustavo> +LIBMCRYPT_INSTALL_STAGING = YES
Gustavo> +LIBMCRYPT_LICENSE = LGPLv2.1
Gustavo> +LIBMCRYPT_LICENSE_FILES = COPYING.LIB
Gustavo> +
Gustavo> +define LIBMCRYPT_STAGING_LIBMCRYPT_CONFIG_FIXUP
Gustavo> + $(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/libmcrypt-config
Gustavo> + $(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/libmcrypt-config
I rewrote this to change both in a single sed invocation similar to
other scripts and committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 3/3] mcrypt: new package
2013-01-07 18:13 ` [Buildroot] [PATCH 3/3] mcrypt: " Gustavo Zacarias
@ 2013-01-13 20:30 ` Peter Korsgaard
0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2013-01-13 20:30 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-01-13 20:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-07 18:12 [Buildroot] [PATCH 1/3] libmhash: new package Gustavo Zacarias
2013-01-07 18:12 ` [Buildroot] [PATCH 2/3] libmcrypt: " Gustavo Zacarias
2013-01-13 20:28 ` Peter Korsgaard
2013-01-07 18:13 ` [Buildroot] [PATCH 3/3] mcrypt: " Gustavo Zacarias
2013-01-13 20:30 ` Peter Korsgaard
2013-01-13 20:24 ` [Buildroot] [PATCH 1/3] libmhash: " Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox