diff options
author | gerald <gerald@FreeBSD.org> | 2011-01-16 06:57:28 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2011-01-16 06:57:28 +0800 |
commit | aeb715040733a0c517ae1bc7687b0367a19a149f (patch) | |
tree | 288d61c79c1fdcff4631f14f101e0be10fccb9c2 /graphics/metapixel | |
parent | 13fe55eb07f58fcd331677221fd44a340809b2ae (diff) | |
download | freebsd-ports-gnome-aeb715040733a0c517ae1bc7687b0367a19a149f.tar.gz freebsd-ports-gnome-aeb715040733a0c517ae1bc7687b0367a19a149f.tar.zst freebsd-ports-gnome-aeb715040733a0c517ae1bc7687b0367a19a149f.zip |
Properly set CPPFLAGS and LDFLAGS at a Makefile level instead of just
within MAKE_ENV and incrementally instead of absolutely.
PR: 153625
Feature safe: yes
Diffstat (limited to 'graphics/metapixel')
-rw-r--r-- | graphics/metapixel/Makefile | 5 | ||||
-rw-r--r-- | graphics/metapixel/distinfo | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/graphics/metapixel/Makefile b/graphics/metapixel/Makefile index bda38ddaef1e..0bbd6687bd4f 100644 --- a/graphics/metapixel/Makefile +++ b/graphics/metapixel/Makefile @@ -19,8 +19,9 @@ LIB_DEPENDS= png.6:${PORTSDIR}/graphics/png \ ungif.5:${PORTSDIR}/graphics/libungif USE_GMAKE= yes -MAKE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -I." \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" +CPPFLAGS+= -I${LOCALBASE}/include -I. +LDFLAGS+= -L${LOCALBASE}/lib +MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" PLIST_FILES= bin/metapixel bin/metapixel-convert bin/metapixel-imagesize \ bin/metapixel-prepare bin/metapixel-sizesort \ diff --git a/graphics/metapixel/distinfo b/graphics/metapixel/distinfo index 0057667c901c..f0b736c688dd 100644 --- a/graphics/metapixel/distinfo +++ b/graphics/metapixel/distinfo @@ -1,3 +1,2 @@ -MD5 (metapixel-1.0.2.tar.gz) = af5d77d38826756af213a08e3ada9941 SHA256 (metapixel-1.0.2.tar.gz) = 8d77810978da397c070b9b4e228ae6204e9f5c524518ad1a4fcab9462171f55b SIZE (metapixel-1.0.2.tar.gz) = 63197 |